/* ======================= Font Definitionen ======================= */
/* Play */
@font-face {
    font-family: 'Play';
    src: url('../fonts/Play-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Roboto Flex */
@font-face {
    font-family: 'Roboto Flex';
    src: url('../fonts/RobotoFlex-VariableFont_GRAD,XOPQ,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ======================= Farb- und Stilvariablen ======================= */
:root {
    /* Farben */
    --hauptfarbe-1: #111111;
    --hauptfarbe-2: #222222;
    --hauptfarbe-3: #575756;
    --hauptfarbe-4: #6a6965;
    --hauptfarbe-5: #bdb8b4;
    --akzentfarbe: rgb(212, 16, 49);
    --sekund-farbe-1: #d4a47c;
    --sekund-farbe-2: #e7cdaa;
    --hintergrundfarbe-1: #f2f2f2;
    --hintergrundfarbe-5: #e4e8e8;
    --weiss: #fff;

    /* --- SCHRIFTEN --- */
    --font-headline: 'Play', sans-serif;
    --font-subline: 'Play', sans-serif;
    --font-body: 'Roboto Flex', sans-serif;
    --font-megamenu: 'Play', sans-serif;

    /* Font Sizes - Header & Navigation */
    --font-nav-link: 16px;
    --font-tab-button: 14px;

    /* Font Sizes - Mega Menu */
    --font-megamenu-title: 17.6px;
    --font-megamenu-subtitle: 13.6px;
    --font-megamenu-text: 13.6px;

    /* Font Sizes - Sections */
    --font-section-headline: 34.4px;
    --font-section-subline: 25.6px;
    --font-section-text: 16px;

    /* Font Sizes - Footer */
    --font-footer-heading: 14px;
    --font-footer-text: 14px;

    /* Spacings */
    --spacing-xs: 6px;
    --spacing-sm: 12px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 45px;
    --spacing-xxl: 100px;

    /* Gaps */
    --gap-nav: 30px;
    --gap-megamenu: 25px;
    --gap-content: 20px;
}

/* ======================= Allgemeine Stile & Reset ======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body), sans-serif;
    color: var(--hauptfarbe-2);
    background-color: var(--weiss);
    line-height: 1.2;
    font-weight: 300;
}

.container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3 {
    color: var(--hauptfarbe-1);
    font-family: var(--font-headline), sans-serif;
    font-weight: 500;
}

h4, h5 {
    color: var(--hauptfarbe-1);
    font-family: var(--font-subline), sans-serif;
    font-weight: 500;
}

section {
    padding: var(--spacing-xxl) 0;
}

section h2 {
    font-size: var(--font-section-headline);
    font-weight: 500;
    color: var(--hauptfarbe-1);
}

section p.subline {
    color: var(--hauptfarbe-4);
    font-size: var(--font-section-subline);
    font-family: var(--font-subline), sans-serif;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

section p {
    color: var(--hauptfarbe-3);
    line-height: 1.7;
    font-size: var(--font-section-text);
    font-family: var(--font-body), sans-serif;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 9px 63px;
    background-color: transparent;
    color: var(--akzentfarbe);
    font-weight: normal;
    font-size: var(--font-section-text);
    font-family: var(--font-body), sans-serif;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--akzentfarbe);
    text-align: center;
}

.btn:hover {
    background-color: transparent;
    color: var(--hauptfarbe-1);
    border-color: var(--hauptfarbe-1);
}

.btn.btn-accent {
    background-color: transparent;
    border-color: var(--akzentfarbe);
    color: var(--akzentfarbe);
}

.btn.btn-accent:hover {
    background-color: transparent;
    color: var(--hauptfarbe-1);
    border-color: var(--hauptfarbe-1);
}

/* ======================= Hero Section ======================= */
.hero {
    height: 80vh;
    min-height: 500px;
    background: center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--weiss);
    padding: 0 !important;
    width: 100%;
}

.hero-content {
    text-align: left;
    max-width: 1450px;
    width: 100%;
    padding: 0 var(--spacing-lg);
    margin-top: 35px;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: var(--spacing-md);
    color: var(--weiss);
    font-weight: 500;
    letter-spacing: 1px;
    font-family: var(--font-headline), sans-serif;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 750px;
    color: var(--hintergrundfarbe-5);
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.6;
    font-family: var(--font-body), sans-serif;
    font-weight: 300;
}

.hero-content .hero-cta {
    margin-top: 10px;
    display: inline-block;
}

.hero-content .hero-cta.btn-primary {
    background-color: var(--akzentfarbe);
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 0;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--akzentfarbe);
}

/* Hover-Effekt */
.hero-content .hero-cta.btn-primary:hover {
    background-color: rgb(156, 12, 34);
    color: #ffffff;
    border-color: rgb(156, 12, 34);
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .hero-content .hero-cta {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}


/* ======================= Carousel Section ======================= */
.carousel-section {
    background-color: var(--weiss);
    padding: var(--spacing-xxl) 0;
    overflow: visible;
    overflow-x: hidden;
}

.carousel-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: var(--spacing-lg);
    position: relative;
}

.carousel-header {
    margin-bottom: var(--spacing-xl);
}

.carousel-header h2,
.carousel-header p {
    text-align: left;
    margin-left: 0;
    max-width: 100%;
}

.carousel {
    position: relative;
    clip-path: inset(0 -100% 0 0);
}

.carousel-track {
    display: flex;
    gap: var(--spacing-lg);
    transition: none;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 450px;
    text-align: left;
}

.carousel-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: var(--spacing-sm);
    transition: transform 0.3s ease;
}

.carousel-slide:hover img {
    transform: scale(1.02);
}

.carousel-slide h4 {
    font-size: 20px;
    color: var(--hauptfarbe-1);
    font-family: var(--font-headline), sans-serif;
    font-weight: 500;
}

.carousel-slide .subline {
    font-size: 15px;
    color: var(--hauptfarbe-4);
    margin-bottom: 10px;
    font-family: var(--font-subline), sans-serif;
    font-weight: 500;
}

.carousel-slide .description {
    font-size: 13px;
    color: var(--hauptfarbe-3);
    line-height: 1.5;
    font-family: var(--font-body), sans-serif;
    font-weight: 300;
}

.carousel-dots {
    text-align: left;
    margin-top: var(--spacing-xl);
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--hauptfarbe-5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.dot:hover {
    background-color: var(--hauptfarbe-3);
}

.dot.active {
    background-color: var(--hauptfarbe-1);
    width: 40px;
    border-radius: 5px;
}

/* ======================= Two Column Section ======================= */
.two-column-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.section-innovation {
    background-color: var(--hintergrundfarbe-1);
}

.two-column-section.alt-layout {
    background-color: var(--weiss);
    align-items: flex-start;
    margin-bottom: 195px;
}

.two-column-section .column img {
    max-width: 100%;
    object-fit: contain;
}

.two-column-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.column-image img {
    width: 45% !important;
    height: auto;
    position: absolute;
    bottom: -132px;
    right: 173px;
}

.klaris {
    width: 240px !important;
    margin-bottom: 5px;
}

.made-in-germany {
    width: 30%;
    max-width: 150px;
    flex-shrink: 0;
}

.made-in-germany img {
    display: block;
    width: 100%;
    height: auto;
}

.two-column-section .column h2 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--hauptfarbe-1);
    font-family: var(--font-headline), sans-serif;
    width: 800px;
    font-weight: 500;
}

.two-column-section .column h3 {
    color: var(--hauptfarbe-4);
    font-weight: 500;
}

.two-column-section .column .subline {
    color: var(--hauptfarbe-4);
    font-size: var(--font-section-subline);
    font-family: var(--font-subline), sans-serif;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.two-column-section .column p {
    margin: 0 0 var(--spacing-md) 0;
    max-width: 100%;
    font-size: 21px;
    margin-top: 30px;
    margin-bottom: 35px;
    font-weight: 300;
}

.column-test p {
    width: 68% !important;
}

.additional-image {
    width: 150px;
    height: 80px;
    object-fit: cover;
}

.two-column-section.alt-layout {
    align-items: flex-start;
}

/* ======================= Anpassungen für Innovation-Sektion ======================= */

.section-innovation {
    padding: 0;
}

.section-innovation .container-fullwidth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    margin: 0 auto;
}

.innovation-text-column {
    --innovation-padding-left: max(var(--spacing-lg), calc((100vw - 1440px) / 2 + var(--spacing-lg)));
    background-color: #e4e8e8;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: var(--spacing-xxl);
    padding-right: 125px;
    padding-left: var(--innovation-padding-left);
}

.innovation-text-column p {
    font-size: 30px;
    font-weight: 300;
}

.innovation-text {
    width: 300px;
}

.innovation-header h2 {
    font-size: 40px !important;
    font-weight: 500;
}

.innovation-header h3 {
    font-size: 30px !important;
    font-weight: 500;
}

.separator-line {
    border: none;
    height: 4px;
    background-color: var(--akzentfarbe);
    margin-bottom: var(--spacing-md);
    margin-left: calc(var(--innovation-padding-left) * -1);
}

.innovation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--spacing-sm);
}

.innovation-header h2 {
    margin: 0;
}

.made-in-germany {
    text-align: right;
    font-size: 12px;
    color: var(--hauptfarbe-3);
}

.logo-germany {
    display: inline-block;
    width: 30px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 4px;
    background: linear-gradient(to bottom, #000 33.3%, #D41031 33.3%, #D41031 66.6%, #FFCE00 66.6%);
    margin-left: 5px;
    vertical-align: middle;
}

.innovation-image-column {
    background-image: url('https://placehold.co/800x600/e4e8e8/575756?text=Ihr+Produktbild');
    background-size: cover;
    background-position: center;
    min-height: 680px;
}

.btn.btn-outline {
    border: 1px solid var(--akzentfarbe);
    color: var(--akzentfarbe);
    background-color: transparent;
    width: fit-content;
}

.btn.btn-outline:hover {
    border-color: var(--hauptfarbe-1);
    color: var(--hauptfarbe-1);
}

/* ======================= Product Grid Section ======================= */
.product-grid-section {
    background: linear-gradient(to top, #f2f2f2 33.33%, #f8f8f8 33.33%);
    padding: 45px 0px 45px 0px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.product-item {
    text-align: center;
}

.product-item img {
    width: 80%;
    height: 330px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item img:hover {
    transform: scale(1.05);
}

.product-title {
    margin-top: var(--spacing-sm);
    font-size: 16px;
    font-weight: 500;
    color: var(--hauptfarbe-4);
    font-family: var(--font-subline), sans-serif;
}

/* ======================= Schnellzugriff & Service ======================= */
.quick-access-section {
    background-color: #f5f5f5;
    padding: 3rem 0;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 10rem;
}

.quick-links-headline {
    font-size: 1.8rem;
    color: black;
    margin-bottom: 1.5rem;
    line-height: normal;
    font-weight: 500;
}

.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 2px solid #ddd;
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--hauptfarbe-2);
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-weight: 300;
}

.quick-links-list li a:hover {
    color: var(--akzentfarbe);
}

.quick-links-list li a .arrow {
    width: 20px;
    height: 20px;
    transition: fill 0.3s ease;
}

.quick-links-list li a:hover .arrow {
    fill: var(--akzentfarbe);
}

.service-column {
    display: flex;
    gap: 2rem;
}

.service-image {
    flex-shrink: 0;
    width: 225px;
    height: 225px;
    object-fit: cover;
}

.service-content h4 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: normal;
    font-weight: 500;
}

.service-content p {
    font-size: 1.17rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.btn.btn-outline-red {
    border-color: var(--akzentfarbe);
    color: var(--akzentfarbe);
    padding: 0.5rem 1.5rem;
}
.btn.btn-outline-red:hover {
    background-color: var(--akzentfarbe);
    color: var(--weiss);
}

/* ======================= Newsletter Sektion ======================= */
.newsletter-section {
    background-color: #1a202c;
    background-size: cover;
    background-position: center;
    color: var(--weiss);
    padding: 5rem 0;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 10rem;
    align-items: center;
}

.newsletter-label {
    color: var(--akzentfarbe);
    font-weight: normal;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.newsletter-text-column h2 {
    color: var(--weiss);
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    width: 81%;
    font-weight: 500;
}

.newsletter-text-column p {
    color: #a0aec0;
    font-size: 0.9rem;
    max-width: 500px;
    font-weight: 300;
}

.newsletter-form-placeholder .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form-placeholder input[type="text"],
.newsletter-form-placeholder input[type="email"] {
    width: 100%;
    background-color: #2d3748;
    border: 1px solid #4a5568;
    color: var(--weiss);
    padding: 0.8rem 1rem;
    font-family: var(--font-body), sans-serif;
    font-weight: 300;
}

.newsletter-form-placeholder input::placeholder {
    color: #a0aec0;
}

.newsletter-form-placeholder .interest-row {
    align-items: center;
}
.newsletter-form-placeholder .interest-row label {
    color: #a0aec0;
    margin-right: 1rem;
    font-weight: 300;
}
.radio-buttons { display: flex; }
.radio-btn {
    background: #4a5568;
    color: #a0aec0;
    border: 1px solid #4a5568;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 300;
}
.radio-btn.active {
    background: var(--weiss);
    color: var(--hauptfarbe-1);
    font-weight: 500;
}

.checkbox-row { font-size: 0.8rem; color: #a0aec0; align-items: center; font-weight: 300; }
.checkbox-row input { margin-right: 0.5rem; }

.btn.btn-submit-newsletter {
    width: 100%;
    background-color: var(--akzentfarbe);
    border-color: var(--akzentfarbe);
    color: var(--weiss);
    padding: 0.8rem;
    font-weight: 500;
}
.btn.btn-submit-newsletter:hover {
    background-color: #b70f29;
    border-color: #b70f29;
}

.section-label {
    color: var(--akzentfarbe);
    font-size: 1.1rem;
    font-weight: normal;
    text-transform: uppercase;
    display: block;
    line-height: normal;
}

.cookie-settings a {
    bottom: -8px;
}


/* =================================================================== */
/* --- RESPONSIVE - KLEINER DESKTOP (max-width: 1200px) --- */
/* =================================================================== */
@media (max-width: 1200px) {
    .carousel-slide {
        flex: 0 0 380px;
    }

    .carousel-slide img {
        height: 320px;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .column-image img {
        position: relative;
        width: 100% !important;
        bottom: auto;
        right: auto;
        margin-top: var(--spacing-xl);
    }

    .two-column-section .column h2 {
        width: 100%;
        font-size: 30px;
    }

    .innovation-text-column {
        padding-right: 80px;
    }

    .innovation-header h2 {
        font-size: 36px !important;
    }

    .innovation-header h3 {
        font-size: 26px !important;
    }

    .innovation-text-column p {
        font-size: 26px;
    }

    .quick-access-grid,
    .newsletter-grid {
        gap: 6rem;
    }

    .service-image {
        width: 200px;
        height: 200px;
    }
}

/* =================================================================== */
/* --- RESPONSIVE - GROSSE TABLETS (max-width: 992px) --- */
/* =================================================================== */
@media (max-width: 992px) {
    .section-innovation .container-fullwidth,
    .two-column-section .container {
        grid-template-columns: 1fr;
    }

    .innovation-image-column {
        order: -1;
        min-height: 450px;
    }

    .innovation-text-column {
        --innovation-padding-left: var(--spacing-lg);
        padding-right: var(--spacing-lg);
        padding-top: 40px;
        padding-bottom: var(--spacing-xl);
    }

    .separator-line {
        margin-left: calc(var(--spacing-lg) * -1);
        padding-left: var(--spacing-lg);
    }

    .innovation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .innovation-header h2 {
        font-size: 32px !important;
    }

    .innovation-header h3 {
        font-size: 24px !important;
    }

    .innovation-text-column p {
        font-size: 22px;
    }

    .innovation-text {
        width: 100%;
    }

    .made-in-germany {
        max-width: 120px;
    }

    .two-column-section.alt-layout {
        margin-bottom: 0;
        padding-bottom: var(--spacing-xxl);
    }

    .column-image img {
        position: relative;
        width: 100% !important;
        bottom: auto;
        right: auto;
        margin-top: var(--spacing-xl);
    }

    .two-column-section .column h2,
    .two-column-section .column p,
    .column-test p {
        width: 100% !important;
        max-width: 100%;
    }

    .two-column-section .column h2 {
        font-size: 28px;
    }

    .two-column-section .column p {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 25px;
    }

    .klaris {
        width: 200px !important;
    }

    .carousel-slide {
        flex: 0 0 320px;
    }

    .carousel-slide img {
        height: 280px;
    }

    .carousel-slide h4 {
        font-size: 18px;
    }

    .carousel-slide .subline {
        font-size: 14px;
    }

    .carousel-slide .description {
        font-size: 12px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-item img {
        height: 245px;
    }

    .product-title {
        font-size: 14px;
    }

    .quick-access-grid,
    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-column {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .service-image {
        width: 250px;
        height: 250px;
    }

    .quick-links-headline {
        font-size: 1.6rem;
    }

    .quick-links-list li a {
        font-size: 1.1rem;
    }

    .service-content h4 {
        font-size: 1.6rem;
    }

    .service-content p {
        font-size: 1.1rem;
    }

    .newsletter-text-column h2 {
        width: 100%;
        font-size: 1.6rem;
    }

    .newsletter-form-placeholder .form-row {
        flex-direction: column;
    }
}

/* =================================================================== */
/* --- RESPONSIVE - NORMALE TABLETS (max-width: 768px) --- */
/* =================================================================== */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 450px;
    }

    .hero-content {
        padding: 0 var(--spacing-md);
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .carousel-section {
        padding: var(--spacing-xl) 0;
    }

    .carousel-wrapper {
        padding-left: var(--spacing-md);
    }

    .carousel-slide {
        flex: 0 0 calc(75vw - var(--spacing-md));
    }

    .carousel-slide img {
        height: 250px;
    }

    .carousel-slide h4 {
        font-size: 17px;
    }

    .innovation-image-column {
        min-height: 400px;
    }

    .innovation-text-column {
        padding-top: 30px;
        padding-bottom: var(--spacing-lg);
    }

    .innovation-header h2 {
        font-size: 28px !important;
    }

    .innovation-header h3 {
        font-size: 20px !important;
    }

    .innovation-text-column p {
        font-size: 18px;
    }

    .innovation-text-column p.innovation-text-main {
        font-size: 20px;
    }

    .separator-line {
        height: 3px;
    }

    .two-column-section .column h2 {
        font-size: 24px;
    }

    .two-column-section .column h3 {
        font-size: 18px;
    }

    .two-column-section .column p {
        font-size: 16px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .klaris {
        width: 180px !important;
    }

    .additional-image {
        width: 120px;
        height: 65px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .product-item img {
        width: 70%;
        height: 300px;
    }

    .product-title {
        font-size: 13px;
    }

    .product-grid-section {
        background: var(--weiss);
        padding: 35px 0;
    }

    .quick-access-section {
        padding: 2.5rem 0;
    }

    .quick-links-headline {
        font-size: 1.4rem;
    }

    .quick-links-list li a {
        font-size: 1rem;
        padding: 8px 0;
    }

    .quick-links-list li a .arrow {
        width: 18px;
        height: 18px;
    }

    .service-image {
        width: 220px;
        height: 220px;
    }

    .service-content h4 {
        font-size: 1.4rem;
    }

    .service-content p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .newsletter-section {
        padding: 4rem 0;
    }

    .newsletter-label {
        font-size: 0.9rem;
    }

    .newsletter-text-column h2 {
        font-size: 1.4rem;
    }

    .newsletter-text-column p {
        font-size: 0.85rem;
    }

    .newsletter-form-placeholder input[type="text"],
    .newsletter-form-placeholder input[type="email"] {
        padding: 0.7rem 0.9rem;
    }

    .radio-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .section-label {
        font-size: 1rem;
    }
}

/* =================================================================== */
/* --- RESPONSIVE - GROSSE SMARTPHONES (max-width: 576px) --- */
/* =================================================================== */
@media (max-width: 576px) {
    .hero {
        height: 60vh;
        min-height: 400px;
        padding: var(--spacing-sm);
    }

    .hero-content h1 {
        font-size: 1.7rem;
        margin-bottom: var(--spacing-sm);
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .carousel-section {
        padding: var(--spacing-lg) 0;
    }

    .carousel-header {
        margin-bottom: var(--spacing-lg);
    }

    .carousel-slide {
        flex: 0 0 calc(85vw - 15px);
    }

    .carousel-slide img {
        height: 220px;
        margin-bottom: var(--spacing-xs);
    }

    .carousel-slide h4 {
        font-size: 15px;
    }

    .carousel-slide .subline {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .carousel-slide .description {
        font-size: 11px;
    }

    .carousel-dots {
        margin-top: var(--spacing-lg);
    }

    .innovation-image-column {
        min-height: 350px;
    }

    .innovation-text-column {
        --innovation-padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
        padding-top: 25px;
        padding-bottom: var(--spacing-lg);
    }

    .separator-line {
        margin-left: calc(var(--spacing-md) * -1);
        height: 3px;
        margin-bottom: var(--spacing-sm);
    }

    .innovation-header {
        margin-bottom: var(--spacing-xs);
    }

    .innovation-header h2 {
        font-size: 24px !important;
    }

    .innovation-header h3 {
        font-size: 18px !important;
    }

    .innovation-text-column p {
        font-size: 16px;
    }

    .made-in-germany {
        max-width: 100px;
    }

    .two-column-section .container {
        gap: var(--spacing-lg);
    }

    .two-column-section .column h2 {
        font-size: 22px;
    }

    .two-column-section .column h3 {
        font-size: 16px;
    }

    .two-column-section .column p {
        font-size: 15px;
        margin-top: 12px;
        margin-bottom: 18px;
    }

    .klaris {
        width: 160px !important;
        margin-bottom: 3px;
    }

    .additional-image {
        width: 100px;
        height: 55px;
    }

    .product-grid-section {
        padding: 30px 0;
    }

    .product-grid {
        gap: var(--spacing-xs);
    }

    .product-item img {
        width: 80%;
        height: 240px;
    }

    .product-title {
        font-size: 12px;
        margin-top: var(--spacing-xs);
    }

    .quick-access-section {
        padding: 2rem 0;
    }

    .quick-links-headline {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .quick-links-list li a {
        font-size: 0.95rem;
        padding: 7px 0;
    }

    .service-image {
        width: 200px;
        height: 200px;
    }

    .service-content h4 {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }

    .service-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .btn.btn-outline-red {
        padding: 0.4rem 1.25rem;
        font-size: 0.9rem;
    }

    .newsletter-section {
        padding: 3rem 0;
    }

    .newsletter-grid {
        gap: 2rem;
    }

    .newsletter-label {
        font-size: 0.85rem;
    }

    .newsletter-text-column h2 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .newsletter-text-column p {
        font-size: 0.8rem;
    }

    .newsletter-form-placeholder .form-row {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .newsletter-form-placeholder input[type="text"],
    .newsletter-form-placeholder input[type="email"] {
        padding: 0.65rem 0.8rem;
        font-size: 0.9rem;
    }

    .newsletter-form-placeholder .interest-row label {
        font-size: 0.85rem;
    }

    .radio-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.85rem;
    }

    .checkbox-row {
        font-size: 0.75rem;
    }

    .btn.btn-submit-newsletter {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .section-label {
        font-size: 0.95rem;
    }

    section h2 {
        font-size: 24px;
    }

    section p.subline {
        font-size: 18px;
    }
}

/* =================================================================== */
/* --- RESPONSIVE - KLEINE SMARTPHONES (max-width: 480px) --- */
/* =================================================================== */
@media (max-width: 480px) {
    .hero {
        height: 55vh;
        min-height: 350px;
        padding: var(--spacing-xs);
    }

    .hero-content h1 {
        font-size: 1.4rem;
        margin-bottom: var(--spacing-xs);
    }

    .hero-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: var(--spacing-sm);
    }

    .carousel-section {
        padding: var(--spacing-md) 0;
    }

    .carousel-wrapper {
        padding-left: 15px;
    }

    .carousel-header {
        margin-bottom: var(--spacing-md);
    }

    .carousel-slide {
        flex: 0 0 calc(90vw - 10px);
    }

    .carousel-slide img {
        height: 180px;
    }

    .carousel-slide h4 {
        font-size: 14px;
    }

    .carousel-slide .subline {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .carousel-slide .description {
        font-size: 10px;
    }

    .carousel-dots {
        margin-top: var(--spacing-md);
    }

    .dot {
        width: 7px;
        height: 7px;
        margin: 0 3px;
    }

    .dot.active {
        width: 25px;
    }

    .innovation-image-column {
        min-height: 300px;
    }

    .innovation-text-column {
        --innovation-padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
        padding-top: 20px;
        padding-bottom: var(--spacing-md);
    }

    .separator-line {
        margin-left: calc(var(--spacing-sm) * -1);
        height: 2px;
    }

    .innovation-header h2 {
        font-size: 20px !important;
    }

    .innovation-header h3 {
        font-size: 15px !important;
    }

    .innovation-text-column p {
        font-size: 14px;
    }

    .made-in-germany {
        max-width: 80px;
    }

    .logo-germany {
        width: 25px;
        height: 16px;
    }

    .two-column-section .container {
        gap: var(--spacing-md);
    }

    .two-column-section.alt-layout {
        padding-bottom: var(--spacing-lg);
    }

    .two-column-section .column h2 {
        font-size: 20px;
        line-height: 1.25;
    }

    .two-column-section .column h3 {
        font-size: 15px;
    }

    .two-column-section .column p {
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .klaris {
        width: 140px !important;
    }

    .additional-image {
        width: 80px;
        height: 45px;
    }

    .product-grid-section {
        padding: 25px 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-top: var(--spacing-md);
    }

    .product-item img {
        width: 85%;
        height: 190px;
        min-height: 80px;
    }

    .product-title {
        font-size: 11px;
        margin-top: 6px;
    }

    .quick-access-section {
        padding: 1.5rem 0;
    }

    .quick-access-grid {
        gap: 2rem;
    }

    .quick-links-headline {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .quick-links-list li a {
        font-size: 0.9rem;
        padding: 6px 0;
        border-bottom-width: 1px;
    }

    .quick-links-list li a .arrow {
        width: 16px;
        height: 16px;
    }

    .service-column {
        gap: 1.5rem;
    }

    .service-image {
        width: 180px;
        height: 180px;
    }

    .service-content h4 {
        font-size: 1.2rem;
    }

    .service-content p {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }

    .btn.btn-outline-red {
        padding: 0.35rem 1rem;
        font-size: 0.85rem;
    }

    .newsletter-section {
        padding: 2.5rem 0;
    }

    .newsletter-grid {
        gap: 1.5rem;
    }

    .newsletter-label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .newsletter-text-column h2 {
        font-size: 1.15rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
    }

    .newsletter-text-column p {
        font-size: 0.75rem;
    }

    .newsletter-form-placeholder .form-row {
        gap: 0.6rem;
        margin-bottom: 0.6rem;
    }

    .newsletter-form-placeholder input[type="text"],
    .newsletter-form-placeholder input[type="email"] {
        padding: 0.6rem 0.7rem;
        font-size: 0.85rem;
    }

    .newsletter-form-placeholder input::placeholder {
        font-size: 0.85rem;
    }

    .newsletter-form-placeholder .interest-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .newsletter-form-placeholder .interest-row label {
        font-size: 0.8rem;
        margin-right: 0;
    }

    .radio-buttons {
        width: 100%;
    }

    .radio-btn {
        flex: 1;
        text-align: center;
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }

    .checkbox-row {
        font-size: 0.7rem;
    }

    .checkbox-row input {
        margin-right: 0.4rem;
    }

    .btn.btn-submit-newsletter {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .section-label {
        font-size: 0.9rem;
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    section h2 {
        font-size: 20px;
    }

    section p.subline {
        font-size: 16px;
        margin-bottom: var(--spacing-sm);
    }

    section p {
        font-size: 13px;
    }

    .btn {
        padding: 7px 30px;
        font-size: 13px;
    }

    .btn.btn-outline {
        padding: 7px 25px;
    }
}