/* ===== Fonts ===== */
@font-face {
    font-family: 'Audiowide';
    src: url('/fonts/Audiowide-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS Variables ===== */
:root {
    /* Colors - firstMKIT Branding (Logo Colors) */
    --primary: #0066ab;
    --primary-dark: #005da3;
    --primary-light: #0070b2;
    --secondary: #333333;
    --secondary-dark: #1a1a1a;
    --accent: #00b9f2;
    
    /* Neutrals */
    --dark: #333333;
    --dark-light: #4d4d4d;
    --gray-900: #1a1a1a;
    --gray-800: #333333;
    --gray-700: #4d4d4d;
    --gray-600: #666666;
    --gray-500: #808080;
    --gray-400: #999999;
    --gray-300: #cccccc;
    --gray-200: #e6e6e6;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    
    /* Gradients - firstMKIT Colors */
    --gradient-primary: linear-gradient(135deg, #0066ab 0%, #00b9f2 100%);
    --gradient-dark: linear-gradient(135deg, #f5f5f5 0%, #e6e6e6 100%);
    --gradient-hero: linear-gradient(135deg, #005da3 0%, #0066ab 50%, #0070b2 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', var(--font-primary);
    
    /* Spacing */
    --section-padding: 6rem;
    --container-padding: 1.5rem;
    
    /* Borders */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.04);
    --shadow-md: 0 2px 8px 0 rgb(0 0 0 / 0.06);
    --shadow-lg: 0 8px 24px 0 rgb(0 0 0 / 0.08);
    --shadow-xl: 0 16px 48px 0 rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 32px rgb(188 20 28 / 0.15), 0 4px 16px rgb(188 20 28 / 0.2);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: #4d4d4d;
    background-color: #fafafa;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* ===== Utilities ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding) 0;
}

.section--dark {
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)), url('../images/picture-2600-1.jpg') center/cover no-repeat;
    color: var(--white);
    position: relative;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-alt {
    background: linear-gradient(135deg, #005da3 0%, #0070b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    border-color: transparent;
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 102, 171, 0.3);
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    position: relative;
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 171, 0.2);
}

.btn--white {
    background: var(--white);
    color: var(--primary);
}

.btn--white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ===== Section Headers ===== */
.section__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 102, 171, 0.08) 0%, rgba(0, 185, 242, 0.08) 100%);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 102, 171, 0.1);
}

.section__badge--light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section__title--light {
    color: var(--white);
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__header .section__subtitle {
    margin: 0 auto;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.nav__logo .logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    font-family: 'Audiowide', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.nav__logo .logo-mit {
    color: #0066ab;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
}

.nav__logo .logo-company {
    color: #1a1a1a;
    font-weight: 400;
    font-size: 0.95rem;
}

.nav__logo .logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav__logo .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #0066ab 0%, #0070b2 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 102, 171, 0.15);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__link {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #4d4d4d;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary);
    background: rgba(0, 102, 171, 0.06);
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    color: #1a1a1a;
    cursor: pointer;
    background: none;
    border: none;
    transition: color var(--transition-fast);
}

.nav__toggle:hover,
.nav__close:hover {
    color: var(--primary);
}

/* Mobile Navigation */
@media (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
    }
    
    .nav__menu.show {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .nav__link {
        width: 100%;
        padding: 1rem;
    }
    
    .nav__toggle {
        display: block;
    }
    
    .nav__close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .nav__cta {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 4.5rem;
    background: linear-gradient(180deg, rgba(250, 250, 250, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%), 
                url('../images/picture-2600.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: #4d4d4d;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
}

.hero__badge:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.hero__badge i {
    color: var(--primary);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero__description {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero__stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    background: linear-gradient(135deg, #0066ab 0%, #0070b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* Hero Visual */
.hero__visual {
    position: relative;
    height: 500px;
}

.hero__illustration {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #0066ab 0%, #0070b2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.15);
    animation: pulse 4s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 102, 171, 0.2), 0 0 0 1px rgba(0, 102, 171, 0.1);
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a1a1a;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.floating-card.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero__scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Mobile Hero */
@media (max-width: 968px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__content {
        order: 1;
    }
    
    .hero__visual {
        order: 0;
        height: 300px;
    }
    
    .hero__description {
        margin: 0 auto 2rem;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__globe {
        width: 180px;
        height: 180px;
        font-size: 5rem;
    }
    
    .floating-card {
        display: none;
    }
}

/* ===== Partners Section ===== */
.partners {
    padding: 3rem 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.partners__label {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.partners__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.partner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.partner:hover {
    color: var(--gray-600);
}

.partner i {
    font-size: 1.5rem;
}

/* ===== About Section ===== */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about__feature {
    display: flex;
    gap: 1rem;
}

.about__feature-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066ab 0%, #0070b2 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 102, 171, 0.15);
}

.about__feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.about__feature p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* About Cards */
.about__image {
    position: relative;
    margin-bottom: 2rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about__main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.about__image:hover .about__main-image {
    transform: scale(1.05);
}

.about__cards {
    position: relative;
    display: flex;
    gap: 1.5rem;
}

.about__card {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
}

.about__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 102, 171, 0.1);
}

.about__card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about__card--it i {
    color: var(--primary);
}

.about__card--logistics i {
    color: var(--secondary);
}

.about__card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.about__card ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about__card li {
    font-size: 0.9375rem;
    color: var(--gray-600);
    padding-left: 1.25rem;
    position: relative;
}

.about__card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-400);
}

.about__card--it li::before {
    background: var(--primary);
}

.about__card--logistics li::before {
    background: var(--secondary);
}

@media (max-width: 968px) {
    .about__grid {
        grid-template-columns: 1fr;
    }
    
    .about__cards {
        flex-direction: column;
    }
}

/* ===== Services Section ===== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    backdrop-filter: blur(8px);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 102, 171, 0.15);
    border-color: rgba(0, 102, 171, 0.3);
}

.service-card__icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066ab 0%, #0070b2 100%);
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 102, 171, 0.2);
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-card__description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #00b9f2;
    transition: gap var(--transition-fast);
}

.service-card__link:hover {
    gap: 0.75rem;
}

@media (max-width: 968px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 640px) and (max-width: 968px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Features Section ===== */
.features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 102, 171, 0.15);
    transform: translateX(4px);
}

.feature-item__number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* Dashboard Mock */
.features__dashboard {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dots span:nth-child(1) { background: #ff5f57; }
.dashboard-dots span:nth-child(2) { background: #febc2e; }
.dashboard-dots span:nth-child(3) { background: #28c840; }

.dashboard-header > span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.dashboard-content {
    padding: 2rem;
}

.dashboard-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: all var(--transition-base);
}

.dashboard-stat:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 102, 171, 0.3);
}

.dashboard-stat i {
    font-size: 1.5rem;
    color: #00b9f2;
}

.dashboard-stat__label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.dashboard-stat__value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    height: 120px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: linear-gradient(180deg, #00b9f2 0%, #0066ab 100%);
    border-radius: var(--radius-sm);
    animation: grow 1s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
}

@keyframes grow {
    from { height: 0; }
    to { height: var(--height); }
}

@media (max-width: 968px) {
    .features__grid {
        grid-template-columns: 1fr;
    }
    
    .features__visual {
        order: -1;
    }
}

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, #0066ab 0%, #005da3 100%);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.02"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.cta__content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cta__contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    font-size: 1.125rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--accent);
}

.cta__logo {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.cta__logo-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    opacity: 0.95;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 4rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 171, 0.3), transparent);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.footer__logo .logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    font-family: 'Audiowide', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.footer__logo .logo-mit {
    color: #0066ab;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
}

.footer__logo .logo-company {
    color: var(--white);
    font-weight: 400;
    font-size: 1rem;
}

.footer__logo .logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    background: #ffffff;          /* weiße "Margin"-Fläche */
    padding: 8px;                 /* Abstand um das Bild (Größe anpassen) */
    border-radius: 8px;  
}

.footer__logo .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #0066ab 0%, #0070b2 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 102, 171, 0.3);
}

.footer__description {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.footer__social a:hover {
    background: linear-gradient(135deg, #0066ab 0%, #0070b2 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 171, 0.3);
}

.footer__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.footer__list li i {
    color: #00b9f2;
    margin-top: 0.25rem;
    font-size: 0.75rem;
}

.footer__list a {
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: var(--white);
}

/* Footer Partners Section */
.footer__partners {
    margin: 3rem 0 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__partners-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer__partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer__partner {
    display: block;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.footer__partner:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.partner-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition-base);
}

.footer__partner:hover .partner-logo {
    opacity: 1;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal a:hover {
    color: var(--white);
}

@media (max-width: 968px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer__brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__brand {
        grid-column: span 1;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== Page Styles ===== */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 102, 171, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 171, 0.3), transparent);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -0.02em;
}

.page-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.page {
    padding: 6rem 0;
}

.page__header {
    margin-bottom: 3rem;
    padding-top: 4rem;
}

.page__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.page__subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

.page__content {
    max-width: 800px;
    font-size: 1.125rem;
    line-height: 1.8;
}

.page__content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 2rem 0 1rem;
    letter-spacing: -0.01em;
}

.page__content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1.5rem 0 0.75rem;
}

.page__content p {
    margin-bottom: 1rem;
}

.page__content ul,
.page__content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.page__content li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

.page__content ol li {
    list-style: decimal;
}

/* List Grid */
.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.list-card {
    padding: 2rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.list-card:hover {
    border-color: rgba(0, 102, 171, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.list-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.list-card h3 a:hover {
    color: var(--primary);
}

.list-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Logo Styles */
@media (max-width: 768px) {
    .nav__logo .logo-text {
        font-size: 0.85rem;
    }
    
    .nav__logo .logo-mit {
        font-size: 1.3rem;
    }
    
    .nav__logo .logo-company {
        font-size: 0.85rem;
    }
    
    .footer__logo .logo-text {
        font-size: 0.9rem;
    }
    
    .footer__logo .logo-mit {
        font-size: 1.4rem;
    }
    
    .footer__logo .logo-company {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav__logo .logo-text {
        font-size: 0.75rem;
    }
    
    .nav__logo .logo-mit {
        font-size: 1.1rem;
    }
    
    .nav__logo .logo-company {
        font-size: 0.75rem;
    }
    
    .footer__logo .logo-text {
        font-size: 0.8rem;
    }
    
    .footer__logo .logo-mit {
        font-size: 1.2rem;
    }
    
    .footer__logo .logo-company {
        font-size: 0.8rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
