/* Font Definitionen */
@font-face {
    font-family: 'Product Sans';
    src: url('fonts/ProductSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Product Sans';
    src: url('fonts/ProductSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Product Sans';
    src: url('fonts/ProductSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Product Sans';
    src: url('fonts/ProductSans-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #0f3460;
    --accent-color: #007bff;
    --gradient-start: #0056b3;
    --gradient-end: #007bff;
    --text-color: #1a1a2e;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    --divider-color: #e0e0e0;
    --dark-bg: #1a1a2e;
    --border-radius: 20px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Product Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

/* Überschriften */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Product Sans', sans-serif;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.2rem;
    text-align: left;
    line-height: 1.1;
    font-weight: 900;
    color: var(--white);
}

.section-title {
    font-weight: 700;
}

/* Navigation */
.nav-links a {
    font-family: 'Product Sans', sans-serif;
    font-weight: 500;
}

/* Buttons */
.cta-button, .learn-more-button {
    font-family: 'Product Sans', sans-serif;
    font-weight: 500;
}

/* Highlight Boxen */
.highlight-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-box:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.highlight-box:hover::before {
    opacity: 1;
}

.highlight-box .material-symbols-rounded {
    font-size: 2.8rem;
    color: var(--white);
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.highlight-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
    text-align: left;
    display: flex;
    align-items: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Service Cards */
.service-card h3 {
    font-family: 'Product Sans', sans-serif;
    font-weight: 700;
}

.service-card p {
    font-family: 'Product Sans', sans-serif;
    font-weight: 300;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 2rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 1.2rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

nav.scrolled {
    top: 1rem;
}

nav.scrolled .nav-container {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 20px;
}

.nav-links a:hover {
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-links a:hover::before {
    opacity: 1;
}

/* Mobile Navigation */
.burger {
    display: none;
    cursor: pointer;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.burger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-active {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-active.active {
    transform: translateX(0);
}

.nav-active .nav-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2rem;
}

.nav-active .nav-links a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
}

.nav-active .nav-links a::before {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
}

@media (max-width: 1024px) {
    .nav-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        top: 1rem;
    }

    .nav-container {
        padding: 1rem 0.6rem;
    }

    .burger {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-active {
        display: flex;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    padding: 0;
    position: relative;
}

.hero-left {
    text-align: left;
    padding-left: 6rem;
    max-width: 700px;
    position: relative;
    z-index: 2;
    margin-left: -50px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    position: relative;
    z-index: 2;
    margin-left: 50px;
}

.drone-model-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 900px;
    transform-style: preserve-3d;
    perspective: 1000px;
    margin-top: -50px;
}

.drone-model {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    transform-origin: center center;
}

.drone-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: translateZ(0);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.drone-specs {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
}

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

.spec-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.spec-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-left {
        padding-left: 0;
        text-align: center;
        margin: 0 auto;
        margin-left: -20px;
    }

    .hero-right {
        margin-left: 20px;
    }

    .drone-model-container {
        max-width: 450px;
        height: 650px;
        margin-top: -30px;
    }

    .drone-specs {
        bottom: 30px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: left;
    opacity: 0.9;
    line-height: 1.4;
    color: var(--white);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 2rem;
}

.cta-button, .learn-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button {
    background: var(--accent-color);
    color: white;
}

.learn-more-button {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover, .learn-more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1400px) {
    .hero-left {
        padding-left: 4rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 1200px) {
    .hero-grid {
        gap: 2rem;
    }

    .hero-left {
        padding-left: 3rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 2rem;
    }

    .hero-left {
        padding-left: 0;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero h1, .hero p {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-right {
        margin: 0 auto;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        gap: 3rem;
    }

    .highlight-box {
        padding: 1.2rem 1.5rem;
    }

    .highlight-box .material-symbols-rounded {
        font-size: 2.5rem;
    }

    .highlight-box p {
        font-size: 1rem;
    }

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

    .hero p {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .cta-button, .learn-more-button {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }
}

/* Service Cards mit Material Icons */
.service-card .material-symbols-rounded {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 48;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .feature-cards {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 3rem;
    }
}

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

    .hero-description {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

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

    .cta-button, .learn-more-button {
        width: 100%;
        justify-content: center;
    }
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card i {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        text-align: center;
    }

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

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

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

@media (max-width: 768px) {
    .hero-features {
        grid-template-columns: 1fr;
    }

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

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

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

    .hero p {
        font-size: 1.2rem;
    }
}

/* Sections */
section {
    padding: 12rem 0 4rem;
    background: var(--light-bg);
    position: relative;
}

/* Trennlinie zwischen Sektionen */
section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 1px;
    background: var(--divider-color);
}

section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    position: relative;
    padding-bottom: 0;
}

section h2::after {
    display: none;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1rem;
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.qualifications {
    list-style: none;
    margin-top: 2rem;
}

.qualifications li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.1rem;
}

.qualifications i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.pricing {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.pricing-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.section-header .material-symbols-rounded {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.section-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--dark-bg);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
        gap: 1.5rem;
    }

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item .material-symbols-rounded {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-text h4 {
        font-size: 1.1rem;
    margin: 0 0 0.3rem 0;
    color: var(--dark-bg);
}

.feature-text p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.configurator-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.configurator-cta p {
    margin: 1rem 0 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.configure-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.configure-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.configure-button .material-symbols-rounded {
    margin-right: 0.5rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.option-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.option-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.option-item .material-symbols-rounded {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.option-item h4 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    color: var(--dark-bg);
}

.option-item p {
    margin: 0 0 1rem 0;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.option-price {
    font-weight: 600;
    color: var(--primary-color);
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

@media (max-width: 768px) {
    .pricing {
        padding: 2rem 0;
    }
    
    .pricing h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .pricing-sections {
        grid-template-columns: 1fr;
    }
    
    .pricing-section {
        padding: 1.5rem;
}

    .price-tag {
        font-size: 2rem;
}

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

.pricing .services-preview {
    padding: 0;
    background: transparent;
}

.material-symbols-rounded.icon {
    font-size: 50px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    color: var(--accent-color);
    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 48;
}

.link-card:hover .material-symbols-rounded.icon {
    transform: scale(1.1);
}

/* Entferne die alten Icon-Styles */
.equipment-icon,
.price-icon,
.contact-icon {
    display: none;
}

.price-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-style: italic;
}

.base-price-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-header {
    margin-bottom: 2rem;
    text-align: center;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.price-features {
    margin: 2rem 0;
}

.price-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #444;
}

.price-features i {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-circle {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-circle:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-circle:hover::before {
    opacity: 1;
}

.circle-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.feature-circle .material-symbols-rounded {
    font-size: 2.5rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.feature-circle:hover .material-symbols-rounded {
    transform: scale(1.2);
}

.feature-circle p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.feature-circle:hover p {
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .hero-right {
        margin: 0 auto;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-circle {
        aspect-ratio: 1;
    }

    .circle-content {
        padding: 1rem;
    }

    .feature-circle .material-symbols-rounded {
        font-size: 2rem;
    }

    .feature-circle p {
        font-size: 0.9rem;
    }
}

.pricing-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-section {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item .material-symbols-rounded {
    font-size: 2rem;
    color: var(--accent-color);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.feature-text p {
    font-size: 0.9rem;
    color: #666;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.option-item {
    background: rgba(0, 123, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.option-item:hover {
    transform: translateY(-3px);
}

.option-item .material-symbols-rounded {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.option-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.option-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.option-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

.time-options, .photo-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.time-item, .photo-item {
    background: rgba(0, 123, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.time-item:hover, .photo-item:hover {
    transform: translateY(-3px);
}

.time-item .material-symbols-rounded,
.photo-item .material-symbols-rounded {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.time-item h4, .photo-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 20px;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--accent-color);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .pricing-sections {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .options-grid, .time-options, .photo-options {
        grid-template-columns: 1fr;
    }

    .pricing-section {
        padding: 1.5rem;
    }

    .price-tag {
        font-size: 2.5rem;
    }

    .feature-item .material-symbols-rounded {
        font-size: 1.8rem;
    }
}

.configurator-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 20px;
    border: 2px dashed var(--accent-color);
}

.configurator-cta p {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.configure-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.configure-button .material-symbols-rounded {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.configure-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.configure-button:hover .material-symbols-rounded {
    transform: rotate(90deg);
}

.cta-section {
    margin-top: 2rem;
}

/* Konfigurator Styles */
.configurator {
    padding: 12rem 0 4rem;
    background-color: #f8f9fa;
    min-height: calc(100vh - 80px);
    font-family: 'Product Sans', sans-serif;
}

.configurator h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Progress Steps */
.configurator-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.progress-step {
    position: relative;
    z-index: 2;
    background: none;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.progress-step.active .step-number {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.step-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Configuration Steps */
.config-step {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: calc(100vh - 300px);
    display: flex;
    flex-direction: column;
}

.config-step.active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

.config-step h3 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
}

/* Project Options */
.project-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.project-option {
    position: relative;
}

.project-option:hover {
    cursor: pointer;
}

.project-option input[type="radio"] {
    display: none;
}

.project-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.project-option label:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.1);
    cursor: pointer;
}

.form-group select,
.form-group input[type="radio"],
.form-group input[type="checkbox"],
.form-group input[type="radio"] + label,
.form-group input[type="checkbox"] + label {
    cursor: pointer;
}

.checkbox-group,
.checkbox-group label,
.checkbox-group input[type="checkbox"] {
    cursor: pointer;
}

.project-option input[type="radio"]:checked + label {
    border-color: var(--accent-color);
    background: rgba(0, 123, 255, 0.02);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.15);
}

.project-option .material-symbols-rounded {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.project-option h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.project-option p {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Product Sans', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

/* Navigation Buttons */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    gap: 1rem;
    padding-top: 2rem;
}

.prev-step,
.next-step,
.submit-config {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Product Sans', sans-serif;
    font-size: 1rem;
}

.prev-step {
    background: #f0f0f0;
    color: #666;
}

.prev-step:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.next-step,
.submit-config {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.next-step:hover,
.submit-config:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.submit-config {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--accent-color), #0056b3);
}

.submit-config .material-symbols-rounded {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-config:hover .material-symbols-rounded {
    transform: translateX(4px);
}

/* Checkbox Groups */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.checkbox-group:hover {
    background: #f0f0f0;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.checkbox-group label {
    flex: 1;
    font-size: 0.95rem;
    color: #444;
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

/* Important Info Box */
.important-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 16px;
    border-left: 3px solid var(--accent-color);
}

.important-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.important-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-info li {
    margin-bottom: 0.8rem;
    color: #666;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
}

.important-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

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

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .configurator {
        padding: 2rem 1rem;
    }

    .configurator h2 {
        font-size: 2rem;
    }

    .config-step {
        padding: 1.5rem;
    }

    .project-options {
        grid-template-columns: 1fr;
    }

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

    .prev-step,
    .next-step,
    .submit-config {
        width: 100%;
    }

    .step-label {
        display: none;
    }
}

/* Scrollbar verstecken für Chrome, Safari und Opera */
::-webkit-scrollbar {
    display: none;
}

/* Scrollbar verstecken für IE, Edge und Firefox */
* {
    -ms-overflow-style: none;  /* IE und Edge */
    scrollbar-width: none;  /* Firefox */
}