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

:root {
    --gold:    #b39a6a;
    --gold-lt: rgba(179,154,106,0.12);
    --teal:    #4BBFAD;
    --teal-lt: rgba(75,191,173,0.10);
    --coral:   #FF7F50;
    --dark:    #1a1a1a;
    --mid:     #555555;
    --light:   #f8f9fa;
    --border:  #e9ecef;
    --white:   #ffffff;
    --red:     #dc3545;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --shadow-sm:  0 4px 12px rgba(0,0,0,0.05);
    --shadow-md:  0 8px 28px rgba(0,0,0,0.08);
    --shadow-lg:  0 16px 48px rgba(0,0,0,0.12);
    --radius:     16px;
    --radius-lg:  24px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===================================================
   SHARED UTILITIES
=================================================== */
.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
}
.eyebrow--gold  { color: var(--gold);  background: var(--gold-lt);  border: 1px solid rgba(179,154,106,0.2); }
.eyebrow--teal  { color: var(--teal);  background: var(--teal-lt);  border: 1px solid rgba(75,191,173,0.2); }
.eyebrow--coral { color: var(--coral); background: rgba(255,127,80,0.08); border: 1px solid rgba(255,127,80,0.2); }
.eyebrow--red   { color: var(--red);   background: rgba(220,53,69,0.08);  border: 1px solid rgba(220,53,69,0.15); }
.eyebrow--grey  { color: #888;         background: #f5f5f5;              border: 1px solid #e9ecef; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--mid);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 36px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.28s ease;
}
.btn--dark  { background: var(--dark); color: #fff; box-shadow: 0 6px 20px rgba(26,26,26,0.2); }
.btn--dark:hover  { background: #000; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.3); }
.btn--teal  { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--teal:hover  { background: var(--teal-lt); transform: translateY(-2px); }
.btn--coral { background: var(--coral); color: #fff; box-shadow: 0 6px 20px rgba(255,127,80,0.3); }
.btn--coral:hover { background: #ff6838; transform: translateY(-2px); }

/* ===================================================
   1. HERO
=================================================== */
.hero-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute; inset: 0; z-index: 1;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}

.hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(
        105deg,
        rgba(255,255,255,0.97) 0%,
        rgba(255,255,255,0.92) 42%,
        rgba(255,255,255,0.82) 68%,
        rgba(255,255,255,0.55) 100%
    );
}

.hero-content {
    position: relative; z-index: 10;
    width: 100%; max-width: 1400px;
    margin: 0 auto;
    padding: clamp(60px,8vh,100px) clamp(20px,4vw,70px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-content { grid-template-columns: 55% 45%; }
}

/* Hero Left */
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -2px;
    margin-bottom: 24px;
}
.hero-headline em {
    color: var(--gold);
    font-style: italic;
    display: block;
    font-size: clamp(44px, 6.5vw, 72px);
}

.hero-sub {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    padding: 28px 0;
    border-top: 1px solid rgba(0,0,0,0.09);
    border-bottom: 1px solid rgba(0,0,0,0.09);
    margin-bottom: 36px;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: var(--teal);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-lbl {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #777;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Hero Right */
.hero-right { display: flex; flex-direction: column; gap: 22px; }

.hero-card {
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(75,191,173,0.12);
}
.hero-card-eyebrow {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold); text-align: center; margin-bottom: 8px;
}
.hero-card-title {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    text-align: center; margin-bottom: 24px;
}

.hero-list { list-style: none; margin-bottom: 24px; }
.hero-list li {
    display: flex; gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 14px; color: #333; line-height: 1.5;
}
.hero-list li:last-child { border-bottom: none; }
.hero-list .check { color: var(--teal); flex-shrink: 0; margin-top: 2px; font-size: 15px; }
.hero-list strong { font-weight: 700; color: var(--dark); }

.hero-card-cta {
    display: block; width: 100%;
    padding: 16px; background: var(--dark); color: #fff;
    text-align: center; font-size: 13px; font-weight: 700;
    letter-spacing: 0.8px; text-transform: uppercase;
    border-radius: 10px; text-decoration: none;
    transition: all 0.3s ease;
}
.hero-card-cta:hover { background: #000; }
.hero-card-note { text-align: center; font-size: 11px; color: #aaa; margin-top: 10px; }

/* Live Feed */
.hero-live {
    background: rgba(255,255,255,0.94);
    border-radius: var(--radius);
    padding: 22px 20px;
    box-shadow: var(--shadow-sm);
}
.live-header {
    display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.live-dot {
    width: 8px; height: 8px;
    background: var(--gold); border-radius: 50%;
    animation: livePulse 2s infinite;
}
@keyframes livePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(179,154,106,0.7); }
    50%      { box-shadow: 0 0 0 7px rgba(179,154,106,0); }
}
.live-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #444; }

.live-items { display: flex; flex-direction: column; gap: 10px; }
.live-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; background: #f8f9fa; border-radius: 10px;
}
.live-icon {
    width: 32px; height: 32px;
    border: 2px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; flex-shrink: 0;
}
.live-text { flex: 1; font-size: 12px; color: #333; font-weight: 500; }
.live-time { font-size: 10px; color: var(--gold); font-weight: 600; }

/* ===================================================
   2. TRUST BAR
=================================================== */
.trust-section {
    background: var(--white);
    padding: clamp(48px,6vw,70px) 20px;
    border-bottom: 1px solid var(--border);
}
.trust-container { max-width: 1200px; margin: 0 auto; }
.trust-header { text-align: center; margin-bottom: 48px; }
.trust-title { font-family: var(--font-display); font-size: clamp(26px,4vw,34px); font-weight: 700; color: #333; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md), 0 0 0 1px rgba(197,165,90,0.18); }

/* DIID — Gold-Variante */
.trust-card--diid {
    background: linear-gradient(135deg, #f9f4eb 0%, #f0e8d4 100%);
    border: 1px solid rgba(197,165,90,0.3);
}
.trust-card--diid .trust-card-img-wrap { background: linear-gradient(135deg, #f5eed8 0%, #ece0bf 100%); }
.trust-card--diid .trust-card-ov { background: linear-gradient(to top, rgba(197,165,90,0.55) 0%, rgba(197,165,90,0.25) 70%, transparent 100%); }
.trust-card--diid .trust-ov-year { color: #5a4a2a; font-weight: 700; }
.trust-card--diid .trust-card-info { background: #ffffff; border-top: 1px solid rgba(197,165,90,0.2); }
.trust-card--diid .trust-info-name { color: #5a4a2a; }
.trust-card--diid .trust-info-sub  { color: #8a6a2a; }

/* Seitliche Gold-Overlays für linke + rechte Kachel */
.trust-card--left  { position: relative; }
.trust-card--right { position: relative; }
.trust-card--left::before {
    content: ''; position: absolute; inset: 0; right: auto;
    width: 56px; pointer-events: none; z-index: 2;
    background: linear-gradient(to right, rgba(197,165,90,0.10) 0%, transparent 100%);
    border-radius: var(--radius) 0 0 var(--radius);
    transition: opacity 0.3s ease;
}
.trust-card--right::after {
    content: ''; position: absolute; inset: 0; left: auto;
    width: 56px; pointer-events: none; z-index: 2;
    background: linear-gradient(to left, rgba(197,165,90,0.10) 0%, transparent 100%);
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: opacity 0.3s ease;
}
.trust-card--left:hover::before  { background: linear-gradient(to right, rgba(197,165,90,0.18) 0%, transparent 100%); }
.trust-card--right:hover::after  { background: linear-gradient(to left,  rgba(197,165,90,0.18) 0%, transparent 100%); }
.trust-card-img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #f8f3e9;
    text-align: center;
}
.trust-card-img-wrap > img { max-height: 140px; max-width: 180px; object-fit: contain; }
.trust-card-ov {
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(197,165,90,0.55) 0%, rgba(197,165,90,0.25) 70%, transparent 100%);
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: flex-end;
    padding: 18px 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.trust-card:hover .trust-card-ov { opacity: 1; }
@media (max-width: 768px) { .trust-card-ov { opacity: 1; height: 45%; } }
.trust-ov-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.trust-ov-role { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--teal); margin-bottom: 8px; }
.trust-ov-desc { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.trust-card-info {
    padding: 16px 20px;
    border-top: 1px solid rgba(197,165,90,0.15);
    background: #ffffff;
}
.trust-info-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 2px; }
.trust-info-sub { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); }
.trust-card img { max-height: 130px; max-width: 170px; object-fit: contain; margin-bottom: 14px; }

.trust-card--special { border-top: 4px solid var(--gold); }
.trust-icon-circle {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--gold), #f0e68c);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.trust-icon-circle svg { width: 24px; height: 24px; fill: #fff; }
.trust-card-label { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #333; margin-bottom: 4px; }
.trust-card-sub   { font-size: 10px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.trust-quote { font-style: italic; color: #555; font-size: 15px; line-height: 1.5; margin-bottom: 6px; font-family: var(--font-display); }
.trust-meta  { font-size: 11px; color: #999; }
.trust-rating { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 14px; }
.trust-rating img { height: 18px; }
.trust-stars { color: #FDB300; font-size: 16px; letter-spacing: 2px; }
.trust-count { font-size: 11px; color: #666; font-weight: 600; }

/* ===================================================
   3. FAQ / RISIKEN
=================================================== */
.faq-section {
    background: var(--light);
    padding: clamp(70px,8vw,100px) 20px;
    border-top: 1px solid var(--border);
}
.faq-container { max-width: 920px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 48px; }

.faq-intro-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.faq-intro-text { font-size: 16px; color: #333; line-height: 1.8; margin-bottom: 18px; }
.faq-intro-text strong { color: var(--red); }
.faq-highlight {
    background: rgba(220,53,69,0.04);
    border-left: 4px solid var(--red);
    padding: 18px 22px; border-radius: 8px;
    font-size: 15px; color: #555; line-height: 1.7; font-weight: 500;
}

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
    padding: 22px 26px;
    cursor: pointer;
    display: flex; align-items: center;
    justify-content: space-between; gap: 18px;
}
.faq-question:hover { background: #fdfdfd; }
.faq-q-left { flex: 1; display: flex; align-items: center; gap: 14px; }
.faq-num {
    width: 32px; height: 32px; flex-shrink: 0;
    background: rgba(220,53,69,0.1);
    color: var(--red);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 14px;
}
.faq-q-text { font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.35; }
.faq-toggle {
    width: 28px; height: 28px; flex-shrink: 0;
    background: var(--light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #999;
    transition: all 0.3s ease;
}
.faq-item.open .faq-toggle { background: var(--red); color: #fff; transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer-inner { padding: 0 26px 26px; }

.faq-impact {
    background: rgba(220,53,69,0.04);
    border-radius: 10px; padding: 18px 22px; margin-bottom: 18px;
}
.faq-impact-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 10px; }
.faq-impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 500px) { .faq-impact-grid { grid-template-columns: 1fr; } }
.faq-impact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--red); }

.faq-solution { font-size: 15px; color: #333; line-height: 1.7; margin-bottom: 16px; }
.faq-result {
    background: rgba(75,191,173,0.06);
    border-left: 3px solid var(--teal);
    border-radius: 8px; padding: 16px 20px;
}
.faq-result p { font-size: 14px; color: #444; line-height: 1.65; }
.faq-result strong { color: var(--teal); }

/* ===================================================
   4. RECHNER PLATZHALTER
=================================================== */
#immobilien-rechner {
    background: var(--white);
    padding: clamp(60px,6vw,90px) 20px;
    border-top: 1px solid var(--border);
}
/* Rechner-Inhalt wird nach Lieferung der Datei eingesetzt */
.rechner-placeholder {
    max-width: 900px; margin: 0 auto; text-align: center;
    padding: 60px 40px;
    background: var(--light);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
}
.rechner-placeholder p { color: #888; font-size: 16px; }

/* ===================================================
   5. CTA BANNER
=================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    padding: clamp(55px,6vw,80px) 20px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-container { max-width: 1000px; margin: 0 auto; }
.cta-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(44px,6vw,64px) clamp(28px,5vw,56px);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(75,191,173,0.14);
    position: relative; overflow: hidden;
    text-align: center;
}
.cta-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px,5vw,40px);
    font-weight: 700; margin-bottom: 16px; line-height: 1.25;
}
.cta-sub { font-size: 17px; color: var(--mid); line-height: 1.7; margin-bottom: 36px; max-width: 620px; margin-left: auto; margin-right: auto; }

.cta-benefits {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 28px; margin-bottom: 40px;
    padding: 26px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cta-benefit { display: flex; align-items: center; gap: 10px; }
.cta-benefit-icon {
    width: 28px; height: 28px;
    background: var(--teal-lt); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 13px; font-weight: 900;
}
.cta-benefit-text { font-size: 14px; font-weight: 600; color: #333; }
.cta-note { font-size: 13px; color: #aaa; margin-top: 18px; }
.cta-note strong { color: var(--teal); }

/* ===================================================
   6. QUIZ
=================================================== */
.quiz-section {
    background: var(--white);
    padding: clamp(70px,8vw,96px) 20px;
    border-top: 1px solid var(--border);
}
.quiz-container { max-width: 820px; margin: 0 auto; }
.quiz-header { text-align: center; margin-bottom: 44px; }

.quiz-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: clamp(32px,4vw,48px) clamp(24px,4vw,44px);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.quiz-progress { margin-bottom: 32px; }
.quiz-progress-row {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
}
.quiz-progress-lbl, .quiz-progress-cnt { font-size: 12px; font-weight: 700; color: #777; }
.quiz-progress-cnt { color: var(--gold); }
.quiz-bar-bg { height: 7px; background: var(--border); border-radius: 10px; overflow: hidden; }
.quiz-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--coral), var(--gold));
    border-radius: 10px;
    transition: width 0.4s ease;
}

.quiz-q { display: none; }
.quiz-q.active { display: block; animation: qIn 0.35s ease; }
@keyframes qIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform:none; } }
.quiz-q-title { font-size: clamp(18px,2.5vw,23px); font-weight: 700; color: var(--dark); margin-bottom: 22px; line-height: 1.4; }

.quiz-options { display: flex; flex-direction: column; gap: 11px; }
.quiz-opt {
    padding: 17px 22px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 13px;
    cursor: pointer;
    font-size: 15px; font-weight: 600; color: #333;
    display: flex; align-items: center; gap: 14px;
    transition: all 0.25s ease;
}
.quiz-opt:hover { border-color: var(--gold); background: #fdfbf7; transform: translateX(4px); }
.quiz-opt.selected { border-color: var(--gold); background: #fdfbf7; box-shadow: 0 3px 12px rgba(179,154,106,0.15); }
.quiz-opt-radio {
    width: 26px; height: 26px; flex-shrink: 0;
    border: 2px solid var(--border); border-radius: 50%;
    position: relative; transition: all 0.25s;
}
.quiz-opt.selected .quiz-opt-radio {
    border-color: var(--gold); background: var(--gold);
}
.quiz-opt.selected .quiz-opt-radio::after {
    content: '✓';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    color: #fff; font-size: 13px; font-weight: 900;
}

.quiz-nav { margin-top: 28px; display: flex; justify-content: flex-end; }
.quiz-btn-next {
    padding: 15px 36px;
    background: var(--dark); color: #fff;
    border: none; border-radius: 10px;
    font-size: 14px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s ease;
}
.quiz-btn-next:hover:not(:disabled) { background: #000; transform: translateY(-2px); }
.quiz-btn-next:disabled { background: #ccc; cursor: not-allowed; }

.quiz-results { display: none; text-align: center; }
.quiz-results.active { display: block; animation: qIn 0.5s ease; }
.quiz-score-ring {
    width: 140px; height: 140px; margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--gold));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 32px rgba(255,127,80,0.28);
}
.quiz-score-val { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: #fff; }
.quiz-res-title { font-family: var(--font-display); font-size: 30px; font-weight: 700; margin-bottom: 14px; }
.quiz-res-text  { font-size: 16px; color: var(--mid); line-height: 1.7; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===================================================
   7. USP
=================================================== */
.usp-section {
    background: var(--white);
    padding: clamp(70px,8vw,100px) 20px;
    border-top: 1px solid var(--border);
}
.usp-container { max-width: 1300px; margin: 0 auto; }
.usp-header { text-align: center; margin-bottom: 56px; }

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 32px;
}
.usp-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: clamp(32px,4vw,44px) clamp(24px,3vw,36px);
    border: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: all 0.4s ease;
}
.usp-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
}
.usp-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.usp-card:hover::before { transform: scaleX(1); }

.usp-icon {
    width: 60px; height: 60px;
    background: var(--white);
    border: 2px solid rgba(75,191,173,0.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(26,26,26,0.18);
}
.usp-icon svg { width: 30px; height: 30px; fill: var(--teal); }

.usp-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; color: var(--dark); }
.usp-card-desc  { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 22px; }

.usp-features { list-style: none; }
.usp-feature {
    display: flex; align-items: flex-start; gap: 11px;
    padding: 9px 0; border-bottom: 1px solid var(--border);
    font-size: 14px; color: #555; line-height: 1.5;
}
.usp-feature:last-child { border-bottom: none; }
.usp-feature-dot {
    flex-shrink: 0; width: 20px; height: 20px;
    background: var(--teal); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.usp-feature-dot::before { content: '✓'; color: #fff; font-size: 11px; font-weight: 900; }
.usp-feature strong { font-weight: 700; color: var(--dark); }

/* ===================================================
   8. TESTIMONIALS
=================================================== */
.testimonials-section {
    background: #fdfdfd;
    padding: clamp(70px,8vw,100px) 20px;
    border-top: 1px solid var(--border);
}
.testimonials-container { max-width: 1300px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-divider {
    width: 56px; height: 3px;
    background: var(--teal);
    margin: 0 auto 22px; border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px,1fr));
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid;
    transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card:nth-child(1) { border-bottom-color: var(--teal); }
.testimonial-card:nth-child(2) { border-bottom-color: var(--dark); }
.testimonial-card:nth-child(3) { border-bottom-color: #d9534f; }

.testimonial-video { width: 100%; background: #000; display: block; }
.testimonial-body { padding: 24px 22px; }
.testimonial-badge {
    display: inline-block; padding: 5px 13px;
    border-radius: 6px; font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: #fff; margin-bottom: 12px;
}
.testimonial-card:nth-child(1) .testimonial-badge { background: var(--teal); }
.testimonial-card:nth-child(2) .testimonial-badge { background: var(--dark); }
.testimonial-card:nth-child(3) .testimonial-badge { background: #d9534f; }
.testimonial-card-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.testimonial-meta { font-size: 12px; color: #999; margin-bottom: 10px; font-weight: 500; }
.testimonial-desc { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* ===================================================
   9. TEAM
=================================================== */
.team-section {
    background: var(--white);
    padding: clamp(70px,8vw,100px) 20px;
    border-top: 1px solid var(--border);
}
.team-container { max-width: 1200px; margin: 0 auto; }
.team-header { text-align: center; margin-bottom: 56px; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 32px;
}
.team-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.team-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 420px;
}
.team-card img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top;
    transition: transform 0.5s ease;
    display: block;
}
.team-card:hover img { transform: scale(1.04); }

/* Teal overlay on hover */
.team-card-overlay {
    position: absolute; left: 0; right: 0; bottom: 0;
    top: auto; height: 50%;
    background: linear-gradient(to top, rgba(30,41,59,0.95) 0%, rgba(30,41,59,0.75) 70%, transparent 100%);
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: flex-end;
    padding: 24px 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.team-card:hover .team-card-overlay { opacity: 1; }

.team-overlay-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 2px; line-height: 1.2; }
.team-overlay-role { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--teal); margin-bottom: 10px; }
.team-overlay-exp  { font-size: 13px; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.team-overlay-contact { font-size: 12px; color: rgba(255,255,255,0.75); margin-bottom: 3px; }
@media (max-width: 768px) {
    .team-card-img-wrap { height: 340px; }
    .team-card-overlay { opacity: 1; height: 45%; }
}
/* Bottom bar visible always */
.team-info {
    padding: 20px 22px;
    text-align: left;
    background: var(--light);
    border-top: 1px solid var(--border);
}
.team-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 2px; }
.team-role { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); }


/* ===================================================
   10. CALENDLY + KONTAKT
=================================================== */
#termin-buchung {
    background: #f9f9f9;
    padding: clamp(60px,7vw,90px) 20px;
}
.calendly-container { max-width: 920px; margin: 0 auto; }
.calendly-header { text-align: center; margin-bottom: 38px; }
.calendly-title { font-family: var(--font-display); font-size: clamp(26px,4vw,38px); font-weight: 700; margin-bottom: 12px; }
.calendly-sub   { font-size: 17px; color: var(--mid); max-width: 560px; margin: 0 auto; line-height: 1.6; }

.calendly-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-top: 6px solid var(--teal);
    overflow: hidden;
    margin-bottom: 20px;
}

.divider-badge {
    text-align: center; margin: -10px 0 20px;
}
.divider-badge-inner {
    background: #f9f9f9;
    display: inline-block; padding: 9px 20px;
    border-radius: 50px; border: 1px solid #ddd;
    font-size: 12px; font-weight: 700; color: #999;
    letter-spacing: 1px; text-transform: uppercase;
}

.toggle-form-btn {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    width: 100%; max-width: 420px;
    margin: 0 auto 20px;
    padding: 15px 28px;
    background: var(--white); color: #555;
    border: 1px solid #ddd; border-radius: 12px;
    font-size: 13px; font-weight: 600; text-transform: none; letter-spacing: 0;
    cursor: pointer; transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.toggle-form-btn::before { content: "✉"; font-size: 15px; color: #aaa; transition: color 0.3s; }
.toggle-form-btn:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(75,191,173,0.1); }
.toggle-form-btn:hover::before { color: var(--teal); }
.toggle-form-btn.active { border-color: var(--teal); color: var(--teal); background: rgba(75,191,173,0.03); }

.contact-form-wrap {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s ease;
}
.contact-form-wrap.open { max-height: 900px; }
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-top: 6px solid var(--teal);
}
.contact-form-inner { padding: clamp(32px,4vw,48px) clamp(20px,4vw,40px); }
.form-head { text-align: center; margin-bottom: 28px; }
.form-head h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.form-head p  { font-size: 13px; color: #999; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 580px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1/-1; }
.form-field label { font-size: 12px; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: 0.5px; }
.form-field input,
.form-field textarea,
.form-field select {
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 14px; font-family: var(--font-body);
    background: var(--light);
    color: var(--dark);
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 3px 10px rgba(75,191,173,0.1); }
.form-field textarea { resize: vertical; min-height: 110px; }

.form-submit {
    width: 100%; margin-top: 16px;
    padding: 17px; background: var(--dark); color: #fff;
    border: none; border-radius: 12px;
    font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: all 0.3s ease;
}
.form-submit:hover { background: #000; transform: translateY(-2px); }

.form-message { display: none; margin-top: 16px; padding: 14px 18px; border-radius: 10px; font-size: 14px; font-weight: 600; }
.form-message.success { background: rgba(75,191,173,0.1); color: var(--teal); border: 1px solid rgba(75,191,173,0.3); }
.form-message.error   { background: rgba(220,53,69,0.08); color: var(--red);  border: 1px solid rgba(220,53,69,0.2); }

.contact-info-bar {
    text-align: center; margin-top: 24px;
    padding-top: 22px; border-top: 1px solid var(--border);
    font-size: 13px; color: var(--mid);
}
.contact-info-bar strong { color: var(--dark); }

/* ===================================================
   11. EXIT-INTENT POPUP
=================================================== */
.exit-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.82);
    z-index: 99999;
    display: none; align-items: center; justify-content: center;
}
.exit-overlay.active { display: flex; animation: fadeIn 0.3s ease; }

.exit-popup {
    position: relative;
    background: var(--white); border-radius: var(--radius-lg);
    max-width: 560px; width: 92%;
    max-height: 90vh; overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0,0,0,0.55);
}

/* Dark header – black with gold + teal accents */
.exit-header {
    padding: 40px 40px 36px;
    background: var(--dark);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
    border-bottom: 3px solid var(--teal);
}
.exit-header-eyebrow {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2.5px; color: var(--teal);
    margin-bottom: 12px; display: block;
}
.exit-header-title {
    font-family: var(--font-display);
    font-size: clamp(24px,4vw,32px);
    font-weight: 700; color: var(--white);
    line-height: 1.2;
}
.exit-header-title em { color: var(--gold); font-style: italic; }

.exit-close {
    position: absolute; top: 16px; right: 16px;
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%; color: rgba(255,255,255,0.6);
    font-size: 18px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; z-index: 10;
}
.exit-close:hover { background: rgba(255,255,255,0.15); color: #fff; transform: rotate(90deg); }

.exit-body { padding: clamp(28px,4vw,44px) clamp(24px,4vw,40px); }

.exit-subtitle {
    font-size: 16px; color: #444; text-align: center;
    margin-bottom: 30px; line-height: 1.65; font-weight: 400;
}
.exit-subtitle strong { color: var(--dark); font-weight: 700; }

.exit-benefits { margin-bottom: 30px; }
.exit-benefit {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 15px 0; border-bottom: 1px solid #f0f0f0;
}
.exit-benefit:last-child { border-bottom: none; }
.exit-benefit-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--dark); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 16px; font-weight: 900;
}
.exit-benefit-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.exit-benefit-desc  { font-size: 12px; color: #777; line-height: 1.5; }

/* Form */
.exit-form-field {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px; font-family: var(--font-body);
    background: var(--light); color: var(--dark);
    transition: all 0.3s ease; outline: none;
}
.exit-form-field:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 3px 10px rgba(75,191,173,0.1); }

.exit-submit {
    width: 100%; margin-top: 14px;
    padding: 17px; border: none; border-radius: 10px;
    background: var(--dark); color: #fff;
    font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: all 0.3s ease;
}
.exit-submit:hover { background: #000; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.22); }

.exit-trust-row {
    text-align: center; font-size: 11px; color: #bbb;
    margin-top: 18px; padding-top: 16px; border-top: 1px solid #f0f0f0;
    letter-spacing: 0.3px;
}
.exit-trust-row span { color: var(--teal); font-weight: 700; }

/* Success state */
.exit-success { display: none; padding: clamp(36px,4vw,56px) clamp(24px,4vw,40px); text-align: center; }
.exit-success.active { display: block; }

.exit-success-check {
    width: 72px; height: 72px; margin: 0 auto 24px;
    background: var(--dark); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.exit-success-check svg { width: 36px; height: 36px; }

.exit-success-title {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 700; color: var(--dark);
    margin-bottom: 10px;
}
.exit-success-sub {
    font-size: 15px; color: var(--mid); line-height: 1.6; margin-bottom: 32px;
}
.exit-dl-list { display: flex; flex-direction: column; gap: 10px; }
.exit-dl-btn {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 22px;
    background: var(--light); border: 1px solid var(--border);
    border-radius: 10px; text-decoration: none;
    font-size: 14px; font-weight: 600; color: var(--dark);
    transition: all 0.3s ease; text-align: left;
}
.exit-dl-btn:hover { background: var(--white); border-color: var(--teal); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.exit-dl-btn-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--teal); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px;
}
.exit-dl-btn-text { flex: 1; }
.exit-dl-btn-label { font-size: 13px; font-weight: 700; color: var(--dark); }
.exit-dl-btn-sub   { font-size: 11px; color: var(--mid); margin-top: 1px; }
.exit-dl-btn-arrow { color: var(--teal); font-size: 16px; }

/* ===================================================
   12. STICKY BANNER + WHATSAPP
=================================================== */
.sticky-banner {
    position: fixed; bottom: 28px; right: 106px;
    background: var(--dark); color: #fff;
    padding: 15px 26px; border-radius: 10px;
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    cursor: pointer; z-index: 9998;
    display: none; border: none;
    box-shadow: 0 6px 24px rgba(26,26,26,0.3);
    transition: all 0.3s ease;
}
.sticky-banner.visible { display: block; animation: slideRight 0.4s ease; }
@keyframes slideRight {
    from { opacity:0; transform: translateX(18px); }
    to   { opacity:1; transform: none; }
}
.sticky-banner:hover { background: #000; transform: translateY(-2px); }

.whatsapp-btn {
    position: fixed; bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    z-index: 9999; text-decoration: none;
    animation: waPulse 2s infinite;
    transition: all 0.3s ease;
}
@keyframes waPulse {
    0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
    50%      { box-shadow: 0 6px 24px rgba(37,211,102,0.55), 0 0 0 14px rgba(37,211,102,0.18); }
}
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }

/* ===================================================
   RESPONSIVE OVERRIDES
=================================================== */
@media (max-width: 768px) {
    .hero-stats { grid-template-columns: 1fr; gap: 14px; }
    .hero-ctas  { flex-direction: column; }
    .hero-ctas .btn { text-align: center; }

    .trust-grid        { grid-template-columns: 1fr; }
    .usp-grid          { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .team-grid         { grid-template-columns: 1fr; }

    .cta-benefits { flex-direction: column; align-items: center; gap: 14px; }

    .sticky-banner { right: auto; left: 16px; bottom: 90px; font-size: 12px; padding: 13px 18px; }
    .whatsapp-btn  { width: 52px; height: 52px; bottom: 20px; right: 20px; }

    .team-card img { height: 340px; }
}

/* ============================================================
   STICKY HEADER
============================================================ */
:root { --header-h: 106px; }
body { padding-top: var(--header-h); }

.site-header {
    position: fixed; top:0; left:0; right:0;
    height: var(--header-h);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    z-index: 9500;
    transition: box-shadow 0.3s ease;
    display: flex; flex-direction: column;
}
.site-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.09); }

.header-inner {
    max-width: 1400px; margin: 0 auto;
    padding: 0 clamp(16px,3vw,48px);
    height: 70px; width: 100%;
    display: flex; align-items: center;
    justify-content: space-between; gap: 20px;
}

.header-logo { display:flex; align-items:center; text-decoration:none; flex-shrink:0; }
.header-logo img { height: 40px; width: auto; display: block; }

.header-nav-ul { display:flex; align-items:center; gap:2px; list-style:none; margin:0; padding:0; }
.header-nav-ul li a {
    display:block; padding: 9px 13px;
    font-size:13px; font-weight:600; color:#333;
    text-decoration:none; border-radius:8px;
    transition: all 0.22s ease; white-space:nowrap;
}
.header-nav-ul li a:hover,
.header-nav-ul li a.h-active { background:rgba(75,191,173,0.09); color:#4BBFAD; }

.header-right { display:flex; align-items:center; gap:14px; flex-shrink:0; }
.header-phone {
    font-size:13px; font-weight:600; color:#555;
    text-decoration:none; white-space:nowrap;
    display:none;
}
.header-phone:hover { color:#1a1a1a; }
.header-cta-btn {
    display:inline-flex; align-items:center;
    padding: 11px 22px;
    background: #1a1a1a; color:#fff;
    font-size:12px; font-weight:700;
    text-transform:uppercase; letter-spacing:0.8px;
    border-radius:8px; text-decoration:none;
    transition: all 0.25s ease; white-space:nowrap;
    border:none; cursor:pointer;
}
.header-cta-btn:hover { background:#000; transform:translateY(-1px); box-shadow:0 6px 20px rgba(0,0,0,0.2); }

/* Hamburger */
.hamburger-btn {
    display:none; flex-direction:column; justify-content:center; gap:5px;
    width:38px; height:38px; padding:7px;
    background:none; border:none; cursor:pointer; flex-shrink:0;
}
.hamburger-btn span {
    display:block; width:22px; height:2px;
    background:#1a1a1a; border-radius:2px;
    transition: all 0.3s ease; transform-origin:center;
}
.hamburger-btn.hb-open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger-btn.hb-open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger-btn.hb-open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.mobile-drawer {
    position:fixed; top:var(--header-h); left:0; right:0;
    background:#fff; border-bottom:1px solid #eee;
    box-shadow: 0 14px 40px rgba(0,0,0,0.1);
    z-index:9400; max-height:0; overflow:hidden;
    transition: max-height 0.38s ease;
}
.mobile-drawer.md-open { max-height: 600px; }
.mobile-drawer-inner { padding: 20px 20px 28px; display:flex; flex-direction:column; gap:3px; }
.mobile-drawer-inner a {
    display:block; padding:13px 16px;
    font-size:15px; font-weight:600; color:#1a1a1a;
    text-decoration:none; border-radius:10px;
    border-bottom:1px solid rgba(0,0,0,0.04);
    transition: all 0.2s;
}
.mobile-drawer-inner a:hover { background:rgba(75,191,173,0.07); color:#4BBFAD; }
.mobile-drawer-inner a:last-child { border-bottom:none; }
.md-divider { height:1px; background:#eee; margin:10px 0; }
.md-actions { display:flex; gap:10px; margin-top:6px; }
.md-actions a { flex:1; text-align:center; padding:14px !important; border-radius:10px !important; border-bottom:none !important; font-size:13px !important; }
.md-btn-dark { background:#1a1a1a !important; color:#fff !important; }
.md-btn-teal { background:rgba(75,191,173,0.1) !important; color:#4BBFAD !important; border:1px solid rgba(75,191,173,0.25) !important; }

@media(min-width:1100px) { .header-phone { display:block; } }
@media(max-width:900px) {
    .header-nav-ul { display:none; }
    .hamburger-btn { display:flex; }
    .header-cta-btn { display:none; }
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background:#1a1a1a; color:#ccc; font-family:'DM Sans',system-ui,sans-serif; }

.footer-top {
    max-width:1400px; margin:0 auto;
    padding: clamp(56px,6vw,80px) clamp(20px,3vw,48px) 48px;
    display:grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap:48px;
}

.footer-logo-img { height:40px; width:auto; display:block; filter:brightness(0) invert(1); opacity:0.88; margin-bottom:18px; }
.footer-tagline { font-family:'Cormorant Garamond',Georgia,serif; font-size:19px; font-weight:600; color:#fff; line-height:1.4; margin-bottom:13px; }
.footer-desc { font-size:13px; color:#777; line-height:1.8; margin-bottom:24px; max-width:280px; }

.footer-contacts { display:flex; flex-direction:column; gap:10px; margin-bottom:22px; }
.fc-item { display:flex; align-items:center; gap:11px; font-size:13px; color:#999; }
.fc-item a { color:#999; text-decoration:none; transition:color 0.2s; }
.fc-item a:hover { color:#4BBFAD; }
.fc-icon { width:30px; height:30px; flex-shrink:0; background:rgba(255,255,255,0.05); border-radius:7px; display:flex; align-items:center; justify-content:center; font-size:14px; }

.footer-hours { font-size:12px; color:#666; line-height:2; margin-bottom:20px; }
.footer-hours strong { color:#888; display:inline-block; min-width:48px; }

.footer-socials { display:flex; gap:9px; }
.fsoc {
    width:36px; height:36px;
    background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08);
    border-radius:8px; display:flex; align-items:center; justify-content:center;
    text-decoration:none; transition: all 0.25s;
}
.fsoc:hover { background:rgba(75,191,173,0.15); border-color:rgba(75,191,173,0.3); transform:translateY(-2px); }
.fsoc svg { display:block; }

.footer-col-ttl { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:2px; color:#b39a6a; margin-bottom:18px; padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,0.06); }
.footer-nav { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px; }
.footer-nav li a { font-size:13px; color:#777; text-decoration:none; transition:color 0.2s, padding-left 0.2s; display:block; }
.footer-nav li a:hover { color:#4BBFAD; padding-left:4px; }

/* Col 4: awards */
.footer-awards { display:flex; flex-direction:column; gap:12px; }
.f-award {
    background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.07);
    border-radius:10px; padding:13px 15px;
    display:flex; align-items:center; gap:12px;
}
.f-award img { height:32px; width:auto; filter:brightness(0) invert(1); opacity:0.6; }
.f-award-name { font-size:12px; font-weight:700; color:#bbb; }
.f-award-sub  { font-size:11px; color:#555; margin-top:1px; }
.f-rating {
    background:rgba(75,191,173,0.06); border:1px solid rgba(75,191,173,0.15);
    border-radius:10px; padding:15px;
}
.f-rating-lbl { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:#4BBFAD; margin-bottom:9px; }
.f-rating-row { display:flex; align-items:center; gap:10px; }
.f-rating-num { font-family:'Cormorant Garamond',serif; font-size:34px; font-weight:700; color:#fff; line-height:1; }
.f-rating-stars { color:#FDB300; font-size:13px; letter-spacing:1px; }
.f-rating-count { font-size:11px; color:#555; margin-top:2px; }

/* Bottom bar */
.footer-bottom {
    border-top:1px solid rgba(255,255,255,0.06);
    padding: 18px clamp(20px,3vw,48px);
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px;
}
.footer-bottom-links { display:flex; align-items:center; gap:6px; flex-wrap:wrap; font-size:12px; color:#444; }
.footer-bottom-links a { color:#444; text-decoration:none; transition:color 0.2s; }
.footer-bottom-links a:hover { color:#777; }
.footer-bottom-links span { color:#333; }
.footer-bottom-logo img { height:26px; width:auto; filter:brightness(0) invert(1); opacity:0.28; }

@media(max-width:1100px) { .footer-top { grid-template-columns:1fr 1fr; gap:36px; } }
@media(max-width:640px)  { .footer-top { grid-template-columns:1fr; gap:32px; } .footer-bottom { flex-direction:column; align-items:flex-start; } }
