/* Base Styles */
:root {
    --primary: #3b82f6;
    --secondary: #10b981;
    --accent: #8b5cf6;
    --background: #0f172a;
    --text: #f8fafc;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, system-ui, 'Inter', Helvetica, Arial, sans-serif;
    color: var(--text);
    /*
    background-color: var(--background);
    background-image: 
        radial-gradient(at 40% 20%, rgba(59, 130, 246, 0.32) 0px, transparent 32%),
        radial-gradient(at 80% 50%, rgba(16, 185, 129, 0.35) 0px, transparent 35%),
        radial-gradient(at 20% 80%, rgba(139, 92, 246, 0.37) 0px, transparent 37%);
    */
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    line-height: 1.6;
    background-image: url('../images/hero-bg.png') !important;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-margin-top: 80px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: #e2e8f0;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 100;
}

.section-subtitle.big {
    font-size: 2.86rem;
    text-align: center;
    color: #e2e8f0;
    margin-bottom: 1.86rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 100;
}

.section-subtitle.big strong {
    font-weight: 900;
    color: #e00000;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.7);
}

/* Glass Card Effect */
.glass-card {
    background: rgba(251, 251, 251, 0.035);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.32);
    padding: 2rem;
    transition: all 0.25s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 44px 0 rgba(0, 0, 0, 0.48);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 98, 245, 0.6);
    font-weight: 700;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 700;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    font-weight: 700;
}

.btn-full {
    width: 100%;
    text-align: center;
    font-weight: 700;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease;
    background: rgba(15, 23, 42, 0.66);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    padding: 0.48rem 0;
}

#navbar.scrolled {
    background: rgba(15, 23, 42, 0.66);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    padding: 0.77rem 0;
}


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

.logo {
    font-size: 1.3rem;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
}

.nav-link {
    color: rgba(255,255,255,0.67);
    text-decoration: none;
    font-weight: 100;
    transition: all 0.25s ease;
}

.nav-link:hover, .nav-link.active {
     color: rgba(255,255,255,1);
    text-shadow: 0 0 16px rgba(255, 255, 255, 1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.25s ease;
}

/* Hero Section */
.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.4rem;
    line-height: 3.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.austro {
    color: #e00000;
}

.hero-text .subtitle {
    font-size: 2rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-card {
    flex: 1;
}

.hero-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.45rem;
}

.hero-card p {
    margin-bottom: 1.15rem;
}

.hero-card .small-text {
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.support-card {
    text-align: center;
    margin-top: 3rem;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 2px solid TRANSPARENT;
    background: linear-gradient(var(--primary), var(--secondary));
}

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

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 0 0 14px rgba(0, 0, 0, 0.56);
}

.about-card {
    margin-top: 3rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Inter', sans-serif;
}

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

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.pricing-plan.popular {
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: 13px;
    left: 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 0.82rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.2rem 1.2rem 0 0;
    font-weight: 600;
    transform: translateY(-100%);
    box-shadow: 0 0 43px rgba(37, 98, 245, 1);
    width: 100.22%;
}

.pricing-plan h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-description {
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.features-list {
    list-style-type: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.features-list li::before {
    content: "✓";
    color: var(--secondary);
    margin-right: 0.5rem;
    font-weight: bold;
}

.consultation-card {
    text-align: center;
    margin-top: 3rem;
}

.consultation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.consultation-card p {
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out forwards;
    opacity: 1; /* Ensure opacity remains at 1 after animation */
    transform: translateZ(0); /* Force GPU acceleration */
    -webkit-transform: translateZ(0);
}

.slide-up {
    animation: slideUp 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

a.reset,
a.reset:link,
a.reset:visited,
a.reset:hover,
a.reset:active {
    color: inherit;            /* Keine eigene Link-Farbe, erbt vom Eltern-Element */
    text-decoration: none;     /* Keine Unterstreichung */
    background: transparent;   /* Kein Hintergrund */
    border: none;              /* Keine Rahmen (falls z.B. Buttons als Links gestylt waren) */
    cursor: pointer;           /* Standard-Mauszeiger für Klickbarkeit */
    outline: none;             /* Kein Fokus-Rahmen (falls nicht gewünscht) */
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 2.6rem;
        margin-bottom: 1.5rem;
    }

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

    .hero-text .subtitle {
        font-size: 1.2rem;
    }

    .nav-links {
        position: fixed;
        top: 54px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.87);
        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }

    .pricing-grid,
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}
