/* === Rumler GmbH – Main CSS === */

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── Layout-Hilfsmittel ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
}

/* ── TOOLBAR ── */
.toolbar {
    background: var(--color-blue);
    color: var(--color-white);
}
.toolbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    padding: 0 var(--px);
}
.toolbar__left, .toolbar__right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.toolbar a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.toolbar a:hover { color: var(--color-orange); }
.toolbar svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Sprachschalter */
.lang-switcher {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 4px;
}
.lang-switcher .sep { opacity: 0.5; }
.lang-switcher a { color: var(--color-white); transition: var(--transition); }
.lang-switcher a:hover { color: var(--color-orange); }
.lang-switcher .active { color: var(--color-orange); }

/* ── HAUPTHEADER ── */
.site-header {
    background: var(--color-bg);
    position: relative;
}
.header__main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 140px;
    padding: 0 var(--px);
}

/* Navigation – absolut zentriert */
.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0;
}
.main-nav a,
.main-nav .nav-dropdown-btn {
    font-family: var(--font-nav);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--color-dark);
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.main-nav a:hover,
.main-nav .nav-dropdown-btn:hover,
.main-nav a.active,
.main-nav .nav-dropdown-btn.active { color: var(--color-orange); }

.nav-chevron {
    width: 14px; height: 14px;
    transition: transform 0.2s ease;
}
.nav-dropdown-btn.open .nav-chevron { transform: rotate(180deg); }

/* Logo */
.header-logo img {
    height: 120px;
    width: auto;
    display: block;
}

/* ── MEGA-DROPDOWN ── */
.mega-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    z-index: 200;
    padding: 2.5rem 0;
    display: none;
    animation: dropFadeIn 0.18s ease forwards;
}
.mega-dropdown.open { display: block; }

@keyframes dropFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mega-dropdown__inner {
    display: flex;
    justify-content: center;
}
.mega-dropdown__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 6rem;
}
.mega-dropdown a {
    font-family: var(--font-nav);
    font-size: 19px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-dark);
    display: block;
    padding: 10px 0;
    transition: var(--transition);
}
.mega-dropdown a:hover,
.mega-dropdown a.active { color: var(--color-orange); }

/* ── STICKY HEADER ── */
.sticky-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    z-index: 300;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}
.sticky-header.visible { transform: translateY(0); }
.sticky-header .header__main { height: 80px; }
.sticky-header .header-logo img { height: 70px; }

/* ── MOBILE BURGER ── */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 10;
}
.burger-btn span {
    display: block;
    width: 24px; height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}
.mobile-nav {
    display: none;
    background: var(--color-white);
    border-top: 1px solid var(--color-gray-200);
    padding: 1rem var(--px);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-family: var(--font-nav);
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--color-gray-100);
    transition: var(--transition);
}
.mobile-nav a:hover { color: var(--color-orange); }
.mobile-nav .sub-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-gray-400);
    text-transform: uppercase;
    padding: 12px 0 4px;
}
.mobile-nav .sub-link {
    padding: 8px 0 8px 16px;
    font-size: 15px;
    border-bottom: 1px solid var(--color-gray-100);
}

/* ── HERO ── */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
    height: 710px;
}
.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.6;
}
.hero__inner {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0;
}
.hero__text {
    flex: 1;
    position: relative;
    z-index: 1;
    padding-right: 2rem;
}
.hero__subtitle {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-orange);
    margin-bottom: 1.25rem;
}
.hero__title {
    font-family: var(--font-body);
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-dark);
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid rgba(16,44,114,0.3);
    color: var(--color-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
    transition: border-color 0.2s ease;
}
.hero__cta:hover { border-color: var(--color-orange); }
.hero__cta svg { width: 16px; height: 16px; }

.hero__media {
    flex: 1;
    position: relative;
    height: 100%;
}
.hero__man {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 580px;
    width: auto;
    max-width: none;
}
.hero__video {
    position: absolute;
    pointer-events: none;
    left: calc(55% - 150px);
    top: calc(28% - 1px);
    width: 38%;
    mix-blend-mode: screen;
    opacity: 0.9;
}

/* ── MINI-KATEGORIE-BOXEN ── */
.mini-cats {
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
    background: var(--color-white);
}
.mini-cats__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    divide-x: 1px solid var(--color-gray-200);
}
.mini-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem var(--px);
    border-right: 1px solid var(--color-gray-200);
    transition: background 0.2s ease;
}
.mini-cat-item:last-child { border-right: none; }
.mini-cat-item:hover { background: var(--color-bg); }
.mini-cat-item__text { flex: 1; }
.mini-cat-item__label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-gray-600);
    margin-bottom: 2px;
}
.mini-cat-item__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-orange);
}
.mini-cat-item__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-600);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    transition: color 0.2s;
}
.mini-cat-item:hover .mini-cat-item__link { color: var(--color-orange); }
.mini-cat-item__img {
    width: 80px; height: 60px;
    object-fit: cover;
    flex-shrink: 0;
    margin-left: 1rem;
}
.mini-cat-item__imgs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 1.5rem;
}
.mini-cat-item__imgs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
}

/* ── PRODUKT-KACHELN ── */
.products { padding: 4rem 0; background: var(--color-white); }
.products__header {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px) 2rem;
}
.products__headline {
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
}
.products__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.product-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-gray-100);
}
.product-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover img { transform: scale(1.05); }
.product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16,44,114,0.75) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}
.product-card__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}
.product-card__link {
    font-size: 13px;
    color: var(--color-orange);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── 50 JAHRE SEKTION ── */
.years-section {
    padding: 5rem 0;
    background: var(--color-white);
}
.years-section__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--px);
}
.years-section__tagline {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}
.years-section__tagline span {
    color: var(--color-dark);
    text-decoration: underline;
    text-decoration-color: var(--color-orange);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}
.years-section__headline {
    font-family: var(--font-body);
    font-size: 38px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.75rem;
    line-height: 1.15;
}
.years-section__text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}
.years-section__list {
    list-style: none;
    margin: 0.25rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.years-section__list li {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}
.years-section__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-orange);
    font-weight: 700;
}
.years-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--color-blue);
    font-size: 15px;
    transition: color 0.2s;
}
.years-section__cta:hover { color: var(--color-orange); }

/* ── CTA-KARTEN ── */
.cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.cta-card {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem 2rem;
}
.cta-card__bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.cta-card:hover .cta-card__bg { transform: scale(1.04); }
.cta-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.cta-card__content {
    position: relative;
    z-index: 1;
}
.cta-card__label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-orange);
    margin-bottom: 0.5rem;
}
.cta-card__title {
    font-family: var(--font-body);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.cta-card__desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.25rem;
}
.cta-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: border-color 0.2s, background 0.2s;
}
.cta-card__link:hover {
    border-color: var(--color-orange);
    background: rgba(255,106,0,0.15);
}

/* ── KONTAKTFORMULAR ── */
.contact-section {
    padding: 5rem 0;
    background: var(--color-white);
}
.contact-section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
}
.section-headline {
    font-family: var(--font-body);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}
.section-sub {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-gray-600);
    margin-bottom: 2.5rem;
}
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact-form .full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea,
.form-group select {
    border: 1px solid var(--color-gray-200);
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-dark);
    background: var(--color-white);
    transition: border-color 0.2s;
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--color-blue); }
.form-group textarea { resize: vertical; min-height: 140px; }
.hp-field { display: none !important; }
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-submit:hover { background: #e55f00; }
.form-message {
    padding: 12px 16px;
    margin-top: 1rem;
    font-size: 14px;
    display: none;
    grid-column: 1 / -1;
}
.form-message.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-message.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── INFO-STREIFEN ── */
.info-strip {
    background: var(--color-bg);
    border-top: 1px solid var(--color-gray-200);
    padding: 2rem 0;
}
.info-strip__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.info-item__icon {
    width: 44px; height: 44px;
    background: var(--color-blue);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.info-item__icon svg { width: 22px; height: 22px; color: var(--color-white); }
.info-item__label {
    font-size: 12px;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.info-item__value {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
}

/* ── FOOTER ── */
.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 1.5rem;
}
.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}
.footer__logo img { height: 60px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer__desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}
.footer__col-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 1rem;
}
.footer__col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    padding: 4px 0;
    transition: color 0.2s;
}
.footer__col a:hover { color: var(--color-orange); }
.footer__bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem var(--px) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.footer__bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--color-orange); }

/* ── PAGE-HERO ── */
.page-hero {
    position: relative;
    height: 360px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16,44,114,0.75) 0%, rgba(16,44,114,0.35) 50%, rgba(0,0,0,0.2) 100%);
}
.page-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px) 3rem;
}
.page-hero__subtitle {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-orange);
    margin-bottom: 0.75rem;
}
.page-hero__title {
    font-family: var(--font-body);
    font-size: 52px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1.05;
}

/* ── PHONE-CTA ── */
.phone-cta {
    background: var(--color-blue);
    overflow: hidden;
}
.phone-cta__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    align-items: stretch;
    min-height: 320px;
}
.phone-cta__img-wrap {
    overflow: hidden;
    position: relative;
}
.phone-cta__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.phone-cta__content {
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.phone-cta__label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-orange);
    margin-bottom: 0.75rem;
}
.phone-cta__title {
    font-family: var(--font-body);
    font-size: 34px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.phone-cta__text {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}
.phone-cta__number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    transition: color 0.2s;
}
.phone-cta__number:hover { color: var(--color-orange); }
.phone-cta__number::before {
    content: '';
    display: inline-block;
    width: 36px; height: 36px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6A00' stroke-width='2.5'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 10.8a19.79 19.79 0 01-3.07-8.68A2 2 0 012 0h3a2 2 0 012 1.72c.127.96.36 1.903.7 2.81a2 2 0 01-.45 2.11L6.09 7.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.34 1.85.573 2.81.7A2 2 0 0122 14.92z'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
}
.phone-cta__form-link {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.phone-cta__form-link:hover { color: var(--color-orange); }

/* ── PRODUKT-DETAIL (mineralische Strahlmittel) ── */
.product-detail-section {
    padding: 5rem 0;
    background: var(--color-white);
}
.product-detail-section:nth-child(even) {
    background: var(--color-bg);
}
.product-detail__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
}
.product-detail__header {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}
.product-detail__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.product-detail__meta {}
.product-detail__label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-orange);
    margin-bottom: 0.5rem;
}
.product-detail__name {
    font-family: var(--font-body);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.product-detail__desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}
.product-detail__tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.product-detail__tables.three-cols {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Tabellen */
.data-table-wrap {}
.data-table-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-dark);
    margin-bottom: 0.6rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-blue);
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.data-table td {
    padding: 7px 10px;
    border-bottom: 1px solid var(--color-gray-100);
    line-height: 1.4;
    vertical-align: top;
}
.data-table td:first-child {
    font-weight: 600;
    color: var(--color-dark);
    white-space: nowrap;
    width: 45%;
}
.data-table td:last-child {
    color: var(--color-gray-600);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--color-bg); }

/* Korngrößen als Tags */
.korngroessen-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0.25rem;
}
.korngroesse-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--color-bg);
    border: 1px solid var(--color-gray-200);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark);
    font-family: var(--font-nav);
}

/* Downloads */
.download-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0.5rem;
}
.download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-gray-200);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-blue);
    transition: background 0.2s, border-color 0.2s;
}
.download-link:hover {
    background: #e8edf6;
    border-color: var(--color-blue);
}
.download-link svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
}

/* Produktseite – einfache Seiten (Template B) */
.product-simple-section {
    padding: 5rem 0;
    background: var(--color-white);
}
.product-simple__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 4rem;
    align-items: flex-start;
}
.product-simple__text h2 {
    font-family: var(--font-body);
    font-size: 34px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
}
.product-simple__text p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}
.product-simple__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* ── TEAM-GRID (Unternehmen) ── */
.team-section {
    padding: 5rem 0;
    background: var(--color-bg);
}
.team-section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
.team-card {
    background: var(--color-white);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.team-card__img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
    display: block;
    background: var(--color-gray-100);
}
.team-card__img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-blue) 0%, #1a3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card__img-placeholder span {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
}
.team-card__body {
    padding: 1.5rem;
}
.team-card__name {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}
.team-card__role {
    font-size: 14px;
    color: var(--color-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── STATS-BAR (Unternehmen) ── */
.stats-section {
    padding: 4rem 0;
    background: var(--color-dark);
}
.stats-section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item__number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: var(--color-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-item__label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
}

/* Unternehmenstext */
.about-section {
    padding: 5rem 0;
    background: var(--color-white);
}
.about-section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 5rem;
    align-items: center;
}
.about-section__text h2 {
    font-family: var(--font-body);
    font-size: 38px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}
.about-section__text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}
.about-section__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ── KONTAKT-SEITE (Template D) ── */
.contact-page-section {
    padding: 5rem 0;
    background: var(--color-white);
}
.contact-page__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    align-items: flex-start;
}
.contact-address__title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}
.contact-address__item {
    display: flex;
    gap: 12px;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}
.contact-address__icon {
    width: 40px; height: 40px;
    background: var(--color-blue);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-address__icon svg { width: 18px; height: 18px; color: white; }
.contact-address__text {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.6;
}
.contact-address__text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-dark);
    margin-bottom: 2px;
}
.contact-address__text a {
    color: var(--color-blue);
    transition: color 0.2s;
}
.contact-address__text a:hover { color: var(--color-orange); }
.contact-map {
    margin-top: 2rem;
    width: 100%;
    height: 240px;
    background: var(--color-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .products__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .main-nav { display: none; }
    .burger-btn { display: flex; }
    .hero__title { font-size: 42px; }
    .hero__subtitle { font-size: 22px; }
    .mega-dropdown__cols { gap: 3rem; }
    .product-detail__header { grid-template-columns: 1fr; }
    .product-detail__img { max-width: 480px; }
    .product-detail__tables { grid-template-columns: 1fr; }
    .product-detail__tables.three-cols { grid-template-columns: 1fr; }
    .product-simple__inner { grid-template-columns: 1fr; }
    .about-section__inner { grid-template-columns: 1fr; gap: 3rem; }
    .contact-page__inner { grid-template-columns: 1fr; }
    .stats-section__inner { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .phone-cta__inner { grid-template-columns: 1fr; }
    .phone-cta__img-wrap { height: 280px; }
}

@media (max-width: 768px) {
    .hero { height: auto; min-height: 500px; }
    .hero__inner { flex-direction: column; padding-top: 2rem; padding-bottom: 2rem; align-items: flex-start; }
    .hero__media { width: 100%; height: 300px; }
    .hero__man { height: 280px; }
    .mini-cats__grid { grid-template-columns: 1fr; }
    .mini-cat-item { border-right: none; border-bottom: 1px solid var(--color-gray-200); }
    .mini-cat-item__imgs img:nth-child(3) { display: none; }
    .cta-cards { grid-template-columns: 1fr; }
    .contact-form { grid-template-columns: 1fr; }
    .contact-form .full { grid-column: 1; }
    .products__grid { grid-template-columns: 1fr 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .info-strip__inner { flex-direction: column; align-items: flex-start; }
    .toolbar__left { display: none; }
    .page-hero { height: 260px; }
    .page-hero__title { font-size: 32px; }
    .team-grid { grid-template-columns: 1fr; }
    .stats-section__inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .stat-item__number { font-size: 40px; }
    .phone-cta__content { padding: 2rem; }
    .phone-cta__title { font-size: 24px; }
    .phone-cta__number { font-size: 22px; }
}
