/* ============================================
   BRM Lasers — mein.brmlasers.de
   Landing Page Styles
   ============================================ */

/* --- CSS Custom Properties (Brand Package) --- */
:root {
    /* Primary Colors */
    --color-accent-1: hsl(32 93.1% 54.3%);          /* #f7921e BRM Orange */
    --color-accent-1-light: hsl(31 87.7% 68%);       /* #f5b166 */
    --color-accent-1-lighter: hsl(31 88.9% 89.4%);   /* #fce5cc */
    --color-accent-2: hsl(162 100% 55.9%);            /* #1effbc BRM Mint */
    --color-accent-3: hsl(5 99% 58.8%);               /* #fe402e BRM Red */

    /* Base Colors */
    --color-base: hsl(202.46, 100%, 38.24%);          /* #007ac3 BRM Blue */
    --color-base-dark: hsl(202.77, 100%, 26.86%);     /* #005589 */
    --color-base-light: hsl(202.5, 61.82%, 56.86%);   /* #4da2d5 */
    --color-base-lighter: hsl(203.08, 61.90%, 87.65%);/* #cce4f3 */

    /* Dark Blue */
    --color-base-2: hsl(205.07, 100%, 13.14%);        /* #002743 Text Default */
    --color-base-2-dark: hsl(205, 53.57%, 21.96%);    /* #1a3d56 */
    --color-base-2-light: hsl(204.78, 23%, 39.22%);   /* #4d687b Body Text */
    --color-base-2-lighter: hsl(207, 15.15%, 74.12%); /* #b3bec7 */

    /* Grayscale */
    --color-gray-100: hsl(0 0% 95.3%);                /* #f3f3f3 */
    --color-gray-200: hsl(0 0% 90.6%);                /* #e7e7e7 */
    --color-gray-300: hsl(0 0% 84%);                   /* #dbdbdb */
    --color-gray-400: hsl(0 0% 71%);                   /* #878787 */
    --color-black: hsl(0 0% 6.7%);                     /* #111111 */
    --color-white: hsl(0 0% 100%);                     /* #ffffff */

    /* Gradients */
    --brm-gradient-1: linear-gradient(90deg, var(--color-accent-1) 0%, var(--color-accent-3) 100%);
    --brm-gradient-2: linear-gradient(90deg, var(--color-base) 0%, var(--color-accent-2) 100%);
    --brm-gradient-3: linear-gradient(90deg, var(--color-base-2-dark) 0%, var(--color-base-2-light) 100%);

    /* Typography */
    --font-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-smooth: 0.4s cubic-bezier(.25, .46, .45, .94);
    --transition-fast: 0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-base-2-light);
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    color: var(--color-base-2);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
    color: var(--color-base-2-light);
}

p {
    margin-bottom: 1rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-base);
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-base-2-light);
    max-width: 640px;
    line-height: 1.7;
}

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

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle-large {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.text-center .section-subtitle-large {
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: var(--font-base);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary {
    background: var(--brm-gradient-1);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: var(--color-white);
}

.btn-primary:hover {
    background-position: 100% 0%;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 146, 30, 0.35);
}

.btn-secondary {
    background: var(--brm-gradient-2);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: var(--color-white);
}

.btn-secondary:hover {
    background-position: 100% 0%;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 195, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--color-base);
    padding: 14px 0;
}

.btn-ghost:hover {
    color: var(--color-base-dark);
}

.btn-ghost .btn-arrow {
    transition: transform var(--transition-fast);
}

.btn-ghost:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 39, 67, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background var(--transition-smooth);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo img {
    height: 32px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.header-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition-fast);
}

.header-nav a:hover {
    color: var(--color-white);
}

.header-cta .btn {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* --- Hero Section --- */
.section-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-base-2);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-text h1 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.hero-text .hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9375rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px 18px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.trust-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f7921e;
}

.trust-icon svg {
    width: 22px;
    height: 22px;
    stroke: #f7921e;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 580px;
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* --- Zielgruppen Section --- */
.section-targets {
    padding: var(--section-padding);
    background: var(--color-white);
}

.section-header {
    margin-bottom: 60px;
}

.targets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.target-card {
    position: relative;
    background: var(--color-base-2);
    border-radius: 12px;
    padding: 40px 32px;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.target-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 39, 67, 0.25);
}

.target-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brm-gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.target-card:hover::after {
    transform: scaleX(1);
}

.target-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.target-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.target-card h3 {
    color: var(--color-white);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.target-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.target-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent-1);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap var(--transition-fast);
}

.target-card-link:hover {
    gap: 14px;
}

.target-card-link svg {
    width: 16px;
    height: 16px;
}

/* --- Machines Section --- */
.section-machines {
    padding: var(--section-padding);
    background: var(--color-gray-100);
}

.machines-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 48px;
    background: var(--color-white);
    border-radius: 10px;
    padding: 6px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.machines-tab {
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    background: transparent;
    font-family: var(--font-base);
    color: var(--color-base-2-light);
}

.machines-tab:hover {
    color: var(--color-base-2);
}

.machines-tab.active {
    background: var(--color-base-2);
    color: var(--color-white);
}

.machines-panel {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.machines-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.machine-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.machine-image img {
    max-width: 500px;
    width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.12));
}

.machine-info .machine-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.badge-pro {
    background: var(--color-accent-1-lighter);
    color: #c06a00;
}

.badge-slim {
    background: var(--color-base-lighter);
    color: var(--color-base-dark);
}

.badge-ultra {
    background: #e0f2f1;
    color: #00695c;
}

.machine-info h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.machine-info > p {
    color: var(--color-base-2-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

.machine-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.machine-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--color-base-2);
}

.machine-feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-accent-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.machine-feature-icon svg {
    width: 12px;
    height: 12px;
    color: var(--color-white);
}

.machine-models {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.machine-models span {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    background: var(--color-white);
    color: var(--color-base-2);
    border: 1px solid var(--color-gray-200);
}

.machines-cta {
    margin-top: 48px;
}

/* --- Features Section --- */
.section-features {
    padding: var(--section-padding);
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 36px 28px;
    border-radius: 12px;
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-smooth);
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0, 39, 67, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-base-2-light);
    margin-bottom: 0;
}

/* --- Materials Section --- */
.section-materials {
    padding: var(--section-padding);
    background: var(--color-base-2);
    position: relative;
    overflow: hidden;
}

.section-materials .section-label {
    color: var(--color-accent-1);
}

.section-materials .section-title {
    color: var(--color-white);
}

.section-materials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.material-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-smooth);
    cursor: default;
}

.material-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.material-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.material-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.85;
}

.material-card span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* --- Applications Section --- */
.section-applications {
    padding: var(--section-padding);
    background: var(--color-white);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.application-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.application-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.application-card:hover img {
    transform: scale(1.05);
}

.application-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 39, 67, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: background var(--transition-smooth);
}

.application-card:hover .application-overlay {
    background: linear-gradient(to top, rgba(0, 39, 67, 0.95) 0%, rgba(0, 39, 67, 0.3) 100%);
}

.application-overlay h3 {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.application-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* --- Producers Section --- */
.section-producers {
    padding: 100px 0;
    background: #f8f9fb;
    position: relative;
    overflow: hidden;
}

.section-producers::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 122, 195, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.producers-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.producers-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}

.producers-visual {
    position: relative;
}

.producers-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 39, 67, 0.12);
}

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

.producers-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.producers-stat {
    text-align: center;
    padding: 20px 12px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--color-gray-200);
    box-shadow: 0 2px 8px rgba(0, 39, 67, 0.06);
}

.producers-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 4px;
}

.producers-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    line-height: 1.3;
}

.producers-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.producers-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.producers-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 122, 195, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.producers-feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.producers-feature strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 4px;
}

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

.producers-cta {
    margin-top: 8px;
}

.producers-trust {
    margin-top: 60px;
    text-align: center;
}

.producers-trust-header {
    margin-bottom: 24px;
}

.producers-trust-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.producers-trust-stars svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 1px 4px rgba(247, 146, 30, 0.4));
}

.producers-trust-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.producers-trust-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.producers-trust-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 28px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--color-gray-200);
    box-shadow: 0 2px 8px rgba(0, 39, 67, 0.06);
    transition: all 0.3s ease;
}

.producers-trust-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 39, 67, 0.1);
}

.producers-trust-card strong {
    font-size: 0.95rem;
    color: var(--color-primary-dark);
}

.producers-trust-type {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

@media (max-width: 992px) {
    .producers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .producers-visual {
        order: -1;
    }
}

@media (max-width: 480px) {
    .producers-stats {
        grid-template-columns: 1fr;
    }
}

/* --- Education Section --- */
.section-education {
    padding: 100px 0;
    background: linear-gradient(135deg, #002743 0%, #1a3d56 100%);
    position: relative;
    overflow: hidden;
}

.section-education::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247, 146, 30, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.section-label--light {
    color: #f7921e;
}

.education-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.education-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}

.education-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.education-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.education-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(247, 146, 30, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.education-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: #f7921e;
}

.education-feature strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 4px;
}

.education-feature p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.education-visual {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.education-image {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.education-trust {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.education-trust-header {
    text-align: center;
    margin-bottom: 24px;
}

.education-trust-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.education-trust-stars svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 1px 4px rgba(247, 146, 30, 0.4));
}

.education-trust-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.education-trust-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.education-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.education-trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 18px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.education-trust-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.education-trust-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.education-trust-card strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.education-trust-type {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

/* --- Testimonials Section --- */
.section-testimonials {
    padding: var(--section-padding);
    background: var(--color-gray-100);
}

/* Slider */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s cubic-bezier(.25, .46, .45, .94);
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow var(--transition-smooth);
    flex: 0 0 calc(33.333% - 19px);
    min-width: 0;
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 24px;
}

.testimonial-quote::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: -4px;
    font-size: 3.5rem;
    color: var(--color-accent-1);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.4;
}

.testimonial-quote p {
    font-size: 0.9375rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-base-2);
    padding-top: 16px;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--color-gray-200);
    padding-top: 20px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brm-gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.testimonial-author-info strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-base-2);
}

.testimonial-author-info span {
    font-size: 0.8125rem;
    color: var(--color-base-2-light);
}

/* Partner Logos */
.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--color-gray-200);
}

.partner-logos img {
    height: 28px;
    width: auto;
    opacity: 0.4;
    filter: grayscale(1);
    transition: all var(--transition-fast);
}

.partner-logos img:hover {
    opacity: 0.8;
    filter: grayscale(0);
}

/* Testimonial Slider Navigation */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
}

.testimonial-prev,
.testimonial-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-gray-200);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-base-2-light);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    border-color: var(--color-accent-1);
    color: var(--color-accent-1);
}

.testimonial-prev svg,
.testimonial-next svg {
    width: 20px;
    height: 20px;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    border: none;
    background: var(--color-gray-300);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.testimonial-dots button.active {
    width: 32px;
    background: var(--color-accent-1);
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 14px);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 40px);
    }

    .testimonials-slider {
        mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    }
}

/* --- FAQ Section --- */
.section-faq {
    padding: var(--section-padding);
    background: var(--color-white);
}

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

.faq-item {
    border-bottom: 1px solid var(--color-gray-200);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-base);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-base-2);
    text-align: left;
    gap: 16px;
}

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

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
    color: var(--color-base-2);
}

.faq-item.open .faq-icon {
    background: var(--color-base-2);
}

.faq-item.open .faq-icon svg {
    transform: rotate(180deg);
    color: var(--color-white);
}

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

.faq-answer-inner {
    padding-bottom: 24px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-base-2-light);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* --- FAQ Dark Variant (unter Kontakt) --- */
.section-faq--dark {
    background: #001a2e;
    padding-top: 80px;
}

.section-faq--dark .faq-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section-faq--dark .faq-question {
    color: #ffffff;
}

.section-faq--dark .faq-question:hover {
    color: rgba(255, 255, 255, 0.75);
}

.section-faq--dark .faq-icon {
    background: rgba(255, 255, 255, 0.1);
}

.section-faq--dark .faq-icon svg {
    color: rgba(255, 255, 255, 0.7);
}

.section-faq--dark .faq-item.open .faq-icon {
    background: #f7921e;
}

.section-faq--dark .faq-item.open .faq-icon svg {
    color: #ffffff;
}

.section-faq--dark .faq-answer-inner {
    color: rgba(255, 255, 255, 0.6);
}

.section-faq--dark .faq-answer-inner strong {
    color: rgba(255, 255, 255, 0.85);
}

/* --- Contact Section --- */
.section-contact {
    padding: var(--section-padding);
    background: var(--color-base-2);
    position: relative;
    overflow: hidden;
}

.section-contact .section-label {
    color: var(--color-accent-1);
}

.section-contact .section-title {
    color: var(--color-white);
}

.section-contact .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    font-family: var(--font-base);
    font-size: 0.9375rem;
    transition: border-color var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent-1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select option {
    background: var(--color-base-2);
    color: var(--color-white);
}

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

.contact-info {
    padding-top: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-1);
}

.contact-info-item h4 {
    color: var(--color-white);
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-info-item a {
    color: var(--color-accent-1);
}

.contact-info-item a:hover {
    color: var(--color-accent-1-light);
}

.contact-map {
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map img {
    width: 100%;
    height: auto;
}

/* --- Footer --- */
.site-footer {
    background: #001a2e;
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 280px;
}

.footer-brand img {
    height: 28px;
    width: auto;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 10px;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-white);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    transition: background var(--transition-fast);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer-social a img {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1200px) {
    .hero-image img {
        max-width: 460px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px 0;
    }

    .header-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-base-2);
        padding: 40px 24px;
        gap: 0;
        z-index: 999;
    }

    .header-nav.open a {
        font-size: 1.25rem;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-nav.open .header-cta {
        margin-top: 24px;
    }

    .header-nav.open .header-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 0;
    }

    .hero-text .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 400px;
    }

    .targets-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .machines-panel.active {
        grid-template-columns: 1fr;
    }

    .machine-image {
        order: -1;
    }

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

    .materials-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .education-content {
        grid-template-columns: 1fr;
    }

    .education-visual {
        order: -1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 60px;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .materials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .applications-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .machine-features {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        padding: 28px;
    }

    .partner-logos {
        gap: 28px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .machines-tabs {
        flex-wrap: wrap;
        width: 100%;
    }

    .machines-tab {
        flex: 1;
        text-align: center;
        padding: 10px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .machine-models {
        flex-wrap: wrap;
    }

    .partner-logos img {
        height: 22px;
    }
}
