/* ================================================
   L&S 360° SERVICE – Hauptstylesheet
   Farben: Blau #1A3C6E, Gold #C9A84C, Weiß #FFFFFF
   ================================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
    --blue:        #1A3C6E;
    --blue-dark:   #122B52;
    --blue-mid:    #2453A0;
    --blue-light:  #2E6EC0;
    --gold:        #C9A84C;
    --gold-dark:   #A8872C;
    --gold-light:  #E0C06A;
    --white:       #FFFFFF;
    --off-white:   #F7F8FA;
    --text:        #1E2535;
    --text-light:  #5A6378;
    --border:      #E2E6EF;
    --shadow:      0 4px 24px rgba(26,60,110,0.10);
    --shadow-lg:   0 12px 48px rgba(26,60,110,0.16);
    --radius:      12px;
    --radius-lg:   20px;
    --transition:  0.3s ease;
    --font-main:   'Inter', sans-serif;
    --font-head:   'Montserrat', sans-serif;
    --container:   1200px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* --- UTILITIES --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold  { color: var(--gold); }
.text-blue  { color: var(--blue); }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.d-none-mobile { display: inline; }

.section {
    padding: 96px 0;
}

/* --- TYPOGRAPHY --- */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(201,168,76,0.3);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 56px;
    line-height: 1.8;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.45);
}

.btn-blue {
    background: linear-gradient(135deg, var(--blue-mid), var(--blue));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(26,60,110,0.25);
}
.btn-blue:hover {
    background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,60,110,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-sm {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}
.btn-outline-sm:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-lg  { padding: 15px 36px; font-size: 1rem; }
.btn-md  { padding: 12px 28px; font-size: 0.95rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-header {
    padding: 10px 22px;
    font-size: 0.88rem;
}

/* ================================================
   HEADER / NAV
   ================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    padding: 8px 0;
}

.header.scrolled {
    background: rgba(18, 43, 82, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.25);
    padding: 0;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 80px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    /* Logo bekommt weißen Hintergrund-Pill für Sichtbarkeit */
    background: rgba(255,255,255,0.92);
    border-radius: 10px;
    padding: 6px 14px;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    transition: background var(--transition), box-shadow var(--transition);
}
.nav-logo:hover {
    background: rgba(255,255,255,1);
    box-shadow: 0 4px 18px rgba(0,0,0,0.22);
}
.header.scrolled .nav-logo {
    background: rgba(255,255,255,0.95);
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

/* Echtes Logo-Bild im Header */
.header-logo-img {
    height: 54px;
    width: auto;
    display: block;
    transition: transform var(--transition);
}
.header-logo-img:hover {
    transform: scale(1.03);
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-ls {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -1px;
}
.logo-ls .amp { color: var(--white); }

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-degree {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.05em;
}
.logo-service {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.22em;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto; /* schiebt Nav-Links nach rechts, Button bleibt ganz rechts */
}

.nav-link {
    color: rgba(255,255,255,0.88);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--gold);
    background: rgba(201,168,76,0.1);
}

/* Hamburger komplett entfernt – Onepager braucht kein Burger-Menü */

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(18, 43, 82, 0.88) 0%,
        rgba(26, 60, 110, 0.78) 50%,
        rgba(36, 83, 160, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.18);
    border: 1px solid rgba(201,168,76,0.45);
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    backdrop-filter: blur(6px);
    width: fit-content;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.75;
}

.hero-claim {
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
}
.claim-line {
    font-family: var(--font-head);
    font-size: clamp(1.1rem, 2.5vw, 1.55rem);
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}
.claim-gold {
    color: var(--gold);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 20px 32px;
    width: fit-content;
}

.stat { text-align: center; }
.stat-num {
    display: block;
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.04em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.scroll-down {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--gold);
    font-size: 1.4rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ================================================
   USP BANNER
   ================================================ */
.usp-banner {
    background: var(--white);
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 12px;
    border-right: 1px solid var(--border);
}
.usp-item:last-child { border-right: none; }
.usp-item i {
    font-size: 1.35rem;
    color: var(--gold);
    flex-shrink: 0;
}

/* ================================================
   ÜBER UNS
   ================================================ */
.ueber-uns { background: var(--off-white); }

.ueber-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.ueber-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
    line-height: 1.8;
}

.ueber-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
}
.highlight-item i {
    color: var(--gold);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.ueber-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}
.ueber-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.ueber-badge-box {
    position: absolute;
    bottom: -28px;
    left: -28px;
}

.ueber-badge {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    border: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 20px 28px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.badge-big {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.badge-small {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-top: 2px;
}
.badge-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
    font-style: italic;
}

/* ================================================
   LEISTUNGEN
   ================================================ */
.leistungen { background: var(--white); }

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.leistung-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.leistung-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.leistung-card:hover .card-image img {
    transform: scale(1.06);
}
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(18,43,82,0.75));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px;
}
.card-icon-big {
    font-size: 2.2rem;
    color: rgba(201,168,76,0.9);
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.card-content {
    padding: 24px 28px 28px;
}

.card-icon-wrap {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(201,168,76,0.35);
}
.card-icon-wrap i {
    color: var(--white);
    font-size: 1.15rem;
}

.card-content h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}
.service-list li i {
    color: var(--gold);
    font-size: 0.75rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue-mid);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: gap var(--transition), color var(--transition);
}
.card-link:hover {
    color: var(--gold-dark);
    gap: 10px;
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-banner::before {
    content: '360°';
    position: absolute;
    font-family: var(--font-head);
    font-size: 22rem;
    font-weight: 900;
    color: rgba(26,60,110,0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
}

.cta-content h2 {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 16px;
}
.cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

/* ================================================
   TEAM
   ================================================ */
.team { background: var(--white); border-top: 1px solid var(--border); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 720px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 4px solid var(--gold);
    box-shadow: 0 8px 24px rgba(26,60,110,0.25);
}
.team-avatar i {
    font-size: 2.2rem;
    color: var(--gold);
}

.team-info h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 4px;
}
.team-role {
    display: block;
    font-size: 0.88rem;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.team-contact { margin-top: 4px; }

/* ================================================
   KONTAKT
   ================================================ */
/* Kontaktbereich zentrieren */
.kontakt-grid {
    display: flex;
    justify-content: center;
}

/* Inhalt begrenzen und mittig */
.kontakt-info {
    max-width: 600px;
    text-align: center;
}

/* Icons + Text wieder links ausrichten für bessere Lesbarkeit */
.kontakt-details {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

/* Zeilen */
.kontakt-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    margin-left: 50px
}

/* Obere Zeile (3 Spalten) */
.kontakt-row.top .kontakt-item {
    flex: 1;
    max-width: 300px;
}

/* Untere Zeile (2 Spalten) */
.kontakt-row.bottom .kontakt-item {
    flex: 1;
    max-width: 300px;
}

/* Item Layout */
.kontakt-item {
    display: flex;
    gap: 12px;
    text-align: left;
}

/* Mobile */
@media (max-width: 768px) {
    .kontakt-row {
        flex-direction: column;
        align-items: center;
    }

    .kontakt-item {
        max-width: 100%;
    }
}

.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-light);
    box-shadow: 0 0 0 3px rgba(46,110,192,0.15);
}
.form-group input.error,
.form-group textarea.error {
    border-color: #e53e3e;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin: 16px 0;
}
.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--blue);
    cursor: pointer;
}
.form-check label {
    font-size: 0.84rem;
    font-weight: 400;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1.5;
}
.form-check label a {
    color: var(--blue-mid);
    font-weight: 600;
    text-decoration: underline;
}

.form-success {
    background: #f0fff4;
    border: 1px solid #68d391;
    color: #276749;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 16px;
    font-size: 0.92rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-success i { font-size: 1.2rem; color: #38a169; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--white);
    color: var(--text);
    border-top: 2px solid var(--border);
}

.footer-top { padding: 72px 0 48px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
    gap: 48px;
}

.footer-brand .footer-logo {
    margin-bottom: 20px;
}
.footer-logo-img {
    height: 70px;
    width: auto;
    filter: none;
}
.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-claim {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
    font-size: 0.95rem;
}
.footer-claim i { font-size: 0.75rem; opacity: 0.7; }

.footer-nav h4,
.footer-leistungen h4,
.footer-contact h4 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.footer-nav ul,
.footer-leistungen ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a,
.footer-leistungen a {
    color: var(--text-light);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition), gap var(--transition);
}
.footer-nav a:hover,
.footer-leistungen a:hover {
    color: var(--gold-dark);
    gap: 12px;
}
.footer-nav a i,
.footer-leistungen a i {
    font-size: 0.65rem;
    color: var(--gold);
    opacity: 0.8;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}
.footer-contact-item i {
    color: var(--gold);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    background: var(--off-white);
    padding: 20px 0;
    border-top: 1px solid var(--border);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.84rem;
    color: var(--text-light);
}
.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-links a {
    font-size: 0.84rem;
    color: var(--text-light);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-dark); }
.footer-links span { color: var(--border); }

/* ================================================
   SCROLL TO TOP
   ================================================ */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(201,168,76,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}
.scroll-top:hover {
    transform: translateY(-3px);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .leistungen-grid   { grid-template-columns: repeat(2, 1fr); }
    .footer-grid       { grid-template-columns: 1fr 1fr; }
    .ueber-grid        { gap: 48px; }
    .kontakt-grid      { gap: 48px; }
}

@media (max-width: 900px) {
    .ueber-grid        { grid-template-columns: 1fr; }
    .kontakt-grid      { grid-template-columns: 1fr; }
    .ueber-image       { order: -1; }
    .ueber-image img   { height: 320px; }
    .ueber-badge-box   { bottom: -20px; left: -10px; }
    .team-grid         { grid-template-columns: 1fr 1fr; }
    .usp-grid          { grid-template-columns: repeat(2, 1fr); }
    .usp-item:nth-child(2) { border-right: none; }
    .d-none-mobile     { display: none; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }

    /* Nav auf Mobile: nur Logo + Kontakt-Button sichtbar */
    .nav-list { display: none; }

    /* Kontakt-Button auf Mobile: ganz rechts, Logo ganz links */
    .nav {
        height: 68px;
        justify-content: space-between;
        gap: 0;
    }
    .btn-header {
        display: flex;
        margin-left: auto;  /* schiebt Button ganz an den rechten Rand */
        padding: 9px 16px;
        font-size: 0.82rem;
    }

    /* Header-Logo auf Mobile – Pill etwas kleiner */
    .nav-logo {
        padding: 5px 10px;
    }
    .header-logo-img { height: 40px; }

    .hero-content { padding-top: 120px; }

    /* Hero-Stats: alle 3 nebeneinander in einer Zeile */
    .hero-stats {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        gap: 0;
        padding: 14px 16px;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .stat {
        flex: 1;
        text-align: center;
    }
    .stat-num  { font-size: 1.4rem; }
    .stat-label { font-size: 0.68rem; }
    /* Trennlinien zwischen Stats wieder anzeigen */
    .stat-divider {
        display: block;
        width: 1px;
        height: 36px;
        background: rgba(255,255,255,0.2);
        flex-shrink: 0;
    }

    .leistungen-grid  { grid-template-columns: 1fr; }
    .team-grid        { grid-template-columns: 1fr; max-width: 360px; }
    .form-row         { grid-template-columns: 1fr; }
    .kontakt-form-wrap{ padding: 28px 20px; }
    .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .usp-grid         { grid-template-columns: 1fr; }
    .usp-item         { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
    .usp-item:last-child { border-bottom: none; }
    .hero-actions     { flex-direction: column; }
    .btn-lg           { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .ueber-highlights { grid-template-columns: 1fr; }
    .hero-title       { font-size: 1.8rem; }
    .section-title    { font-size: 1.6rem; }
}
