/*
Theme Name:   International Resale
Theme URI:    https://resale-gmbh.com
Description:  Custom Theme für International Resale GmbH
Author:       International Resale GmbH
Version:      2.4.1
Text Domain:  intl-resale
*/

/* ================================================
   TOKENS
   ================================================ */
:root {
    --teal:       #007272;
    --teal-dk:    #005858;
    --teal-lt:    #e6f4f4;
    --red:        #c0392b;
    --red-dk:     #96281b;
    --dark:       #111111;
    --dark-2:     #222222;
    --mid:        #555555;
    --light:      #f7f9f9;
    --border:     #e0eaea;
    --white:      #ffffff;
    --radius:     10px;
    --radius-lg:  18px;
    --shadow:     0 2px 16px rgba(0,114,114,0.08);
    --shadow-lg:  0 8px 40px rgba(0,114,114,0.15);
    --max-w:      1240px;
    --ease:       cubic-bezier(.4,0,.2,1);
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Noto Sans', 'Noto Sans Arabic', 'Segoe UI', Arial, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--teal); text-decoration: none; transition: color .22s var(--ease); }
a:hover { color: var(--teal-dk); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.2; color: var(--dark); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.from-left  { transform: translateX(-50px); }
.reveal.from-right { transform: translateX(50px); }
.reveal.visible {
    opacity: 1;
    transform: translate(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ================================================
   HEADER
   ================================================ */
.site-header {
    background: var(--white);
    border-bottom: 3px solid var(--teal);
    box-shadow: 0 2px 20px rgba(0,114,114,0.1);
    position: sticky;
    top: 0;
    z-index: 200;
}

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

.site-logo img {
    height: 62px;
    width: auto;
    display: block;
    margin-top: -4px;
}
.site-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -0.02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-nav li { list-style: none; }
.site-nav a {
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.site-nav a:hover,
.site-nav .current-menu-item a {
    color: var(--teal);
    background: var(--teal-lt);
}

/* Anfrage-Button in Nav */
.nav-cta a {
    background: var(--teal) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius) !important;
    font-weight: 700 !important;
    transition: background .2s, transform .2s, box-shadow .2s !important;
}
.nav-cta a:hover {
    background: var(--teal-dk) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(0,114,114,0.3) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 8px 10px;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    transition: .2s;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: var(--white);
    padding: 15px 34px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: background .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
    text-decoration: none;
    white-space: nowrap;
}
.btn:hover {
    background: var(--teal-dk);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,114,114,0.3);
}
.btn-red {
    background: var(--red);
}
.btn-red:hover {
    background: var(--red-dk);
    box-shadow: 0 8px 24px rgba(192,57,43,0.3);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--teal);
}
a.btn,
a.btn:link,
a.btn:visited,
a.btn:hover,
.btn,
.btn:link,
.btn:visited {
    color: var(--white) !important;
    text-decoration: none;
}
/* btn-outline-teal: teal border, teal text, transparent background */
.btn.btn-outline-teal,
a.btn.btn-outline-teal,
a.btn.btn-outline-teal:link,
a.btn.btn-outline-teal:visited {
    background: transparent !important;
    border: 2px solid var(--teal) !important;
    color: var(--teal) !important;
}
.btn.btn-outline-teal:hover,
a.btn.btn-outline-teal:hover {
    background: var(--teal) !important;
    color: var(--white) !important;
}
a.btn-outline,
a.btn-outline:link,
a.btn-outline:visited { color: var(--white) !important; }

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark-2);
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,88,88,0.75) 0%, rgba(17,17,17,0.5) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 660px;
    padding: 64px 0;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}
.hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 20px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
    line-height: 1.15;
}
.hero h1 span { color: var(--teal); filter: brightness(1.8); }
.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ================================================
   ANFRAGE BANNER (floating CTA strip)
   ================================================ */
.anfrage-banner {
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dk) 100%);
    color: var(--white);
    padding: 20px 0;
}
.anfrage-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.anfrage-banner p {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}
.anfrage-banner p span { opacity: .75; font-weight: 400; font-size: .9rem; }

/* ================================================
   USP STRIP
   ================================================ */
.usp-strip {
    background: var(--dark);
    padding: 0;
}
.usp-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.usp-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 32px 28px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.usp-item:last-child { border-right: none; }
.usp-icon {
    width: 52px; height: 52px;
    background: rgba(0,114,114,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
    color: var(--teal);
    border: 1px solid rgba(0,114,114,0.3);
}
.usp-item h3 { font-size: 1rem; color: var(--white); margin-bottom: 3px; }
.usp-item p  { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ================================================
   SECTIONS
   ================================================ */
.section        { padding: 96px 0; }
.section-light  { background: var(--light); }
.section-teal   { background: var(--teal); color: var(--white); }
.section-dark   { background: var(--dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.section-header p  { color: var(--mid); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section-dark  .section-header h2,
.section-teal  .section-header h2 { color: var(--white); }
.section-dark  .section-header p,
.section-teal  .section-header p  { color: rgba(255,255,255,0.65); }

.section-tag {
    display: inline-block;
    background: var(--teal-lt);
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}
.section-dark .section-tag {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
}

/* ================================================
   CATEGORY GRID
   ================================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow .25s var(--ease), transform .25s var(--ease);
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.category-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

/* SLIDER */
.cat-slider {
    position: relative;
    overflow: hidden;
}
.cat-slider-track {
    display: flex;
    transition: transform .4s var(--ease);
}
.cat-slide { min-width: 100%; flex-shrink: 0; }
.cat-slide img {
    width: 100%; height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.category-card:hover .cat-slide img { transform: scale(1.04); }

.slider-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff; border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
    z-index: 2; padding: 0;
}
.slider-btn:hover { background: var(--teal); }
.slider-prev { left: 8px; }
.slider-next { right: 8px; }

.slider-dots {
    position: absolute; bottom: 8px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 5px; z-index: 2;
}
.slider-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none; cursor: pointer; padding: 0;
    transition: background .2s, transform .2s;
}
.slider-dot.active { background: #fff; transform: scale(1.3); }
.cat-slider[data-slides="1"] .slider-btn,
.cat-slider[data-slides="1"] .slider-dots { display: none; }

.category-card-body {
    padding: 18px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.category-card-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
}
.category-card-arrow {
    width: 32px; height: 32px;
    background: var(--teal-lt);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal);
    font-size: 0.9rem;
    transition: background .2s, transform .2s;
    flex-shrink: 0;
}
.category-card:hover .category-card-arrow {
    background: var(--teal);
    color: var(--white);
    transform: translateX(3px);
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-image img { width: 100%; height: 460px; object-fit: cover; }
.about-image-badge {
    position: absolute;
    bottom: 24px; right: 24px;
    background: var(--teal);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.about-image-badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-image-badge span  { font-size: 0.78rem; opacity: 0.85; }

.about-content .section-tag { margin-bottom: 12px; }
.about-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-content p  { color: var(--mid); margin-bottom: 16px; line-height: 1.85; }

.stats-row {
    display: flex; gap: 32px;
    margin-top: 36px; padding-top: 36px;
    border-top: 1px solid var(--border);
}
.stat-item h3 { font-size: 2.2rem; color: var(--teal); margin-bottom: 2px; }
.stat-item p  { font-size: 0.8rem; color: var(--mid); text-transform: uppercase; letter-spacing: .06em; }

/* ================================================
   ANFRAGE SECTION
   ================================================ */
.anfrage-section {
    background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.anfrage-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.anfrage-section::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -60px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.anfrage-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.anfrage-inner h2 { color: var(--white); font-size: 2.4rem; margin-bottom: 16px; }
.anfrage-inner p  { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 520px; margin: 0 auto 40px; }
.anfrage-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================
   KLEINANZEIGEN BUTTON
   ================================================ */
.btn-ka {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 18px;
    text-decoration: none;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    cursor: pointer;
}
.btn-ka:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
    border-color: #b5e02a;
}
.btn-ka-logo {
    height: 36px;
    width: auto;
    max-width: 120px;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
}
.btn-ka-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.btn-ka-sub  { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.02em; }
.btn-ka-main { font-size: 0.95rem; font-weight: 700; color: var(--dark); }

/* Dunkle Variante (auf dunklem Hintergrund) */
.btn-ka-dark {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}
.btn-ka-dark:hover {
    background: rgba(255,255,255,0.14);
    border-color: #b5e02a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-ka-dark .btn-ka-sub  { color: rgba(255,255,255,0.5); }
.btn-ka-dark .btn-ka-main { color: #fff; }

/* ================================================
   PARTNER LOGOS — auto-scrolling ticker
   ================================================ */
.partners-strip {
    background: var(--white);
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.partners-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 32px;
}

.partners-ticker-wrap {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 14%, black 86%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 14%, black 86%, transparent 100%);
}
.partners-ticker-wrap:hover .partners-ticker { animation-play-state: paused; }

.partners-ticker {
    display: flex;
    align-items: center;
    gap: 72px;
    width: max-content;
    padding: 0 80px;
    animation: ticker-scroll 32s linear infinite;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-ticker img {
    height: 40px;
    width: auto;
    max-width: none;
    display: block;
    flex-shrink: 0;
    transition: transform .2s var(--ease), opacity .2s;
    opacity: .75;
}
.partners-ticker img:hover {
    transform: scale(1.08);
    opacity: 1;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.65);
    padding: 72px 0 0;
    border-top: 3px solid var(--teal);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 260px; }

.footer-col h4 {
    color: var(--white); font-size: 0.75rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 18px; padding-bottom: 10px;
    border-bottom: 2px solid var(--teal); display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-contact p { font-size: .88rem; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.footer-contact strong { color: rgba(255,255,255,0.9); }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; font-size: .8rem;
    color: rgba(255,255,255,0.28);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ================================================
   FORMS
   ================================================ */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--mid); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit; font-size: .95rem;
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,114,114,0.12);
    outline: none;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-form { background: var(--light); padding: 44px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.contact-form h3 { font-size: 1.3rem; margin-bottom: 28px; }

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: start;
}
.contact-info h2 { font-size: 2rem; margin-bottom: 10px; }
.contact-info > p { color: var(--mid); margin-bottom: 36px; }
.contact-detail {
    display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px;
}
.contact-detail-icon {
    width: 42px; height: 42px;
    background: var(--teal-lt);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); flex-shrink: 0; font-size: 1.1rem;
}
.contact-detail-text strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--mid); margin-bottom: 2px; }
.contact-detail-text span { color: var(--dark); font-weight: 500; }

/* ================================================
   LEGAL PAGES
   ================================================ */
.legal-page { padding-bottom: 80px; }

.legal-hero {
    background: var(--dark);
    border-bottom: 3px solid var(--teal);
    padding: 52px 0;
}
.legal-hero h1 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0;
}

.legal-content {
    max-width: 800px;
    padding-top: 56px;
    padding-bottom: 56px;
}
.legal-content h2 {
    font-size: 1.15rem;
    margin-top: 40px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    color: var(--dark);
}
.legal-content h3 {
    font-size: 1rem;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--dark);
}
.legal-content p,
.legal-content li {
    color: var(--mid);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content address { font-style: normal; margin-bottom: 16px; line-height: 1.8; color: var(--mid); }
.legal-content a { color: var(--teal); }
.legal-content a.btn,
.legal-content a.btn:link,
.legal-content a.btn:visited { color: var(--white) !important; }

.legal-box {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 24px 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.payment-item {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.payment-item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--teal);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .footer-grid  { grid-template-columns: 1fr 1fr; }
    .about-grid   { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .site-nav {
        display: none; flex-direction: column; position: absolute;
        top: 76px; left: 0; right: 0;
        background: var(--white); padding: 16px 20px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
        z-index: 199;
    }
    .site-nav.open { display: flex; }
    .nav-toggle { display: flex; }
    .header-inner { position: relative; }

    .usp-strip-inner { grid-template-columns: 1fr; }
    .usp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }

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

    .hero { min-height: 480px; }
    .hero h1 { font-size: 2rem; }

    .section { padding: 60px 0; }
    .category-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
    .cat-slide img { height: 180px; }

    .stats-row { flex-wrap: wrap; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .anfrage-banner-inner { flex-direction: column; text-align: center; }
    .anfrage-btns { flex-direction: column; align-items: center; }
    .btn-outline { display: none; }
}
