/* styles.css — LQD Watersystems
   Leichtgewichtiges, responsives Layout
   Farben / Typo entsprechen CI
*/

/* CI Farben */
:root {
    --petrol: #193a3d;
    /* Hauptfarbe */
    --minty: #0e6973;
    /* Akzent */
    --cloud: #bad9ce;
    /* Sekundärflächen */
    --cream: #fcfaf2;
    /* Hintergrund */
    --text: #193a3d;
    --muted: #6b7a78;
    --max-width: 1100px;
    --font-stack: "Avenir", "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
}



body {
    font-family: var(--font-stack);
    background: var(--cream);
    color: var(--text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    font-size: 16px;
    box-sizing: border-box
}

/* Container */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Header */
.site-header {
    background: var(--petrol);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0, 0;
}

/* Navigation */
.logo img {
    height: 80px;
}

.main-nav a {
    box-sizing: border-box;
    border: 1px solid transparent;
    color: #fff;
    padding: 0.5rem 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.main-nav a:hover {
    border-radius: 999px;
    background: #fff;
    color: var(--petrol);
    box-shadow: none;
    transition-duration: 300ms;
}

.mobile-titel {
    display: none;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0 1rem;
    color: #fff;
    align-self: center;
}

.header-cta {
    background: var(--minty);
    color: #fff;
    padding: 0.45rem 0.9rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition-duration: 300ms;
    white-space: nowrap;
}

.header-cta:hover {
    background: #fff;
    color: var(--minty);
    border: 1px solid var(--minty);
    transition-duration: 300ms;
}

/* Hero */
.hero {
    padding: 2.4rem 0;
}

.hero-inner {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-copy {
    flex: 1 1 320px;
}

.hero-copy h1,
h2 {
    margin: 0 0 0.6rem 0;
    color: var(--minty);
    font-size: 1.8rem;
}

.hero-copy p {
    margin: 0 0 1rem 0;
}

.cta-row {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn.primary {
    background: var(--minty);
    color: #fff;
    box-shadow: none;
    transition-duration: 300ms;
}

.btn.primary:hover {
    background: #fff;
    color: var(--minty);
    border: 1px solid var(--minty);
    transition-duration: 300ms;
}

/* Hero image */
.hero-image {
    flex: 1 1 320px;
    text-align: right;
}

.hero-image img {
    width: 100%;
    max-width: 440px;
    border-radius: 0 50% 50% 50%;
    box-shadow: 0 6px 18px rgba(11, 34, 35, 0.05);
}

/* Benefits */
.benefits {
    padding: 2rem 0;
}

.cards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.card {
    flex: 1 1 220px;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 6px 18px rgba(11, 34, 35, 0.05);
    min-width: 200px;
}

.card img {
    height: 24px;
    width: 24px;
    margin: 0.6rem 0 0.6rem 0;
    vertical-align: middle;
}

.card h4 {
    margin: 0.6rem 0 0.6rem 0.6rem;
    color: var(--petrol);
    display: inline;
}

.card p {
    margin: 0;
    color: var(--muted)
}

/* Emoto Effect */
.effekt {
    padding: 2rem 0;
}

.effekt h3 {
    margin-top: 0;
}

.kristall-grid {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.kristall-card {
    background: #fff;
    border-radius: 8px;
    flex: 1 1 auto;
    text-align: center;
    align-items: center;
    padding-bottom: 1rem;
}

.kristall-bilder img {
    max-width: 250px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(11, 34, 35, 0.05);
}

/* About */
.about {
    padding: 2rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 1.4rem;
    align-items: center;
    justify-items: center;
}

.about-image img {
    width: 100%;
    max-width: 440px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(11, 34, 35, 0.05);
}

.kursiv {
    font-style: italic;
}

/* Systems */
.systems {
    padding: 2rem 0;

}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.tech-card {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(11, 34, 35, 0.05);
}

/* Pricing */
.pricing {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.price-item {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    flex: 1 1 220px;
    text-align: center;
}

.price {
    font-size: 1.6rem;
    color: var(--minty);
    margin: 0.4rem 0;
}

.muted {
    color: var(--muted)
}

/* Customers sections */
.customers {
    padding: 2rem 0;
}

.feature-list {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.feature-list img {
    height: 24px;
    width: 24px;
    margin: 0.6rem 0 0.6rem 0.6rem;
    vertical-align: middle;
}

.feature-list h4 {
    margin: 0.6rem 0 0.6rem 0.6rem;
    color: var(--petrol);
    display: inline;
}

.feature-list>div {
    flex: 1 1 200px;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
}


/* FAQ */
.faq {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.frage {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    flex: 1 1 220px;
    margin-top: 1rem;
}

.faq dl dt {
    font-weight: 700;
    margin-top: 0.8rem
}

.faq dl dd {
    margin: 0.4rem 0 0.8rem 0;
    color: var(--muted)
}

/* Contact */
.contact {
    padding: 2rem 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 1.4rem;
    align-items: start;
}

.contact-info h2 {
    margin-top: 0;
    color: var(--minty)
}

.contact-box {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    flex: 1 1 220px;
    margin-top: 1rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    color: var(--muted)
}

.contact-list li {
    margin-bottom: 0.4rem;
}

/* Contact Form 
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-form label {
    font-size: 0.9rem;
    color: var(--minty);
}

.contact-form input,
.contact-form textarea {
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(25, 58, 61, 0.08);
    font-size: 0.95rem;
}

.form-row {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.4rem;
    align-items: center;
}

.form-note {
    font-size: 0.85rem;
    color: var(--muted)
}
    */

/* Footer */
.site-footer {
    background: var(--petrol);
    color: #fff;
    padding: 1.2rem 0;
    margin-top: 2rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width:1000px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        padding: 0.8rem;
    }

    .main-nav {
        display: flex;
        gap: 0.6rem;
        flex-wrap: wrap;
    }

    .hero-inner {
        flex-direction: column-reverse;
        text-align: left;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        text-align: left;
    }
}

@media (max-width:500px) {
    .site-header {
        position: static;
    }

    .header-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .main-nav {
        display: none
    }

    .mobile-titel {
        display: unset;
    }

    .header-cta {
        display: none;
    }
}

/* small tweaks */
.small {
    font-size: 0.9rem;
    color: var(--muted)
}

.lead {
    font-size: 1.02rem
}

:target {
    padding-top: 125px;
}