/* IT-Strategie-Check Stylesheet */

:root {
    --primary-color: #0066cc;
    --primary-dark: #004d99;
    --primary-light: #3385d6;
    --secondary-color: #00b8d4;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --border-color: #dee2e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 20px 0;
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.logo .tagline {
    font-size: 14px;
    opacity: 0.9;
}

.header-contact {
    display: flex;
    align-items: center;
}

.phone-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: var(--transition);
}

.phone-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Section Management */
.section {
    display: none;
    padding: 60px 0;
}

.section.active {
    display: block;
}

/* Landing Section */
.landing-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-content {
    padding: 20px 0;
}

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.benefit-item i {
    color: var(--success-color);
    font-size: 20px;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.info-box {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.info-box p {
    color: var(--gray-color);
    font-size: 16px;
}

/* Editorial Section */
.editorial-section {
    background: white;
    padding: 60px 0;
    margin-bottom: 60px;
}

.editorial-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.editorial-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: justify;
}

.editorial-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.editorial-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Dimensions Overview */
.dimensions-overview {
    margin-bottom: 80px;
}

.dimensions-overview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.dimension-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.dimension-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.dimension-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dimension-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.dimension-card p {
    font-size: 14px;
    color: var(--gray-color);
}

/* FAQ Section */
.faq-section {
    background: var(--light-color);
    padding: 60px 40px;
    border-radius: 16px;
    margin-bottom: 60px;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: var(--dark-color);
    line-height: 1.8;
    font-size: 16px;
}

/* Consulting Image Section */
.consulting-image-section {
    position: relative;
    margin-bottom: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.consulting-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consulting-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 40px;
}

.consulting-overlay h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.consulting-overlay p {
    font-size: 18px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    color: white;
    margin-bottom: 60px;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

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

.btn-secondary {
    background: var(--gray-color);
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Assessment Section */
.assessment-section {
    background: var(--light-color);
    min-height: 100vh;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    text-align: center;
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 40px;
}

.question-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.dimension-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.dimension-header h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.dimension-header i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dimension-header p {
    font-size: 16px;
    color: var(--gray-color);
}

.question-block {
    margin-bottom: 40px;
}

.question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.answer-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: var(--light-color);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.answer-option:hover {
    background: #e9ecef;
    border-color: var(--primary-light);
}

.answer-option.selected {
    background: #e3f2fd;
    border-color: var(--primary-color);
}

.answer-option input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.answer-option span {
    flex: 1;
    font-size: 16px;
    color: var(--dark-color);
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.navigation-buttons .btn {
    flex: 1;
    justify-content: center;
}

/* Results Section */
.results-section {
    background: var(--light-color);
}

.results-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.results-summary {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    margin-bottom: 50px;
}

.results-summary h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.results-summary .score {
    font-size: 72px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
}

.results-summary .category {
    font-size: 24px;
    margin-bottom: 30px;
}

.results-summary .description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-color);
    max-width: 800px;
    margin: 0 auto;
}

.results-chart {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.results-chart canvas {
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

.dimension-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.dimension-result {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.dimension-result h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dimension-result h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.dimension-result p {
    font-size: 15px;
    color: var(--gray-color);
}

.score-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.cta-results {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.cta-results h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-results p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Form Section */
.contact-section {
    background: var(--light-color);
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-intro {
    text-align: center;
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* Thank You Section */
.thankyou-section {
    background: var(--light-color);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thankyou-content {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.thankyou-icon {
    font-size: 80px;
    color: var(--success-color);
    margin-bottom: 30px;
}

.thankyou-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.thankyou-content p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.thankyou-content .btn {
    margin-top: 20px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-section i {
    margin-right: 8px;
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .dimensions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .dimension-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .info-boxes {
        grid-template-columns: 1fr;
    }

    .dimensions-grid {
        grid-template-columns: 1fr;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .navigation-buttons {
        flex-direction: column;
    }

    .consulting-image-section {
        height: 300px;
    }

    .consulting-overlay {
        padding: 20px;
    }

    .consulting-overlay h3 {
        font-size: 24px;
    }

    .consulting-overlay p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .results-summary .score {
        font-size: 56px;
    }

    .cta-section h2,
    .cta-results h2 {
        font-size: 28px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* Workshop Packages Section */
.workshop-packages {
    background: white;
    padding: 60px 40px;
    border-radius: 16px;
    margin-bottom: 60px;
    box-shadow: var(--shadow);
}

.workshop-packages h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.workshop-intro {
    text-align: center;
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.package-card {
    background: var(--light-color);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.package-featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border: 2px solid var(--primary-color);
}

.package-ribbon {
    position: absolute;
    top: 20px;
    right: -5px;
    background: var(--success-color);
    color: white;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.package-ribbon::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 5px 0;
    border-color: transparent #1e7e34 transparent transparent;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.package-header h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.package-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-price {
    text-align: center;
    margin-bottom: 30px;
}

.package-price .price {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.package-price .price-info {
    font-size: 14px;
    color: var(--gray-color);
}

.package-content h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--dark-color);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.package-features li i {
    color: var(--success-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.package-duration {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    color: var(--dark-color);
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
}

.package-duration i {
    color: var(--primary-color);
    margin-right: 8px;
}

.package-card .btn {
    width: 100%;
    justify-content: center;
}

.workshop-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 25px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.workshop-note i {
    color: #ffc107;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.workshop-note p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Responsive Workshop Packages */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .workshop-packages {
        padding: 40px 20px;
    }

    .workshop-packages h2 {
        font-size: 28px;
    }

    .package-card {
        padding: 30px 20px;
    }

    .package-header h3 {
        font-size: 24px;
    }

    .package-price .price {
        font-size: 40px;
    }

    .package-features li {
        font-size: 15px;
    }
}

/* Footer Keywords */
.footer-keywords {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    line-height: 1.8;
}
