/**
 * hostspezial Global Styles
 * Gemeinsame Styles für alle Seiten
 */

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #eef1f5;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* Card Base */
.card {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.06);
}

/* Layout */
.page { max-width: 1280px; margin: 0 auto; padding: 32px; }
.main-card { padding: 0; overflow-x: hidden; }

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2530 50%, #0d1a24 100%);
    padding: 10px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.top-bar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.top-bar-link:hover { color: #00B1EB; }
.top-bar-link svg { width: 14px; height: 14px; }

/* Server Status */
.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.server-status:hover {
    color: rgba(255,255,255,1);
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5f6368;
    animation: pulse-gray 2s infinite;
}
.status-dot.operational {
    background: #34a853;
    animation: pulse-green 2s infinite;
}
.status-dot.degraded {
    background: #fbbc04;
    animation: pulse-yellow 2s infinite;
}
.status-dot.outage {
    background: #ea4335;
    animation: pulse-red 2s infinite;
}
@keyframes pulse-gray {
    0%, 100% { box-shadow: 0 0 0 0 rgba(95,99,104,0.4); }
    50% { box-shadow: 0 0 0 4px rgba(95,99,104,0); }
}
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(52,168,83,0.4); }
    50% { box-shadow: 0 0 0 4px rgba(52,168,83,0); }
}
@keyframes pulse-yellow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251,188,4,0.4); }
    50% { box-shadow: 0 0 0 4px rgba(251,188,4,0); }
}
@keyframes pulse-red {
    0%, 100% { box-shadow: 0 0 0 0 rgba(234,67,53,0.4); }
    50% { box-shadow: 0 0 0 4px rgba(234,67,53,0); }
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 56px;
    background: linear-gradient(135deg, #0a0f14 0%, #1a2530 50%, #0d1a24 100%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,177,235,0.3), transparent);
}
.logo svg { height: 34px; }
.logo svg path[fill="#1a1a1a"] { fill: #fff; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    padding: 10px 18px;
    letter-spacing: 0.3px;
    transition: all 0.2s;
}
.nav a:hover, .nav a.active { color: #fff; }

/* Navigation Dropdowns */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.dropdown-arrow {
    transition: transform 0.2s;
    opacity: 0.5;
    color: rgba(255,255,255,0.7);
}
.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
    color: #fff;
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e8eaed;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    padding: 24px;
    min-width: 560px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 1000;
    margin-top: 10px;
}
.nav-dropdown-menu-small {
    min-width: auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    padding: 12px 0;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.dropdown-section {
    display: flex;
    flex-direction: column;
}
.dropdown-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #00B1EB;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8eaed;
}
.nav-dropdown-menu a {
    font-size: 13px;
    color: #5f6368;
    padding: 6px 0;
    transition: color 0.15s;
}
.nav-dropdown-menu-small a {
    padding: 8px 20px;
    white-space: nowrap;
}
.nav-dropdown-menu a:hover {
    color: #0a0f14;
}
.dropdown-footer {
    grid-column: 1 / -1;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid #e8eaed;
}
.nav-dropdown-menu-small .dropdown-footer {
    padding: 8px 20px;
    margin-top: 0;
    border-top: none;
    border-left: 1px solid #e8eaed;
}
.dropdown-all-link {
    font-size: 12px;
    font-weight: 600;
    color: #00B1EB !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dropdown-all-link:hover {
    color: #0095c8 !important;
}

.header-btn {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 10px 24px;
    letter-spacing: 0.3px;
    transition: all 0.2s;
}
.header-btn:hover { background: #00B1EB; border-color: #00B1EB; color: #fff; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}
.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    color: #fff;
}
.mobile-menu-btn .close-icon { display: none; }
.mobile-menu-btn.active .menu-icon { display: none; }
.mobile-menu-btn.active .close-icon { display: block; }

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    overflow-y: auto;
}
.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-content {
    padding: 100px 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mobile-nav-item {
    font-size: 18px;
    font-weight: 600;
    color: #0a0f14;
    padding: 16px 0;
    border-bottom: 1px solid #e8eaed;
}
.mobile-nav-sub {
    display: flex;
    flex-direction: column;
    padding: 0 0 16px 20px;
    border-bottom: 1px solid #e8eaed;
}
.mobile-nav-sub a {
    font-size: 14px;
    color: #5f6368;
    padding: 10px 0;
}
.mobile-nav-sub a:hover {
    color: #00B1EB;
}
.mobile-nav-label {
    font-size: 11px;
    font-weight: 700;
    color: #0a0f14;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 0 6px;
    margin-top: 8px;
    border-top: 1px solid #e8eaed;
}
.mobile-nav-label:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 8px;
}
.mobile-nav-cta {
    margin-top: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #00B1EB;
    padding: 16px 24px;
    text-align: center;
}
.mobile-nav-cta:hover {
    background: #0095c8;
}
body.mobile-nav-open {
    overflow: hidden;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 56px;
    font-size: 13px;
    color: #5f6368;
    border-bottom: 1px solid #e8eaed;
}
.breadcrumb a { color: #00B1EB; }
.breadcrumb span { margin: 0 8px; }

/* Page Hero */
.page-hero {
    padding: 80px 56px;
    border-bottom: 1px solid #e8eaed;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00B1EB;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.hero-badge::before {
    content: '';
    width: 32px;
    height: 2px;
    background: #00B1EB;
}
.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #0a0f14;
}
.page-hero p {
    font-size: 18px;
    color: #5f6368;
    max-width: 640px;
    line-height: 1.7;
}

/* Content Sections */
.content-section { padding: 80px 56px; }
.content-section.alt { background: #f8f9fa; }
.section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00B1EB;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #00B1EB;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.content-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0a0f14;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.content-text p {
    font-size: 16px;
    color: #5f6368;
    line-height: 1.8;
    margin-bottom: 20px;
}
.content-text ul { list-style: none; margin: 24px 0; }
.content-text li {
    font-size: 15px;
    color: #5f6368;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid #e8eaed;
}
.content-text li:last-child { border-bottom: none; }
.content-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: #00B1EB;
    border-radius: 50%;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: #fff;
    border: 1px solid #e8eaed;
    padding: 32px;
    transition: all 0.2s;
}
.feature-card:hover {
    border-color: #00B1EB;
    box-shadow: 0 4px 12px rgba(0,177,235,0.08);
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0a0f14;
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 14px;
    color: #5f6368;
    line-height: 1.7;
}
.feature-card ul { list-style: none; margin-top: 16px; }
.feature-card li {
    font-size: 13px;
    color: #5f6368;
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}
.feature-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 4px;
    height: 4px;
    background: #00B1EB;
    border-radius: 50%;
}

/* CTA Section */
.cta-section {
    padding: 80px 56px;
    background: #0a0f14;
    text-align: center;
}
.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.cta-section p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}

/* Buttons */
.btn {
    font-size: 13px;
    font-weight: 600;
    padding: 14px 28px;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}
.btn-primary { background: #00B1EB; color: #fff; }
.btn-primary:hover { background: #0095c8; }
.btn-secondary {
    background: transparent;
    color: #0a0f14;
    border: 2px solid #d0d3d8;
}
.btn-secondary:hover { border-color: #0a0f14; }
.btn svg { width: 16px; height: 16px; }

/* Footer */
.card-footer {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2530 50%, #0d1a24 100%);
    padding: 0;
    border-radius: 0 0 2px 2px;
    position: relative;
    overflow: hidden;
}
.card-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,177,235,0.3), transparent);
}

/* Footer CTA Section */
.footer-cta {
    padding: 48px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.footer-cta-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
}
.footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}
.footer-cta-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.footer-cta-phone:hover { color: #00B1EB; }
.footer-cta-phone svg { width: 20px; height: 20px; }

/* Footer Main Section */
.footer-main {
    padding: 48px 56px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
}
.card-footer .footer-brand {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 0;
    line-height: 1.8;
}
.card-footer .footer-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}
.card-footer .footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    padding: 8px 0;
    transition: color 0.2s;
}
.card-footer .footer-links a:hover { color: #00B1EB; }
.card-footer .footer-address {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}
.card-footer .footer-address p { margin: 0; }

/* Footer Bottom Section */
.footer-bottom {
    padding: 20px 56px;
    background: rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}
.footer-badges {
    display: flex;
    gap: 24px;
}
.footer-badges a, .footer-badges span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.3);
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s;
}
.footer-badges a:hover {
    color: #00B1EB;
    border-color: rgba(0,177,235,0.3);
}

/* Footer Brands */
.footer-brands { margin-top: 20px; }
.footer-brand-link {
    display: inline-block;
    transition: opacity 0.2s;
}
.footer-brand-link:hover { opacity: 0.8; }
.brand-logo {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}
.brand-logo::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00B1EB;
    margin-right: 8px;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; gap: 40px; }
    .feature-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 1024px) {
    .nav-dropdown-menu {
        min-width: 480px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page { padding: 16px; }
    .top-bar { padding: 10px 24px; font-size: 12px; }
    .top-bar-contact { gap: 12px; }
    .top-bar-contact span:last-child { display: none; }
    .header { padding: 20px 24px; }
    .nav { display: none; }
    .nav-dropdown-menu { display: none; }
    .header-btn { display: none; }
    .mobile-menu-btn { display: block; }
    .mobile-nav { display: block; }
    .breadcrumb { padding: 10px 24px; }
    .page-hero { padding: 48px 24px; }
    .page-hero h1 { font-size: 32px; }
    .content-section { padding: 48px 24px; }
    .feature-cards { grid-template-columns: 1fr; }
    .cta-section { padding: 48px 24px; }
    .footer-cta { padding: 32px 24px; flex-direction: column; text-align: center; }
    .footer-cta-content { text-align: center; }
    .footer-cta-actions { flex-direction: column; width: 100%; }
    .footer-cta-actions .btn { width: 100%; justify-content: center; }
    .footer-main { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 16px; text-align: center; }
    .footer-badges { justify-content: center; }
}
