/* --- HERO (Startseite only) --- */
.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    /* Main stack: Columns + CTA */
    justify-content: center;
    position: relative;
    padding-top: 150px;
    padding-bottom: 4rem;
    overflow: visible;
}

.hero-columns {
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-cta {
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    text-align: center;
    z-index: 10;
}

/* Adjust button size in the centered container */
.hero-cta .cta-button {
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding-right: 2rem;
}

/* Hero subtext */
.hero-subtext {
    font-size: 1.2rem;
    line-height: 1.75;
    color: #c0c0c0;
    max-width: 520px;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Desktop CTA Button Styling (REMOVED - now handled by hero-cta) */

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0;
    /* Remove bottom margin as CTA is separate now */
}

/* --- STATS STRIP --- */
.stats-strip {
    padding: 2.5rem 0;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .stat-number {
        font-size: 2.2rem;
    }
}

/* --- SERVICES GRID --- */
.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.section-headline {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    /* color: var(--accent-color);  Uncomment if color matching is desired, currently keeping white per original default if not specified, but matching size is key */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Make the link wrapper display block so it fills the grid cell */
.service-card-link {
    display: block;
    height: 100%;
}

/* Hover effect on the wrapper triggers transform on the inner card */
.service-card-link:hover .service-card {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card-link:hover h3,
.service-card-link:hover span {
    color: var(--accent-color);
    /* Highlight text on hover */
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.service-card ul {
    padding-left: 1.2rem;
}

.service-card ul li {
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.service-card ul li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: -1rem;
}

/* --- ABOUT SECTION (Homepage) --- */
.about {
    position: relative;
    padding: 8rem 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-container:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: transform 0.3s ease;
}

/* Link style: Yellow text with arrow */
.service-cta-button {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease;
    margin-top: auto;
    /* Ensure it stays at the bottom if using flex column */
}

.service-cta-button::after {
    content: " \2192";
    /* Arrow right */
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-card-link:hover .service-cta-button {
    /* No bg change */
    transform: translateX(5px);
    /* Move entire link slightly right */
}

.service-card-link:hover .service-cta-button::after {
    transform: translateX(3px);
    /* Move arrow a bit more */
}

/* Gold glow effect */
.about-image::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--accent-color);
    filter: blur(80px);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    transition: color 0.3s ease;
}

.about-container:hover .about-text h2 {
    color: var(--accent-color);
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #ccc;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    text-decoration: none;
}

.about-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.about-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {


    .services-header h2,
    .section-headline {
        font-size: 2.2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-columns {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
        /* Center text on mobile */
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero {
        padding-top: 120px;
        height: auto;
        min-height: 100vh;
        /* Flex direction is already column from base styles */
        justify-content: center;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        width: 250px;
        height: 250px;
    }

    .about-image::before {
        width: 250px;
        height: 250px;
    }

    .hero-cta {
        margin-bottom: 6rem;
    }

    .hero-cta .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: auto;
        /* Allow auto width or 100% depending on preference, auto is safer for centering */
        max-width: 90%;
        /* Prevent overflow */
    }
}

/* --- FAQ ACCORDION SECTION --- */
.faq-section {
    padding: 3rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-header h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.faq-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 193, 7, 0.3);
}

.faq-item.active {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.3rem 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    padding: 0 1.5rem;
    color: #c0c0c0;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.3rem 1.5rem;
}