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

html {
    margin: 0;
    padding: 0;
}

:root {
    /* Neue Farben - Blau und Grau */
    --primary-color: #2496ca;
    --primary-dark: #1e7aa8;
    --secondary-color: #6c757d;
    --accent-color: #495057;
    --text-primary: #212529;
    --text-secondary: #495057;
    --text-light: #6c757d;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --bg-dark: #343a40;
    --border-color: #dee2e6;
    --border-light: #f1f3f4;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #f5f5f5;
    overflow-x: hidden;
    font-size: 18px; /* Größere Grundschrift */
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem !important;
    }
    
    .hero {
        padding-top: 120px !important;
        min-height: auto !important;
    }
    
    .hero-visual {
        margin-top: 0 !important;
    }
    
    .partners {
        padding: 3rem 0 !important;
    }
    
    .stats {
        padding: 3rem 0 !important;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 9999;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px; /* Höher für größeres Logo */
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px; /* Von 50px auf 80px vergrößert */
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem; /* Größerer Abstand */
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1.25rem; /* Von 1.25rem auf 1.75rem vergrößert - viel größer! */
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Navigation */
.nav-menu.active {
    display: flex !important;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: #ffffff;
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

.nav-menu.active a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu.active a:last-child {
    border-bottom: none;
}

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

/* Hero Section - 4cm nach oben gerückt */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding-top: 140px; /* Von 120px auf 140px erhöht für größeren Header */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-visual {
        order: -1;
        margin-top: -2rem;
    }
}

.hero-content {
    color: var(--text-primary);
}

.hero-title {
    font-size: 9rem; /* Von 7rem auf 9rem vergrößert - viel größer! */
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem !important;
        line-height: 1;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem !important;
    }
}

.hero-subtitle {
    font-size: 2rem; /* Von 2rem auf 2.5rem vergrößert */
    font-weight: 700;
    margin-bottom: 2rem; /* Größerer Abstand */
    color: var(--secondary-color);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem; /* Von 1.25rem auf 1.5rem vergrößert */
    color: var(--text-secondary);
    margin-bottom: 2.5rem; /* Größerer Abstand */
    line-height: 1.3;
    font-weight: 300;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Größerer Abstand */
    margin-bottom: 3rem; /* Größerer Abstand */
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem; /* Größerer Abstand */
    padding: 1.5rem; /* Größerer Padding */
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.highlight i {
    color: var(--accent-color);
    font-size: 1.5rem; /* Von 1.25rem auf 1.5rem vergrößert */
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.highlight span {
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.5;
    font-size: 1.4rem; /* Von 1.25rem auf 1.5rem vergrößert */
}

.highlight strong {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem; /* Größerer Abstand */
    flex-wrap: nowrap; /* Kein Umbruch - Buttons in einer Zeile */
}

.btn {
    padding: 1.5rem 2.5rem; /* Größerer Padding */
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem; /* Größerer Abstand */
    border: none;
    cursor: pointer;
    font-size: 1.25rem; /* Von 1rem auf 1.25rem vergrößert */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap; /* Verhindert Textumbruch */
}

@media (max-width: 768px) {
    .btn {
        display: block !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
        padding: 1.25rem 2rem !important;
        font-size: 1.125rem !important;
        justify-content: center;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: -3rem; /* 3cm nach oben für Kreissegmente */
}

.xml-flow-diagram {
    display: flex;
    align-items: center;
    gap: 3rem; /* Größerer Abstand */
    background: white;
    padding: 4rem 3.5rem; /* Höherer Bereich - mehr vertikales Padding */
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-light);
    min-height: 200px; /* Mindesthöhe für bessere Proportionen */
    margin-bottom: 2rem; /* Abstand zu den Highlights darunter */
    width: 100%;
    box-sizing: border-box; /* Padding wird in die Breite eingerechnet */
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .xml-flow-diagram {
        flex-direction: column !important;
        padding: 2rem 1.5rem !important;
        gap: 1.5rem !important;
        min-height: auto !important;
        text-align: center;
    }
    
    .flow-step {
        gap: 1rem !important;
    }
    
    .step-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.8rem !important;
    }
    
    .flow-arrow {
        width: 40px !important;
        height: 40px !important;
        transform: rotate(90deg) !important;
    }
    
    .flow-arrow::before {
        font-size: 12px !important;
        top: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; /* Größerer Abstand */
    text-align: center;
}

.step-icon {
    width: 103.5px; /* Von 90px auf 103.5px (15% größer) */
    height: 103.5px; /* Von 90px auf 103.5px (15% größer) */
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.6rem; /* Von 2.25rem auf 2.6rem (15% größer) */
    box-shadow: var(--shadow-lg);
    animation: pulse 3s infinite;
}

/* Unterschiedliche Farben für die Kreise mit verstärktem Glowing */
.step-icon.kunde {
    background: #ff6b35; /* Orange für Kunde */
    box-shadow: 0 0 20px #ff6b35, 0 0 40px #ff6b35, 0 0 60px #ff6b35; /* Verstärktes Orange-Glowing */
}

.step-icon.stream {
    background: #6c757d; /* Grau für XML Stream */
    box-shadow: 0 0 20px #6c757d, 0 0 40px #6c757d, 0 0 60px #6c757d; /* Verstärktes Grau-Glowing */
}

.step-icon.sozpaed {
    background: var(--primary-color); /* Blau für sozpaed.net */
    box-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color), 0 0 60px var(--primary-color); /* Verstärktes Blau-Glowing */
}

.flow-step span {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.5rem; /* Von 1.75rem auf 1.5rem verkleinert */
    text-transform: none; /* Keine Großbuchstaben mehr */
    letter-spacing: 0.5px;
    white-space: nowrap; /* Texte in einer Zeile */
}

/* 4 kleine Pfeile nebeneinander mit Glowing-Effekt */
.flow-arrow {
    position: relative;
    width: 80px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.flow-arrow::before {
    content: '→ → → →';
    position: absolute;
    left: 0;
    top: -21px; /* Von -17px auf -21px (weitere 4mm nach oben) */
    font-size: 16px;
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color);
    animation: dataFlow 2s infinite;
}

/* Pfeile passen sich der Farbe des vorherigen Kreises an */
.flow-arrow:nth-child(2)::before {
    color: #ff6b35; /* Orange wie der Kunde-Kreis */
    text-shadow: 0 0 8px #ff6b35;
}

.flow-arrow:nth-child(4)::before {
    color: #6c757d; /* Grau wie der Stream-Kreis */
    text-shadow: 0 0 8px #6c757d;
}

/* Animation startet beim Kunden und läuft zu sozpaed.net */
.flow-arrow:nth-child(2)::before {
    animation: dataFlow 2s infinite;
}

.flow-arrow:nth-child(4)::before {
    animation: dataFlow 2s infinite 1s; /* Verzögerung für den zweiten Pfeil */
}

/* Datenfluss-Animation mit stärkerem Glowing */
@keyframes dataFlow {
    0% {
        color: var(--primary-color);
        text-shadow: 0 0 8px var(--primary-color), 0 0 16px var(--primary-color);
    }
    50% {
        color: var(--secondary-color);
        text-shadow: 0 0 12px var(--secondary-color), 0 0 24px var(--secondary-color);
    }
    100% {
        color: var(--primary-color);
        text-shadow: 0 0 8px var(--primary-color), 0 0 16px var(--primary-color);
    }
}

/* Zusätzliche Animation für die Icons */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-lg);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px var(--primary-color);
    }
}

.hero-highlights-below {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Größerer Abstand */
    width: 100%;
    max-width: 100%; /* Volle Breite des Flow-Diagramms */
    align-items: flex-start; /* Linksbündig mit den Kreissegmenten */
    padding: 0 3.5rem; /* Gleiche horizontale Abstände wie xml-flow-diagram */
    box-sizing: border-box; /* Padding wird in die Breite eingerechnet */
    margin: 0 auto; /* Zentriert den gesamten Bereich */
}



@media (max-width: 768px) {
    .hero-highlights-below {
        padding: 0 1.5rem !important;
        gap: 1rem !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .highlight {
        text-align: center !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem; /* Von 4rem auf 5rem vergrößert */
    position: relative;
    padding: 2rem 0;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-header h2 {
    font-size: 4.5rem; /* Von 3.5rem auf 4.5rem vergrößert */
    font-weight: 900;
    margin-bottom: 1.5rem; /* Größerer Abstand */
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 2rem; /* Von 1.5rem auf 2rem vergrößert */
    color: var(--text-secondary);
    max-width: 700px; /* Größere Breite */
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Partners Section - nach oben gerückt */
.partners {
    padding: 5rem 0; /* Von 4rem auf 5rem vergrößert */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.partners .container {
    position: relative;
    z-index: 2;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); /* Von 400px auf 450px vergrößert */
    gap: 2.5rem; /* Von 2rem auf 2.5rem vergrößert */
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .partner-card {
        padding: 2rem !important;
    }
}

.partner-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 3rem; /* Von 2.5rem auf 3rem vergrößert */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.partner-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.partner-header {
    display: flex;
    justify-content: flex-end; /* Badge nach rechts */
    align-items: flex-start;
    margin-bottom: 2rem; /* Von 1.5rem auf 2rem vergrößert */
}

.partner-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e88e5 50%, var(--accent-color) 100%);
    color: white;
    padding: 0.75rem 1.5rem; /* Größerer Padding */
    border-radius: var(--radius-sm);
    font-size: 1rem; /* Von 0.875rem auf 1rem vergrößert */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(36, 150, 202, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.partner-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 150, 202, 0.4);
}

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

.partner-content h3 {
    font-size: 2.25rem; /* Von 1.75rem auf 2.25rem vergrößert */
    font-weight: 700;
    margin-bottom: 1.5rem; /* Von 1rem auf 1.5rem vergrößert */
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}

.partner-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.4s ease;
    border-radius: 2px;
}

.partner-card:hover .partner-content h3::after {
    width: 100%;
}

.partner-card:hover .partner-content h3 {
    color: var(--primary-color);
    transform: translateX(5px);
}

.partner-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.375rem; /* Von 1.125rem auf 1.375rem vergrößert */
    transition: all 0.3s ease;
    position: relative;
}

.partner-description strong {
    color: var(--primary-color);
    font-weight: 700;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-description {
    color: var(--text-primary);
}

.partner-card:hover .partner-description strong {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(73, 80, 87, 0.3);
}

/* Stats Section */
.stats {
    padding: 5rem 0; /* Von 4rem auf 5rem vergrößert */
    background: var(--primary-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Von 200px auf 250px vergrößert */
    gap: 4rem; /* Von 3rem auf 4rem vergrößert */
    text-align: center;
}

.stat-item {
    padding: 3rem; /* Von 2rem auf 3rem vergrößert */
}

.stat-number {
    font-size: 5rem; /* Von 4rem auf 5rem vergrößert */
    font-weight: 900;
    margin-bottom: 1rem; /* Von 0.5rem auf 1rem vergrößert */
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.5rem; /* Von 1.25rem auf 1.5rem vergrößert */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.back-to-top-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(36, 150, 202, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top-btn:hover {
    background: #1a7aa8;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(36, 150, 202, 0.4);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn i {
    font-size: 14px;
    line-height: 1;
}

.back-to-top-btn i:first-child {
    margin-bottom: -2px;
}

.back-to-top-btn i:last-child {
    margin-top: -2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 7rem;
    }
    
    .xml-flow-diagram {
        padding: 3rem 2.5rem;
        gap: 2.5rem;
    }
    
    .step-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 3.5rem;
    }
    
    .section-header p {
        font-size: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2rem;
    }
    
    .xml-flow-diagram {
        padding: 2.5rem;
        gap: 2rem;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .flow-arrow {
        width: 60px;
    }
    
    .flow-arrow::before {
        font-size: 14px;
        top: -18px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .section-header p {
        font-size: 1.25rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-card {
        padding: 2rem;
    }
    
    .xml-flow-diagram {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        min-height: auto;
    }
    
    .flow-step {
        gap: 1rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .flow-arrow {
        width: 40px;
        height: 40px;
        transform: rotate(90deg);
    }
    
    .flow-arrow::before {
        font-size: 12px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-highlights-below {
        padding: 0 1.5rem;
        gap: 1rem;
    }
    
    .highlight {
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 4rem;
    }
    
    .stat-label {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.125rem;
    }
    
    .xml-flow-diagram {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        width: 30px;
        height: 30px;
    }
    
    .flow-arrow::before {
        font-size: 10px;
    }
    
    .partner-card {
        padding: 1.5rem;
    }
    
    .partner-content h3 {
        font-size: 1.75rem;
    }
    
    .partner-description {
        font-size: 1.125rem;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 1.125rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top-btn {
        width: 50px;
        height: 50px;
    }
    
    .back-to-top-btn i {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .partner-card {
        padding: 1rem;
    }
    
    .xml-flow-diagram {
        padding: 1rem 0.75rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .partner-card {
        padding: 2rem;
    }
    
    .btn {
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Styles */
.hero-faq {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2496ca 0%, #1e7aa8 100%);
    position: relative;
    overflow: hidden;
    padding-top: 140px;
}

.hero-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid-faq" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid-faq)"/></svg>');
    opacity: 0.3;
}

.hero-container-faq {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.breadcrumb i {
    font-size: 0.75rem;
}

.breadcrumb-item {
    transition: all 0.3s ease;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.post-author,
.post-date,
.post-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.post-author i,
.post-date i,
.post-category i {
    font-size: 1.25rem;
}

.faq-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1.2;
}

.faq-title i {
    font-size: 3.5rem;
}

.faq-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 800px;
}

/* Main Content Section */
.main-content-section {
    padding-top: 82px;
    padding-bottom: 0;
    background: #f5f5f5;
    margin-bottom: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content-wrapper-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Hero Center */
.hero-center {
    text-align: center;
    margin-bottom: 2.5rem;
    margin-top: -38px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 0.9;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-subtitle-main {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    line-height: 1.4;
    text-align: center;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    grid-auto-rows: auto;
    margin-bottom: 0;
}

.steps-grid .step-card.half-width {
    max-width: 450px;
}

.step-card {
    display: grid;
    grid-template-columns: 1fr 60px;
    gap: 1rem;
    align-items: center;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(36, 150, 202, 0.1);
    min-height: 180px;
}

.step-1 {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(108, 117, 125, 0.2);
}

.step-2 {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    border: 1px solid rgba(108, 117, 125, 0.25);
}

.step-3 {
    background: linear-gradient(135deg, #dee2e6 0%, #e9ecef 100%);
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.step-logo {
    background: linear-gradient(135deg, #ced4da 0%, #dee2e6 100%);
    border: 1px solid rgba(108, 117, 125, 0.35);
}

.step-4 {
    background: linear-gradient(135deg, #adb5bd 0%, #ced4da 100%);
    border: 1px solid rgba(108, 117, 125, 0.4);
}

.step-contact {
    background: linear-gradient(135deg, #6c757d 0%, #adb5bd 100%);
    border: 1px solid rgba(108, 117, 125, 0.5);
}

.step-contact .step-content p {
    color: #212529;
    font-weight: 500;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #1e88e5, var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.step-card.half-width {
    grid-column: span 1;
    min-height: 220px;
    align-items: flex-start;
}

.step-card.half-width .step-content {
    align-items: flex-start;
    padding-top: 0;
}

.step-card.half-width .step-content h3 {
    min-height: auto;
    align-items: flex-start;
    margin-top: 0;
}

.step-card.half-width .step-number {
    margin-top: 0;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(36, 150, 202, 0.2);
    border-color: var(--primary-color);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    order: 2;
}

.step-number span {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-1 .step-number span,
.step-2 .step-number span,
.step-3 .step-number span {
    background: linear-gradient(135deg, #2496ca 0%, #1e7aa8 100%);
    color: white;
}

.step-card:hover .step-number span {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e88e5 100%);
    color: white;
}

.step-1:hover .step-number span,
.step-2:hover .step-number span,
.step-3:hover .step-number span {
    background: linear-gradient(135deg, #1e7aa8 0%, #165c85 100%);
    color: white;
}

.step-1 .step-content h3 {
    margin-top: 2mm;
}

.step-2 .step-number,
.step-3 .step-number {
    margin-right: -4mm;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    order: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.step-content h3 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.step-card:hover .step-content h3 {
    color: var(--primary-color);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.btn-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e88e5 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(36, 150, 202, 0.3);
    margin-top: 0.75rem;
}

.btn-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(36, 150, 202, 0.4);
}

.btn-pricing {
    background: linear-gradient(135deg, #ff6b35 0%, #f44336 100%);
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

.btn-pricing:hover {
    box-shadow: 0 6px 25px rgba(244, 67, 54, 0.4);
}

.step-visual {
    display: none;
}

.icon-circle {
    display: none;
}

.icon-circle.register {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.icon-circle.form {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.icon-circle.pricing {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.icon-circle.dashboard {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}


/* Logo Section Compact */
.step-logo .step-number span {
    background: linear-gradient(135deg, #fff4e6 0%, #ffe0b2 100%);
    color: #f57c00;
    font-size: 2rem;
}

.step-logo:hover .step-number span {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

/* Step 4 Dashboard Section */
.step-4 .step-number span {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
    font-size: 1.5rem;
}

.step-4:hover .step-number span {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

/* Contact Badge Section */
.step-contact .step-number span {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #8b5cf6;
    font-size: 1.5rem;
}

.step-contact:hover .step-number span {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.step-contact:hover .step-content h3 {
    color: white;
}

.step-contact:hover .step-content h3 i {
    color: white;
}

.btn-contact-compact {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-contact-compact:hover {
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
}

.btn-contact-large {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    padding: 1.5rem 3rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.btn-contact-large:hover {
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.compact-tool {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: calc(4.5rem + 15mm);
    margin-top: 2rem;
}

.tool-preview-compact {
    display: flex;
    justify-content: center;
}

.dimension-box-compact {
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff4e6 0%, #ffe0b2 100%);
    font-size: 2rem;
    color: #f57c00;
    transition: all 0.3s ease;
}

.step-card:hover .dimension-box-compact {
    transform: scale(1.05);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.btn-tool-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    margin-top: 0.5rem;
}

.btn-tool-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
}

/* Dashboard Path Compact */
.dashboard-path-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.path-badge {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.path-badge.highlight {
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e88e5 100%);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(36, 150, 202, 0.3);
}

.dashboard-path-compact i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2496ca 0%, #1e7aa8 100%);
    position: relative;
    overflow: hidden;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #2496ca 0%, #1e7aa8 100%);
    padding: 2rem 0 2rem 0;
    text-align: center;
    margin: 0;
}

.footer-section .container {
    margin: 0 auto;
}

.footer-section p {
    color: white;
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

.contact-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 4rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.contact-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e88e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(36, 150, 202, 0.4);
    animation: pulse 2s infinite;
}

.contact-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 3.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.contact-decoration {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.decoration-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.decoration-circle:nth-child(2) {
    animation-delay: 0.3s;
}

.decoration-circle:nth-child(3) {
    animation-delay: 0.6s;
}

/* Responsive FAQ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle-main {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle-main {
        font-size: 1.75rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card.half-width {
        grid-column: 1;
        min-height: auto;
        max-width: 100%;
    }
    
    .compact-tool {
        gap: 2rem;
    }
    
    .step-2 .step-number,
    .step-3 .step-number {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .hero-subtitle-main {
        font-size: 1.5rem;
        margin-top: 1rem;
        text-align: center;
    }
    
    .main-content-section {
        padding-top: 140px;
        padding-bottom: 3rem;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .hero-title-section {
        padding-top: 140px;
        padding-bottom: 2rem;
    }
    
    .hero-faq {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 3rem;
    }
    
    .faq-title {
        font-size: 2.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .faq-title i {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .step-card {
        grid-template-columns: 1fr 50px;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .step-number {
        order: 2;
    }
    
    .step-content {
        order: 1;
    }
    
    .step-number span {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-2 .step-number,
    .step-3 .step-number {
        margin-right: 0;
    }
    
    .step-content h3 {
        white-space: normal;
        font-size: 1.25rem;
    }
    
    .step-content p {
        white-space: normal;
    }
    
    .compact-tool {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .dimension-box-compact {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .btn-tool-compact {
        width: 100%;
        justify-content: center;
    }
    
    .btn-contact-compact {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .btn-contact-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .dashboard-path-compact {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-box {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        text-align: center;
    }
    
    .contact-decoration {
        display: none;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .dashboard-path {
        flex-direction: column;
        text-align: center;
    }
}

/* Pricing Page Styles - CodePen Design */

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.25rem;
    margin-bottom: 0;
}

.pricing-card {
    position: relative;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(-45deg, #f403d1, #64b5f6);
    border-radius: 15px;
    margin: 0 auto;
    padding: 10px 10px 8px 10px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    text-align: center;
}

.pricing-card:hover {
    transform: scale(1.045);
}

/* Unterschiedliche Gradienten für jede Karte */
.pricing-card.card-1,
.pricing-card.card-1 .card-icon {
    background: linear-gradient(-45deg, #f403d1, #64b5f6);
}

.pricing-card.card-2,
.pricing-card.card-2 .card-icon {
    background: linear-gradient(-45deg, #ffec61, #f321d7);
}

.pricing-card.card-3,
.pricing-card.card-3 .card-icon {
    background: linear-gradient(-45deg, #24ff72, #9a4eff);
}

.pricing-card.card-4,
.pricing-card.card-4 .card-icon {
    background: linear-gradient(-45deg, #fe0847, #feae3f);
}

.pricing-card.card-5,
.pricing-card.card-5 .card-icon {
    background: linear-gradient(-45deg, #00d2ff, #3a47d5);
}

.pricing-card.card-6,
.pricing-card.card-6 .card-icon {
    background: linear-gradient(-45deg, #11998e, #38ef7d);
}

/* Skewed Overlay am unteren Bereich */
.pricing-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transform: skewY(-5deg) scale(1.5);
}

/* Card Icon */
.card-icon {
    color: #fff;
    font-size: 26px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    text-align: center;
    line-height: 46px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.card-icon i {
    line-height: 46px;
}

/* Card Title */
.pricing-card h2 {
    position: relative;
    margin: 4px 0 0;
    padding: 0;
    color: #fff;
    font-size: 13px;
    z-index: 2;
    font-weight: 700;
}

/* Card Price */
.card-price,
.card-features {
    position: relative;
    z-index: 2;
}

.card-price h4 {
    margin: 0;
    padding: 4px 0;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
}

.card-price h4 sup {
    font-size: 15px;
    vertical-align: super;
}

/* Card Features */
.card-features {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-features ul {
    margin: 0;
    padding: 0 8px;
    flex: 1;
}

.card-features ul li {
    margin: 0 0 1px;
    padding: 0;
    list-style: none;
    color: #fff;
    font-size: 9px;
    text-align: left;
    white-space: nowrap;
}

.card-features ul li:first-child {
    font-size: 20px;
    font-weight: bold;
}

.card-features ul li i {
    margin-right: 3px;
    font-size: 8px;
}

/* Card Button */
.pricing-card a {
    position: relative;
    z-index: 2;
    background: #fff;
    color: black;
    width: 95px;
    height: 24px;
    line-height: 24px;
    border-radius: 40px;
    display: block;
    text-align: center;
    margin: 4px auto 0;
    font-size: 10px;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card a:hover {
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Pricing */

/* Extra Large Screens - Alle 6 nebeneinander */
@media (min-width: 1600px) {
    .pricing-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
    }
    
    .pricing-card {
        padding: 45px 22px;
    }
    
    .card-icon {
        font-size: 58px;
        width: 95px;
        height: 95px;
        line-height: 95px;
    }
    
    .card-icon i {
        line-height: 95px;
    }
    
    .pricing-card h2 {
        font-size: 36px;
        margin: 5px 0 0;
    }
    
    .card-price h4 {
        font-size: 64px;
        padding: 5px 0;
    }
    
    .card-price h4 sup {
        font-size: 29px;
    }
    
    .card-features ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .card-features ul li i {
        font-size: 14px;
    }
    
    .pricing-card a {
        width: 150px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        margin: 19px auto 0;
    }
}

/* Large Screens - 3 Karten pro Reihe */
@media (max-width: 1599px) and (min-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 40px 20px;
    }
    
    .card-icon {
        font-size: 60px;
        width: 100px;
        height: 100px;
        line-height: 100px;
    }
    
    .card-icon i {
        line-height: 100px;
    }
    
    .pricing-card h2 {
        font-size: 28px;
        margin: 20px 0 0;
    }
    
    .card-price h4 {
        font-size: 60px;
        padding: 20px 0;
    }
    
    .card-price h4 sup {
        font-size: 30px;
    }
    
    .card-features ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .card-features ul li i {
        font-size: 14px;
        margin-right: 8px;
    }
    
    .pricing-card a {
        width: 150px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        margin: 20px auto 0;
    }
}

/* Medium Screens - 2 Karten pro Reihe */
@media (max-width: 1199px) and (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .pricing-card {
        padding: 45px 25px;
        max-width: 100%;
    }
    
    .card-icon {
        font-size: 70px;
        width: 110px;
        height: 110px;
        line-height: 110px;
    }
    
    .card-icon i {
        line-height: 110px;
    }
    
    .pricing-card h2 {
        font-size: 32px;
        margin: 22px 0 0;
    }
    
    .card-price h4 {
        font-size: 70px;
        padding: 22px 0;
    }
    
    .card-price h4 sup {
        font-size: 35px;
    }
    
    .card-features ul li {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .card-features ul li i {
        font-size: 16px;
        margin-right: 10px;
    }
    
    .pricing-card a {
        width: 170px;
        height: 45px;
        line-height: 45px;
        font-size: 18px;
        margin: 22px auto 0;
    }
    
    .pricing-card:hover {
        transform: scale(1.04);
    }
}

/* Small Screens - 1 Karte pro Reihe */
@media (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card {
        max-width: 100%;
        padding: 40px 20px;
    }
    
    .card-icon {
        font-size: 60px;
        width: 100px;
        height: 100px;
        line-height: 100px;
    }
    
    .card-icon i {
        line-height: 100px;
    }
    
    .pricing-card h2 {
        font-size: 28px;
        margin: 20px 0 0;
    }
    
    .card-price h4 {
        font-size: 60px;
        padding: 20px 0;
    }
    
    .card-price h4 sup {
        font-size: 30px;
    }
    
    .card-features ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .card-features ul li i {
        font-size: 14px;
        margin-right: 8px;
    }
    
    .pricing-card a {
        width: 150px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        margin: 20px auto 0;
    }
    
    .pricing-card:hover {
        transform: scale(1.02);
    }
}

/* Extra Small Screens - Mobile */
@media (max-width: 480px) {
    .pricing-card {
        padding: 35px 15px;
    }
    
    .card-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
        line-height: 80px;
    }
    
    .card-icon i {
        line-height: 80px;
    }
    
    .pricing-card h2 {
        font-size: 24px;
        margin: 16px 0 0;
    }
    
    .card-price h4 {
        font-size: 48px;
        padding: 16px 0;
    }
    
    .card-price h4 sup {
        font-size: 24px;
    }
    
    .card-features ul li {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .card-features ul li i {
        font-size: 12px;
        margin-right: 6px;
    }
    
    .pricing-card a {
        width: 130px;
        height: 36px;
        line-height: 36px;
        font-size: 14px;
        margin: 16px auto 0;
    }
}
