/* ═══════════════════════════════════════════
   APFELBAUM IMMOBILIEN — Editorial / Minimal
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ═══════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #0d0d0d;
    --text: #1c1c1c;
    --dim: #888888;
    --gold: #8b7355;
    --gold-light: #a0896c;
    --gold-pale: rgba(139, 115, 85, 0.06);
    --bg: #ffffff;
    --bg-warm: #f5f5f5;
    --bg-light: #efefef;
    --border: rgba(0, 0, 0, 0.08);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --nav-h: 80px;
    --max-w: 1200px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
::selection { background: var(--gold-pale); color: var(--navy); }


/* ═══════════════ REUSABLE ═══════════════ */

.section-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn--primary {
    background: #ffffff;
    color: var(--gold);
}
.btn--primary:hover {
    background: #f5f0e8;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn--secondary {
    background: transparent;
    color: var(--dim);
    border: 1px solid var(--border);
}
.btn--secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--outline {
    background: #ffffff;
    color: var(--gold);
    border: 1px solid #ffffff;
}
.btn--outline:hover {
    background: #f5f0e8;
    border-color: #f5f0e8;
}

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


/* ═══════════════ NAV ═══════════════ */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.nav--scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}

.nav__left,
.nav__right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav__left { justify-self: start; }
.nav__right { justify-self: end; }

.nav__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    padding: 0.3rem 0;
    justify-self: center;
}

.nav__icon { width: 32px; height: 32px; flex-shrink: 0; }

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--navy);
}

.nav__link {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--navy);
    transition: color 0.3s;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.nav__link:hover { color: var(--gold); }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    grid-column: 3;
    justify-self: end;
}
.nav__burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    transition: transform 0.3s, opacity 0.3s;
}
.nav__burger--open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; }
.nav__burger--open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ═══════════════ HERO ═══════════════ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy);
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero__video {
        display: none;
    }
    .hero {
        background-image: url('../assets/hero-poster.jpg');
        background-size: cover;
        background-position: center;
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.6) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 800px;
}

.hero__pre {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d4a853;
    margin-bottom: 1.4rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero__sub {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 500;
    color: #d4a853;
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
}

.hero__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.hero__tags span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    color: #ffffff;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.hero__tags span:hover {
    border-color: var(--gold-light);
    background: rgba(160,137,108,0.15);
}

.hero__ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: heroScroll 2s ease-in-out infinite;
}

.hero__scroll-dot {
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes heroScroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes scrollDot {
    0% { cy: 8; opacity: 1; }
    100% { cy: 20; opacity: 0; }
}


/* ═══════════════ REVEAL ANIMATIONS ═══════════════ */

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════ ABOUT ═══════════════ */

.about {
    padding: 7rem clamp(1.5rem, 4vw, 3rem) 3rem;
}

.about__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.about__portrait {
    position: relative;
}

.about__img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 6px;
    filter: grayscale(10%) contrast(1.02);
}

.about__portrait-accent {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 60%;
    height: 60%;
    border: 1.5px solid var(--gold);
    border-radius: 6px;
    z-index: -1;
    opacity: 0.4;
}

.about__content .section-label { margin-top: 0.5rem; }

.about__text {
    font-size: 0.92rem;
    color: var(--dim);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.about__text strong {
    color: var(--navy);
    font-weight: 500;
}

.about__signature {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold);
    margin-top: 1.5rem;
}

/* Stats */
.stats {
    max-width: var(--max-w);
    margin: 4rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    padding: 3rem 2rem;
    background: var(--bg-warm);
    border-radius: 8px;
}

.stats__item {
    text-align: center;
}

.stats__number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    display: inline;
}

.stats__plus {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: var(--gold);
}

.stats__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--dim);
    letter-spacing: 0.04em;
    margin-top: 0.3rem;
}

.stats__divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}


/* ═══════════════ SERVICES ═══════════════ */

.services {
    padding: 6rem clamp(1.5rem, 4vw, 3rem);
    background: var(--bg);
}

.services__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    text-align: left;
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    border-radius: 0 0 3px 0;
    transition: height 0.4s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 42, 58, 0.06);
    border-color: rgba(184, 134, 11, 0.15);
}

.service-card:hover::before {
    height: 100%;
}

.service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
    border-radius: 8px;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.service-card__text {
    font-size: 0.82rem;
    color: var(--dim);
    line-height: 1.7;
}


/* ═══════════════ BEWERTUNG / WIZARD ═══════════════ */

.bewertung {
    padding: 6rem clamp(1.5rem, 4vw, 3rem);
    background: var(--bg-light);
}

.bewertung__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.bewertung__intro {
    font-size: 0.92rem;
    color: var(--dim);
    margin-bottom: 2.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.wizard {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    text-align: left;
}

.wizard__progress {
    height: 4px;
    background: rgba(26, 42, 58, 0.06);
    position: relative;
}

.wizard__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 14.28%;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0 2px 2px 0;
}

.wizard__step-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dim);
    padding: 1.2rem 2rem 0;
}

.wizard__body {
    padding: 1.5rem 2rem 2rem;
    min-height: 280px;
}

.wizard__body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.wizard__nav {
    display: flex;
    justify-content: space-between;
    padding: 0 2rem 2rem;
}

/* Wizard option cards */
.wz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.8rem;
}

.wz-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.2rem 0.8rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
    text-align: center;
}

.wz-option:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.wz-option.selected {
    border-color: var(--gold);
    background: var(--gold-pale);
    transform: scale(1.02);
}

.wz-option svg {
    color: var(--dim);
    transition: color 0.25s;
}

.wz-option.selected svg,
.wz-option:hover svg {
    color: var(--gold);
}

.wz-option__label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--navy);
}

/* Wizard form inputs */
.wz-input-group {
    margin-bottom: 1rem;
}

.wz-input-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--dim);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.wz-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--navy);
    background: var(--bg);
    transition: border-color 0.25s;
    outline: none;
}

.wz-input:focus {
    border-color: var(--gold);
}

.wz-input::placeholder {
    color: #b0b8c4;
}

.wz-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Wizard checkboxes */
.wz-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.wz-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.8rem;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
    font-size: 0.82rem;
    color: var(--text);
}

.wz-check:hover {
    border-color: var(--gold);
}

.wz-check.checked {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.wz-check__box {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.wz-check.checked .wz-check__box {
    background: var(--gold);
    border-color: var(--gold);
}

.wz-check.checked .wz-check__box svg {
    opacity: 1;
}

.wz-check__box svg {
    opacity: 0;
    transition: opacity 0.2s;
}

/* Wizard result */
.wz-result {
    text-align: center;
    padding: 1rem 0;
}

.wz-result__value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    margin: 1rem 0 0.5rem;
}

.wz-result__range {
    font-size: 0.85rem;
    color: var(--dim);
    margin-bottom: 1.5rem;
}

.wz-result__disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.6;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 1.5rem;
}

.wz-result__cta {
    margin-top: 1.5rem;
}


/* ═══════════════ TRUST ═══════════════ */

.trust {
    padding: 6rem clamp(1.5rem, 4vw, 3rem);
    background: var(--bg-warm);
}

.trust__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.trust-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 16px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.trust-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
    border-radius: 50%;
    color: var(--gold);
    margin-bottom: 1rem;
}

.trust-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.trust-card__text {
    font-size: 0.82rem;
    color: var(--dim);
    line-height: 1.7;
}

.trust__badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--navy);
}

.trust-badge svg {
    color: var(--gold);
    flex-shrink: 0;
}


/* ═══════════════ KONTAKT ═══════════════ */

.kontakt {
    padding: 6rem clamp(1.5rem, 4vw, 3rem);
    background: var(--bg);
}

.kontakt__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.kontakt__text {
    font-size: 0.92rem;
    color: var(--dim);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.kontakt__buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.kontakt-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kontakt-btn:hover {
    transform: translateY(-2px);
}

.kontakt-btn--whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}
.kontakt-btn--whatsapp:hover {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.kontakt-btn--phone {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 4px 16px rgba(26, 42, 58, 0.2);
}
.kontakt-btn--phone:hover {
    box-shadow: 0 8px 24px rgba(26, 42, 58, 0.3);
}

.kontakt-btn--email {
    background: var(--bg-warm);
    color: var(--navy);
    border: 1px solid var(--border);
}
.kontakt-btn--email:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

/* Contact form */
.kontakt-form {
    background: var(--bg-warm);
    padding: 2rem;
    border-radius: 12px;
}

.kontakt-form__group {
    margin-bottom: 1rem;
}

.kontakt-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.kontakt-form__input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--navy);
    background: #fff;
    transition: border-color 0.25s;
    outline: none;
}

.kontakt-form__input:focus {
    border-color: var(--gold);
}

.kontakt-form__input::placeholder {
    color: #b0b8c4;
}

.kontakt-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' fill='none' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.kontakt-form__textarea {
    resize: vertical;
    min-height: 100px;
}


/* ═══════════════ FOOTER ═══════════════ */

.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding: 3rem clamp(1.5rem, 4vw, 3rem) 1.5rem;
}

.footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}

.footer__brand svg { color: var(--gold-light); }

.footer__social {
    display: flex;
    gap: 1.2rem;
}

.footer__social a {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s;
}
.footer__social a:hover { color: var(--gold-light); }

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

.footer__copy {
    max-width: var(--max-w);
    margin: 1.5rem auto 0;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    text-align: center;
}


/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust__grid .trust-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root { --nav-h: 68px; }

    .nav { grid-template-columns: auto 1fr auto; }
    .nav__icon { width: 26px; height: 26px; }
    .nav__logo-text { font-size: 0.5rem; letter-spacing: 0.14em; }
    .nav__logo { gap: 0.05rem; justify-self: center; }

    .nav__left,
    .nav__right {
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.8rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-110%);
        transition: transform 0.35s ease;
        z-index: 999;
    }
    .nav__left { display: none; }
    .nav__right { display: none; }
    .nav__left.nav__links--open,
    .nav__right.nav__links--open {
        display: flex;
        transform: translateY(0);
    }
    .nav__burger { display: flex; }

    .hero__title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about__img {
        max-width: 320px;
        margin: 0 auto;
        aspect-ratio: 1/1;
        object-position: center 20%;
    }
    .about__portrait-accent { display: none; }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .stats__divider {
        width: 60px;
        height: 1px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .trust__grid {
        grid-template-columns: 1fr;
    }
    .trust__grid .trust-card:last-child {
        max-width: none;
    }

    .kontakt__inner {
        grid-template-columns: 1fr;
    }
    .kontakt-form__row {
        grid-template-columns: 1fr;
    }

    .wizard__body {
        padding: 1.5rem 1.2rem 1.5rem;
    }
    .wizard__nav {
        padding: 0 1.2rem 1.5rem;
    }
    .wz-options {
        grid-template-columns: repeat(2, 1fr);
    }
    .wz-row {
        grid-template-columns: 1fr;
    }
    .wz-checks {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__ctas {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .hero__ctas .btn { width: 100%; }
    .hero__tags span { font-size: 0.6rem; padding: 0.25rem 0.7rem; }
    .trust__badges { flex-direction: column; align-items: center; }
}
