:root {
    --dark: #1a1a1a;
    --mid: #2e2e2e;
    --accent: #ff6a00;
    --accent2: #ff8c3a;
    --light: #fff2e8;
    --gray: #f5f5f5;
    --text: #1a1a1a;
    --muted: #6b6b6b;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
}

/* ── NAVBAR ── */
.navbar {
    background: var(--dark);
    padding: .9rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

.brand-text-main {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.brand-text-sub {
    font-size: .68rem;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .5px;
    text-transform: uppercase;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, .8) !important;
    font-weight: 500;
    font-size: .92rem;
    padding: .4rem .9rem !important;
    transition: color .2s;
}

.navbar .nav-link:hover {
    color: #fff !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .25);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.btn-nav {
    background: var(--accent);
    color: #fff !important;
    border-radius: 6px;
    padding: .42rem 1.1rem !important;
    font-weight: 600;
    font-size: .88rem;
    transition: background .2s, transform .15s;
}

.btn-nav:hover {
    background: #e05a00;
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
    color: #fff;
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ff6a00' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 106, 0, .18);
    border: 1px solid rgba(255, 106, 0, .4);
    color: #ffaa66;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: var(--accent2);
}

.hero .lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .72);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2rem;
}

.hero-tag {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .8);
    font-size: .78rem;
    font-weight: 600;
    padding: .28rem .85rem;
    border-radius: 20px;
}

.btn-hero-primary {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    padding: .8rem 2rem;
    border-radius: 8px;
    font-size: .95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-hero-primary:hover {
    background: #e05a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 106, 0, .4);
    color: #fff;
}

.btn-hero-ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-weight: 600;
    padding: .8rem 2rem;
    border-radius: 8px;
    font-size: .95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: border-color .2s, background .2s;
}

.btn-hero-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.hero-contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.contact-item i {
    color: var(--accent2);
    font-size: 1.1rem;
}

.contact-item a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-weight: 500;
    font-size: .92rem;
}

.contact-item a:hover {
    color: #fff;
}

.contact-item span {
    color: rgba(255, 255, 255, .7);
    font-size: .88rem;
}

.hero-img-wrap {
    position: relative;
}

.hero-img-wrap img {
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.hero-badge-float {
    position: absolute;
    bottom: -16px;
    left: 24px;
    background: #fff;
    border-radius: 12px;
    padding: .75rem 1.2rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.badge-icon {
    width: 42px;
    height: 42px;
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    flex-shrink: 0;
}

.badge-text-top {
    font-size: .75rem;
    color: var(--muted);
}

.badge-text-main {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

/* ── SECTIONS ── */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--gray);
}

.section-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .5rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
}

.section-sub {
    color: var(--muted);
    line-height: 1.75;
    font-size: .97rem;
}

/* ── USP BAR ── */
.usp-bar {
    background: var(--accent);
    padding: 36px 0;
}

.usp-bar-item {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.usp-bar-item i {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, .6);
    flex-shrink: 0;
}

.usp-bar-item strong {
    color: #fff;
    display: block;
    font-size: .95rem;
}

.usp-bar-item span {
    color: rgba(255, 255, 255, .75);
    font-size: .82rem;
}

/* ── SERVICE CARDS ── */
.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.75rem;
    height: 100%;
    border: 1px solid #e5e5e5;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .1);
    border-color: transparent;
}

.svc-icon {
    width: 54px;
    height: 54px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .6rem;
}

.service-card p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-top: .9rem;
}

.service-tag {
    background: var(--light);
    color: var(--accent);
    font-size: .72rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 4px;
}

/* ── ÜBER UNS ── */
.about-check {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin-bottom: .85rem;
}

.about-check i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-check p {
    margin: 0;
    font-size: .93rem;
    color: var(--muted);
    line-height: 1.6;
}

.info-card {
    background: var(--dark);
    color: #fff;
    border-radius: 14px;
    padding: 1.75rem;
}

.info-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-row {
    display: flex;
    gap: .75rem;
    align-items: center;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.info-row:last-child {
    border: none;
    padding-bottom: 0;
}

.info-row i {
    color: var(--accent2);
    font-size: 1rem;
    flex-shrink: 0;
}

.info-row span {
    font-size: .88rem;
    color: rgba(255, 255, 255, .75);
}

.info-row a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: .88rem;
}

.info-row a:hover {
    color: #fff;
}

/* ── KONTAKT ── */
.contact-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .07);
    border: 1px solid #e5e5e5;
}

.form-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
}

.form-control, .form-select {
    border-radius: 8px;
    border-color: #d1d1d1;
    font-size: .92rem;
    padding: .6rem 1rem;
    transition: border-color .2s, box-shadow .2s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, .15);
}

.btn-submit {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    padding: .8rem 2.2rem;
    border-radius: 8px;
    border: none;
    font-size: .95rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: background .2s, transform .15s;
    cursor: pointer;
}

.btn-submit:hover {
    background: #e05a00;
    transform: translateY(-1px);
}

.contact-side-card {
    background: var(--mid);
    border-radius: 14px;
    padding: 2rem;
    color: #fff;
    height: 100%;
}

.contact-side-card h4 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.csc-row {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin-bottom: 1.1rem;
}

.csc-row i {
    color: var(--accent2);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.csc-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .45);
    margin-bottom: .15rem;
}

.csc-val {
    font-size: .9rem;
    color: rgba(255, 255, 255, .9);
}

.csc-val a {
    color: var(--accent2);
    text-decoration: none;
}

.csc-val a:hover {
    color: #fff;
}

.hours-table {
    width: 100%;
    font-size: .85rem;
    margin-top: .5rem;
}

.hours-table td {
    padding: .3rem 0;
    color: rgba(255, 255, 255, .7);
}

.hours-table td:last-child {
    text-align: right;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, #111, #2a2a2a);
    color: #fff;
    padding: 72px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: .75rem;
}

.cta-banner p {
    opacity: .75;
    margin-bottom: 2rem;
}

.btn-cta {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    padding: .85rem 2.2rem;
    border-radius: 8px;
    font-size: .95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: background .2s, transform .2s;
}

.btn-cta:hover {
    background: #e05a00;
    transform: translateY(-2px);
    color: #fff;
}

.btn-cta-ghost {
    background: rgba(255, 255, 255, .1);
    border: 2px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-weight: 700;
    padding: .85rem 2.2rem;
    border-radius: 8px;
    font-size: .95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: border-color .2s, background .2s;
}

.btn-cta-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

/* ── FOOTER ── */
footer {
    background: #111;
    color: rgba(255, 255, 255, .55);
    padding: 52px 0 24px;
}

footer h5 {
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 1rem;
    letter-spacing: .5px;
}

footer a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: .88rem;
    transition: color .2s;
}

footer a:hover {
    color: #fff;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: .5rem;
}

.footer-brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.footer-brand-sub {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, .08);
    margin: 2rem 0 1rem;
}

.footer-copy {
    font-size: .78rem;
    color: rgba(255, 255, 255, .3);
}

.footer-accent {
    color: var(--accent);
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

#form-success, #form-error {
    display: none;
}

/* ── DATENSCHUTZ ── */
.page-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--dark, #1a1a1a);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #ff6a00;
    display: inline-block;
}

.datenschutz-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.datenschutz-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: .5rem;
    padding-left: .75rem;
    border-left: 3px solid #ff6a00;
}

.datenschutz-card h5:first-child {
    margin-top: 0;
}

.datenschutz-card p,
.datenschutz-card ul {
    font-size: .93rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

.datenschutz-card ul {
    padding-left: 1.2rem;
    margin-top: .35rem;
}

.datenschutz-card ul li {
    margin-bottom: .3rem;
}

.datenschutz-card a {
    color: #ff6a00;
    text-decoration: none;
}

.datenschutz-card a:hover {
    text-decoration: underline;
}

.ds-section {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
}

.ds-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ── 404 ── */
.error-wrap {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 15px;
    text-align: center;
}

.error-code {
    font-size: clamp(5rem, 18vw, 9rem);
    font-weight: 800;
    line-height: 1;
    color: #ecebeb;
    letter-spacing: -4px;
    position: relative;
    display: inline-block;
}

.error-code span {
    color: #ff6a00;
}

.error-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-top: .5rem;
    margin-bottom: .75rem;
}

.error-text {
    font-size: .97rem;
    color: #6b6b6b;
    max-width: 400px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.btn-home {
    background: #ff6a00;
    color: #fff;
    font-weight: 700;
    padding: .75rem 2rem;
    border-radius: 8px;
    font-size: .95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: background .2s, transform .15s;
}

.btn-home:hover {
    background: #e05a00;
    transform: translateY(-2px);
    color: #fff;
}

.btn-back {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #6b6b6b;
    font-weight: 600;
    padding: .75rem 1.75rem;
    border-radius: 8px;
    font-size: .95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: border-color .2s, color .2s;
}

.btn-back:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.error-divider {
    width: 48px;
    height: 3px;
    background: #ff6a00;
    margin: 1.25rem auto;
    border-radius: 2px;
}