/**
 * AKIM Landing Page Styles
 * Moderne Investor-Präsentation
 */

/* Reset body styles from style.css */
body {
    background-color: #ffffff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/akim_bild1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 71, 113, 0.9) 0%, rgba(61, 71, 113, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #D35F00;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-note {
    display: block;
    font-size: 0.7rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #D35F00;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(211, 95, 0, 0.4);
}

.cta-button:hover {
    background: #b85200;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(211, 95, 0, 0.5);
}

.cta-button svg {
    width: 24px;
    height: 24px;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #3D4771;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #566473;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Benefits */
.benefits {
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.benefit svg {
    width: 24px;
    height: 24px;
    color: #D35F00;
    flex-shrink: 0;
}

.benefit span {
    font-size: 1.05rem;
    color: #3D4771;
    font-weight: 500;
}

/* Direct Contact */
.direct-contact {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #D35F00;
}

.direct-contact h3 {
    font-size: 1rem;
    color: #3D4771;
    margin-bottom: 15px;
    font-weight: 600;
}

.direct-contact p {
    margin: 8px 0;
    color: #566473;
    font-size: 0.95rem;
}

.direct-contact a {
    color: #D35F00;
    text-decoration: none;
}

.direct-contact a:hover {
    text-decoration: underline;
}

/* Lead Form */
.contact-form-wrapper {
    position: sticky;
    top: 20px;
}

.lead-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.lead-form h3 {
    font-size: 1.5rem;
    color: #3D4771;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #3D4771;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid #e0e5eb;
    border-radius: 10px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #D35F00;
}

.form-group input::placeholder {
    color: #a0a8b3;
}

/* E-Mail Validation Error */
.form-group input.invalid {
    border-color: #dc3545;
}

.email-error {
    display: none;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 6px;
}

.email-error.visible {
    display: block;
}

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

.submit-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #D35F00;
    color: #ffffff;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    background: #b85200;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 95, 0, 0.3);
}

.submit-button svg {
    width: 22px;
    height: 22px;
}

.form-note {
    font-size: 0.8rem;
    color: #8c939d;
    text-align: center;
    margin-top: 15px;
}

.recaptcha-notice {
    font-size: 0.7rem;
    color: #a0a8b3;
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
}

.recaptcha-notice a {
    color: #8c939d;
    text-decoration: underline;
}

.recaptcha-notice a:hover {
    color: #D35F00;
}

/* Products Preview */
.products-preview {
    padding: 80px 20px;
    background: #3D4771;
}

.products-preview h2 {
    text-align: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 50px;
    font-weight: 700;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.product-card h3 {
    font-size: 1.1rem;
    color: #D35F00;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Footer */
footer {
    background: #2a3050;
    padding: 40px 20px;
}

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

.footer-logo img {
    max-height: 60px;
    width: auto;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 5px 0;
}

.footer-info a {
    color: #D35F00;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-copy p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Responsive - Tablet */
@media screen and (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .lead-form {
        padding: 30px 25px;
    }

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

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

@media screen and (max-width: 480px) {
    .hero {
        background-attachment: scroll;
    }

    .hero-logo {
        max-width: 200px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    .contact-section {
        padding: 50px 15px;
    }

    .lead-form {
        padding: 25px 20px;
    }
}
