:root {
    --primary: #b7791f;
    --primary-dark: #8f5f18;
    --dark: #1f2937;
    --muted: #6b7280;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

.navbar {
    box-shadow: 0 2px 18px rgba(0,0,0,0.05);
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
}

.navbar-brand span {
    display: block;
    line-height: 1.1;
}

.brand-top {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
}

.brand-bottom {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
}

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    background:
            linear-gradient(rgba(17,24,39,0.72), rgba(17,24,39,0.72)),
            url('../images/fliesenleger_hero.jpg') center/cover no-repeat;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1rem;
}

.hero p.lead {
    max-width: 720px;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.btn-primary-custom {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 0.9rem 1.4rem;
    font-weight: 700;
    border-radius: 0.8rem;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-outline-light-custom {
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 0.9rem 1.4rem;
    font-weight: 700;
    border-radius: 0.8rem;
}

.btn-outline-light-custom:hover {
    background: #fff;
    color: var(--dark);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto;
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(183,121,31,0.12);
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-card,
.feature-card,
.contact-card,
.review-card {
    border: none;
    border-radius: 1.25rem;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    height: 100%;
}

.service-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    transition: 0.25s ease;
}

.bg-soft {
    background: var(--light-bg);
}

.check-list li {
    margin-bottom: 0.7rem;
    color: var(--dark);
}

.check-list li::marker {
    color: var(--primary);
}

.stats-box {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.stats-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--dark), #374151);
    color: #fff;
    border-radius: 1.5rem;
    padding: 3rem;
}

.contact-info a {
    color: var(--dark);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--primary);
}

footer {
    background: #111827;
    color: rgba(255,255,255,0.78);
}

.small-muted {
    font-size: 0.95rem;
    color: var(--muted);
}

.hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 1.25rem;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-card strong {
    font-size: 1.05rem;
}

.logo-box {
    border-radius: 0.375rem;
    transform: rotate(45deg);
}
.logo-box span {
    transform: rotate(-45deg);
}
