/* ==========================================================================
   PAGE DE — Karcher Siebtechnik Germany Branch (German)
   All selectors prefixed with .de- to avoid conflicts
   ========================================================================== */

/* ---------- HERO ---------- */
.de-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
}
.de-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.de-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,31,71,0.92) 0%, rgba(0,31,71,0.78) 50%, rgba(0,31,71,0.88) 100%);
}
.de-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    color: #fff;
}
.de-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #AEDA1F;
    background: rgba(174, 218, 31, 0.12);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(174, 218, 31, 0.35);
    margin-bottom: 1.25rem;
}
.de-hero-flag { font-size: 1.1rem; }
.de-hero-title {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    color: #ffffff;
}
.de-hero-sub {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2rem;
    max-width: 680px;
}
.de-hero-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}
.de-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.de-hero-btn svg { width: 16px; height: 16px; }

/* ---------- SECTION BASE ---------- */
.de-section {
    padding: 5.5rem 0;
}
.de-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem;
}
.de-section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #AEDA1F;
    margin-bottom: 0.85rem;
}
.de-section-title {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 700;
    color: #001F47;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.de-section-intro {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
}

/* ---------- ABOUT ---------- */
.de-about { background: #ffffff; }
.de-about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
}
.de-about-text p {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 1.1rem;
}
.de-about-text p:first-child::first-letter {
    font-size: 2.8rem;
    font-weight: 700;
    color: #AEDA1F;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
}
.de-about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background: #f5f7fa;
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
}
.de-stat {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    border-bottom: 1px dashed #cbd5e1;
}
.de-stat:nth-child(odd) { border-right: 1px dashed #cbd5e1; }
.de-stat:nth-last-child(-n+2) { border-bottom: none; }
.de-stat-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #001F47;
    margin-bottom: 0.25rem;
}
.de-stat-label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.4;
}
.de-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #001F47;
    text-decoration: none;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid #AEDA1F;
    margin-top: 0.85rem;
    transition: gap 0.2s ease;
}
.de-link-arrow:hover { gap: 0.75rem; color: #AEDA1F; }
.de-link-arrow svg { width: 16px; height: 16px; }

/* ---------- PRODUCTS ---------- */
.de-products { background: #f5f7fa; }
.de-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.de-product-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.de-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,31,71,0.1);
    border-color: #AEDA1F;
}
.de-product-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(174, 218, 31, 0.12);
    border-radius: 10px;
    color: #001F47;
    margin-bottom: 1rem;
}
.de-product-icon svg { width: 26px; height: 26px; }
.de-product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: #001F47;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}
.de-product-card p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}
.de-products-cta {
    text-align: center;
    margin-top: 3rem;
}
.de-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.75rem;
}
.de-cta-btn svg { width: 16px; height: 16px; }

/* ---------- PROLINE ---------- */
.de-proline { background: #001F47; color: #fff; }
.de-proline .de-section-title { color: #fff; }
.de-proline .de-section-eyebrow { color: #AEDA1F; }
.de-proline-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
}
.de-proline-desc {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.25rem;
}
.de-proline-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.de-proline-list li {
    position: relative;
    padding-left: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}
.de-proline-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #AEDA1F;
}
.de-proline-list strong {
    color: #AEDA1F;
    font-weight: 700;
}
.de-proline .de-link-arrow {
    color: #AEDA1F;
    border-bottom-color: #AEDA1F;
}
.de-proline .de-link-arrow:hover {
    color: #fff;
}
.de-proline-visual {
    display: flex;
    justify-content: center;
}
.de-proline-card {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(174,218,31,0.3);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}
.de-proline-grid-icon {
    color: #AEDA1F;
}
.de-proline-grid-icon svg { width: 140px; height: 140px; }
.de-proline-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

/* ---------- FINAL CTA ---------- */
.de-final-cta {
    background: linear-gradient(135deg, #001F47 0%, #002a5c 100%);
    text-align: center;
}
.de-final-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.de-final-flag {
    font-size: 3rem;
    margin-bottom: 0.25rem;
}
.de-final-title {
    font-family: var(--font-heading);
    font-size: 2.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0;
}
.de-final-sub {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0.5rem 0 1rem;
    max-width: 600px;
}
.de-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 1rem 2rem;
    background: #AEDA1F;
    color: #001F47;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: 0.5rem;
}
.de-final-btn:hover {
    background: #92b814;
    transform: translateY(-2px);
}
.de-final-btn svg { width: 18px; height: 18px; }
.de-final-note {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 1.5rem;
}

/* ---------- KONTAKT ---------- */
.de-contact { background: #ffffff; }
.de-contact-inner { max-width: 900px; margin: 0 auto; }
.de-contact-head { text-align: center; margin-bottom: 2.5rem; }
.de-contact-head .de-section-title { margin-bottom: 0.85rem; }
.de-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.de-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 2rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.de-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,31,71,0.1);
    border-color: #AEDA1F;
    background: #ffffff;
}
.de-contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(174, 218, 31, 0.12);
    border-radius: 12px;
    color: #001F47;
    margin-bottom: 0.5rem;
}
.de-contact-icon svg { width: 22px; height: 22px; }
.de-contact-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #AEDA1F;
}
.de-contact-value {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    color: #001F47;
    line-height: 1.4;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .de-hero { min-height: 520px; padding: 5rem 0; }
    .de-hero-title { font-size: 2.75rem; }
    .de-section { padding: 4rem 0; }
    .de-section-title { font-size: 1.9rem; }
    .de-about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .de-product-grid { grid-template-columns: repeat(3, 1fr); }
    .de-proline-inner { grid-template-columns: 1fr; gap: 2rem; }
    .de-contact-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .de-hero-title { font-size: 2.25rem; }
    .de-hero-sub { font-size: 1rem; }
    .de-product-grid { grid-template-columns: repeat(2, 1fr); }
    .de-about-stats { padding: 1.5rem; }
    .de-final-title { font-size: 1.65rem; }
}
@media (max-width: 575px) {
    .de-hero { padding: 4rem 0; }
    .de-hero-title { font-size: 1.85rem; }
    .de-product-grid { grid-template-columns: 1fr; }
    .de-hero-actions { flex-direction: column; }
    .de-hero-btn { width: 100%; justify-content: center; }
    .de-contact-cards { grid-template-columns: 1fr; }
}
