:root {
    --red: #e1001a;
    --red-dark: #c00008;
    --grey: #282828;
    --gold: #f2b705;
    --bg: #ffffff;
    --soft: #9393931c;
    --text: #1f1f1f;
    --muted: #666;
    --border: #e7e7e2;
    --shadow: 0 12px 35px rgba(0, 0, 0, .08);
    --radius: 20px;
    --container: 1700px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

#impressum a:hover {
    font-size: 18px;
    transition: 0.5s;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 140px 30px;
}

.section--soft {
    background: var(--soft);
}

.section--soft2 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section--tight {
    padding: 42px 0;
}

.section--highlight {
    background-image: url(../img/transporter.webp);
    background-size: cover;
    background-position: inherit;
    color: #fff;
    padding: 150px 30px;
    height: 100%;
    width: auto;
}

.section--contact {
    background-image: url(../img/koeln.webp);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 88px 30px;
    width: 100%;
}

.contact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.contact>div {
    flex: 1 1 420px;
    min-width: 0;
}

.form2 {
    color: #111;
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.section--contact .hero__form {
    width: auto;
    flex: 1 1 420px;
}

.stoerer-sticker {
    --red: #c8102e;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    padding: 38px 42px 34px;
    background: linear-gradient(145deg, #1f1f1fc1 0%, #111111d1 100%);
    border-left: 8px solid var(--red);
    border-radius: 22px;
    overflow: hidden;
    max-width: 550px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .22);
    animation: premiumFloat 4.5s ease-in-out infinite;
    transition: box-shadow .35s ease;
}

/* dezente Lichtstruktur */
.stoerer-sticker::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .04), transparent 45%);
    pointer-events: none;
}

/* subtiler roter Fokus-Glow */
.stoerer-sticker::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    top: -60px;
    background:
        radial-gradient(rgba(200, 16, 46, .35), transparent 70%);
    filter: blur(12px);
    opacity: .4;
    animation: softGlow 6s ease-in-out infinite;
    pointer-events: none;
}

/* Hover nur minimal edler */
.stoerer-sticker:hover {
    box-shadow:
        0 35px 80px var(--grey);
}

/* LABEL */
.stoerer-sticker__label {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

/* TITLE */
.stoerer-sticker__title {
    margin: 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #fff;
}

/* Highlight */
.stoerer-sticker__title span {
    color: var(--red);
}

/* TEXT */
.stoerer-sticker__text {
    margin-top: 16px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 500;
    line-height: 1.4;
}

/* OPTIONAL CTA */
.stoerer-sticker__cta {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.stoerer-sticker__cta::after {
    content: "→";
    transition: transform .3s ease;
}

.stoerer-sticker:hover .stoerer-sticker__cta::after {
    transform: translateX(5px);
}

/* =========================================================
   ANIMATIONEN
   ========================================================= */

/* sanfter, schwerer Bounce (Premium-Floating) */
@keyframes premiumFloat {
    0% {
        transform: translateY(0);
    }

    45% {
        transform: translateY(-6px);
    }

    70% {
        transform: translateY(2px);
    }

    100% {
        transform: translateY(0);
    }
}

/* dezenter Glow-Pulse */
@keyframes softGlow {

    0%,
    100% {
        opacity: .35;
        transform: scale(1);
    }

    50% {
        opacity: .55;
        transform: scale(1.05);
    }
}

.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

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

.logo__icon {
    width: 160px;
    height: auto;
    padding: 10px 0;
}

.nav--desktop {
    display: flex;
    gap: 24px;
    font-weight: 600;
}

.nav--desktop a:hover {
    color: var(--red);
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
}

.header__phone strong {
    display: block;
}

.header__phone small {
    color: var(--muted);
}

.burger {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    padding: 12px;
    position: relative;
    z-index: 210;
}

.burger span {
    display: block;
    height: 2px;
    background: #222;
    border-radius: 2px;
    margin: 5px 0;
}

.mobile-nav[hidden] {
    display: none !important;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(10, 20, 15, .96);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.mobile-nav__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 20px;
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}

.hero__grid,
.split,
.footer__grid {
    display: grid;
    gap: 150px;
}

.hero__grid {
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
}

.hero {
    background-image:
        linear-gradient(rgba(40, 40, 40, 0.55), rgba(40, 40, 40, 0.55)),
        url(../img/umziehen.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 80% center; /* rechter Bildbereich sichtbar */
    padding: 190px 0;
}

h1 {
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    line-height: 1.05;
    margin: 18px 0;
    color: #fff;
}

h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.6rem);
    line-height: 1.1;
    margin: 0 0 14px;
}

h3 {
    margin: 0;
    font-size: 1.05rem;
}

.lead {
    font-size: 1.1rem;
    color: #fff;
    max-width: 56ch;
}

.mini-headline {
    color: var(--red-dark);
    font-weight: bold;
    font-size: 20px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 700;
    border: 1px solid transparent;
}

.btn2 {
    background-color: var(--red-dark);
    text-align: center;
    padding: 15px 25px;
    border-radius: 14px;
    font-weight: 700;
    width: auto;
    margin: 0 auto;
    display: inline-block;
}

.btn--primary {
    background: var(--red);
    color: #fff;
}

.btn--primary:hover,
.btn--secondary:hover,
.btn--accent:hover,
.btn--full:hover,
.btn--outline:hover,
.btn:hover,
.btn2:hover {
    background-color: var(--grey);
    color: #fff;
    transition: 0.5s;
}

.btn--secondary {
    background: #fff;
    border-color: var(--border);
    color: var(--grey);
}

.btn--accent {
    background: var(--gold);
    color: #111;
}

.btn--outline {
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
    background: transparent;
}

.btn--full {
    width: 100%;
}

.rating {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
}

.rating__stars {
    color: #f3b400;
    display: flex;
    gap: 4px;
}

.hero__form {
    background: #fff;
    width: 30vw;
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.hero__form h2 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.hero__form p {
    margin: 0 0 18px;
    color: var(--muted);
}

.hero__form form {
    display: grid;
    gap: 14px;
}

label {
    display: grid;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
}

input,
select {
    min-height: 48px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
}

.finance-section{
padding:80px 20px;
background:var(--soft);
display:flex;
justify-content:center;
}
 
.finance-container{
display:flex;
gap:60px;
max-width:1000px;
width:100%;
align-items:center;
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}
 
.finance-controls{
flex:2;
}
 
.finance-controls label{
display:block;
font-size:14px;
color:#666;
margin-top:20px;

}
 
.value{
font-size:26px;
font-weight:700;
margin:6px 0 10px 0;
color: var(--red-dark);

}
 
.finance-controls input{
width:100%;
}
 
.finance-result{
flex:1;
background:#f8fafc;
padding:30px;
border-radius:16px;
text-align:center;

}
 
.result-label{
font-size:14px;
color:#666;
}
 
.result-price{
font-size:42px;
font-weight:700;
color:var(--red-dark);
margin:5px 0;
}
 
.result-small{
font-size:14px;
color:#777;
}
 
.result-total{
margin-top:10px;
font-size:14px;
}
 
.result-interest{
margin-top:6px;
font-size:12px;
color:#777;
}
 
@media(max-width:800px){
 
.finance-container{
flex-direction:column;
gap:30px;
}
 
.result-price{
font-size:36px;
}
 
}

.trustbar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    width: 73vw;
}

.trust-item {
    text-align: center;
    border-radius: 18px;
    font-weight: 700;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--red);
    margin-bottom: 10px;
}

.trust-item span {
    margin-left: 10px;
}

.split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.split--reverse .content-box {
    order: 1;
}

.split--reverse .media-box {
    order: 2;
}

.split--about {
    display: grid;
    gap: 150px;
    align-items: center;
}

.content-box p {
    color: var(--muted);
    line-height: 1.7;
}

.media-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #e8ece8;
    border: 1px dashed #cfd7cf;
    min-height: 360px;
}

.media-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

#ueber-uns {
    position: relative;
}

.rate-badge {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(192, 0, 8, .98), rgba(225, 0, 26, .98));
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .20);
    border: 2px solid rgba(255, 255, 255, .24);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
    backdrop-filter: blur(2px);
    justify-self: end;
    align-self: end;
    margin-bottom: 18px;
    position: absolute;
    right: 60px;
    bottom: 0px;
}

.rate-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
    filter: brightness(1.02);
}

.rate-badge__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 3rem;

}

.rate-badge__text {
    display: grid;
    gap: 2px;
    line-height: 1.05;
}

.rate-badge__text strong {
    font-size: 1rem;
}

.rate-badge__text small {
    font-size: .9rem;
    opacity: .92;
}

.section__heading {
    margin-bottom: 28px;
}

.section__heading p {
    color: var(--muted);
    margin: 0;
}

#how-to h2,
#druck h2,
#leistungen h2,
#faq h2 {
    text-align: center;
}

.center-text {
    text-align: center;
    margin-bottom: 40px;
}

#druck {
    background-image: url(../img/koeln-paralax.webp);
    background-attachment: fixed;
    background-size: cover;
    height: 100%;
    width: auto;
    color: #fff;
}

.card-grid {
    display: grid;
    gap: 16px;
}

.card-grid--services {
    grid-template-columns: repeat(4, 1fr);
}

.card-grid--steps {
    grid-template-columns: repeat(4, 1fr);
}

.service-card,
.step-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
}

.service-card {
    display: grid;
    gap: 10px;
    padding: 50px;
    text-align: center;
    place-items: center;
}

.service-card i,
.step-card i {
    font-size: 4rem;
    color: var(--red);
}

.step-card span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    margin-bottom: 14px;
}

.step-card p {
    color: var(--muted);
    line-height: 1.6;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 12px;
}

.checklist li {
    padding-left: 28px;
    position: relative;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--red);
    font-weight: 800;
}

.planning {
    align-items: center;
    text-align: center;
}

.planning__actions {
    gap: 14px;
    text-align: center;
    margin-top: 20px;
}

.faq {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.faq__col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item__content {
    padding: 0 20px 18px;
}

.faq-item__content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.faq-item i {
    transition: transform .25s ease;
}

.faq-item[open] i {
    transform: rotate(180deg);
}

.footer {
    background: #282828;
    color: #fff;
    padding: 88px 30px;
}

.footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer h3 {
    margin: 0 0 12px;
    font-size: 1rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: rgba(255, 255, 255, .85);
}

#impressum strong {
    color: var(--red-dark);
}

@media (max-width: 1024px) {

    .nav--desktop,
    .header__phone {
        display: none;
    }

    .burger {
        display: block;
    }

    .hero__grid,
    .split,
    .planning,
    .contact,
    .footer__grid,
    .trustbar__grid,
    .card-grid--services,
    .card-grid--steps,
    .split--about {
        grid-template-columns: 1fr 1fr;
    }

    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__form {
        width: auto;
    }

    .media-box {
        min-height: auto;
    }

    .split--about {
        grid-template-columns: 1fr;
    }

    .rate-badge {
        justify-self: start;
        margin: 0;
    }
}

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

    .split,
    .split--reverse,
    .planning,
    .footer__grid,
    .trustbar__grid,
    .card-grid--services,
    .card-grid--steps,
    .split--about {
        grid-template-columns: 1fr;
    }

    .split--reverse .content-box,
    .split--reverse .media-box {
        order: initial;
    }

    .planning__actions {
        justify-content: flex-start;
    }

    h1 {
        font-size: 2.5rem;
    }

    .faq {
        flex-direction: column;
    }

    .faq__col {
        width: 100%;
    }

    .contact {
        align-items: flex-start;
    }

    #planung .btn--secondary {
        margin-top: 20px;
    }

    .media-box {
        min-height: 260px;
    }

    .rate-badge {
        right: 14px;
        bottom: 14px;
        width: 124px;
        height: 124px;
        padding: 12px;
    }

    .rate-badge__icon {
        width: 34px;
        height: 34px;
        font-size: .95rem;
    }

    .rate-badge__text strong {
        font-size: .84rem;
    }

    .rate-badge__text small {
        font-size: .64rem;
    }

    .media-box {
        min-height: 260px;
    }

    .rate-badge {
        width: 124px;
        height: 124px;
    }
}

@media (max-width: 560px) {

    .hero__grid,
    .split {
        display: grid;
        gap: 50px;
    }

    .footer__grid {
        width: 80%;
        gap: 50px;
    }

    .header__inner {
        min-height: 68px;
    }

    .logo__text strong {
        font-size: 13px;
    }

    .mobile-nav__links {
        font-size: 24px;
    }

    .hero__actions,
    .planning__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .media-box {
        min-height: auto;
    }

    .rate-badge {
        display: none;
    }

    /* Responsive für 560px und kleiner */
    @media (max-width: 560px) {
        .stoerer-sticker {
            transform: rotate(0deg);
            padding: 20px 15px;
            box-shadow: 3px 3px 0px #fff;
            width: 100%;
        }

        .stoerer-sticker__title {
            font-size: 24px;
        }

        .stoerer-sticker__text {
            font-size: 20pt;
        }
    }

    .section {
        padding: 140px 0px
    }
}
@media (max-width: 560px) {

  .stoerer-sticker {
    padding: 26px 22px;

    border-left: 6px solid var(--red);

    border-radius: 18px;

    max-width: 100%;

    animation: premiumFloatMobile 6s ease-in-out infinite;
  }

  .stoerer-sticker__label {
    font-size: 11px;
    letter-spacing: .14em;
    margin-bottom: 14px;
  }

  .stoerer-sticker__title {
    font-size: clamp(32px, 10vw, 48px);
    line-height: .92;
  }

  .stoerer-sticker__text {
    font-size: 16px;
    margin-top: 12px;
  }

  .stoerer-sticker__cta {
    font-size: 14px;
    margin-top: 20px;
  }

  /* etwas ruhigere Bewegung auf Mobile (wirkt sonst schnell “wackelig”) */
  @keyframes premiumFloatMobile {
    0% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-3px);
    }

    100% {
      transform: translateY(0);
    }
  }

  /* Glow etwas reduzieren für bessere Lesbarkeit */
  .stoerer-sticker::after {
    opacity: .25;
    filter: blur(14px);
  }
}