/* ============================================
   SCHWANDORF IMMOBILIEN – LANDING PAGE
   ============================================ */

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #0a1628;
    --primary-light: #132240;
    --accent: #2d7ff9;
    --accent-hover: #1a6ae0;
    --accent-green: #00c853;
    --accent-green-hover: #00a643;
    --accent-red: #e63946;
    --accent-orange: #ff8c00;
    --accent-gold: #ffc107;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --text: #1e293b;
    --text-muted: #64748b;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; color: var(--gray-900); }
h1 { font-size: 3rem; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 600; }
.section-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--accent);
    background: rgba(45,127,249,0.08);
    padding: 6px 16px; border-radius: 100px;
    margin-bottom: 12px;
}
.section-subtitle {
    font-size: 1.1rem; color: var(--text-muted);
    max-width: 600px; margin-top: 8px;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem; font-weight: 600;
    padding: 14px 32px; border-radius: var(--radius);
    border: none; cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent); color: var(--white);
    box-shadow: 0 4px 14px rgba(45,127,249,0.3);
}
.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(45,127,249,0.4);
    transform: translateY(-2px);
}
.btn-secondary {
    background: var(--white); color: var(--gray-800);
    border: 2px solid var(--gray-200);
}
.btn-secondary:hover {
    border-color: var(--accent); color: var(--accent);
    transform: translateY(-2px);
}
.btn-green {
    background: var(--accent-green); color: var(--white);
    box-shadow: 0 4px 14px rgba(0,200,83,0.3);
}
.btn-green:hover {
    background: var(--accent-green-hover);
    box-shadow: 0 6px 20px rgba(0,200,83,0.4);
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}
.btn-lg { padding: 18px 40px; font-size: 1.1rem; border-radius: var(--radius-lg); }

/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9998;
    padding: 16px 0;
    transition: all 0.35s ease;
    background: transparent;
}
.site-header.scrolled {
    background: rgba(10,22,40,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo img {
    height: 56px;
    width: auto;
    padding: 10px 24px;
    background: var(--white);
    border-radius: 100px;
    transition: var(--transition);
}
.site-header.scrolled .header-logo img {
    height: 44px;
    padding: 8px 20px;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.header-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.01em;
}
.header-nav a:hover {
    color: var(--white);
}
.btn-header {
    padding: 10px 24px !important;
    font-size: 0.82rem !important;
    border-radius: var(--radius) !important;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-green) 100%);
    z-index: 99999;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(45,127,249,0.4);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 170px; right: 24px;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(10,22,40,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 900;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(45,127,249,0.4);
}
.scroll-top:active { transform: translateY(0); }

/* ============================================
   BUILDING SHOWCASE
   ============================================ */
.building-showcase {
    padding: 48px 0 40px;
    background: var(--gray-50);
}
.building-showcase-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.building-showcase-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ============================================
   SECTION: HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    background: var(--primary);
    overflow: hidden;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.55;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10,22,40,0.25) 0%, rgba(10,22,40,0.45) 40%, rgba(10,22,40,0.85) 70%, rgba(10,22,40,1) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 800px;
    padding: 120px 0 80px;
}
.hero h1 { color: var(--white); font-size: 3.2rem; margin-bottom: 16px; }
.hero h1 span { color: var(--accent); }
.hero-sub {
    list-style: none;
    display: flex; flex-wrap: wrap; gap: 0;
    font-size: 1.2rem; color: var(--gray-400);
    margin-bottom: 32px; max-width: 600px; line-height: 1.7;
}
.hero-sub li { display: inline; }
.hero-sub li:not(:last-child)::after {
    content: ' \00B7 ';
    margin: 0 6px;
    color: var(--gray-500);
}
.hero-buttons { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-trust {
    display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
}
.trust-badge {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--gray-400);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 16px; border-radius: 100px;
}
.trust-badge svg { color: var(--accent); flex-shrink: 0; }
.hero-countdown {
    display: inline-flex; flex-direction: column; align-items: center;
    background: rgba(230,57,70,0.15);
    border: 1px solid rgba(230,57,70,0.3);
    padding: 12px 20px; border-radius: var(--radius);
    text-align: center;
    margin-top: 32px;
}
.hero-countdown .countdown-label {
    font-size: 0.7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--accent-red); margin-bottom: 8px;
}
.countdown-grid {
    display: flex; align-items: center; gap: 4px;
}
.countdown-cell { text-align: center; }
.countdown-sep {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem; font-weight: 800;
    color: var(--gray-500); padding-bottom: 14px;
}
.hero-countdown .countdown-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem; font-weight: 800;
    color: var(--white);
    min-width: 36px;
}
.hero-countdown .countdown-unit {
    display: block;
    font-size: 0.6rem; color: var(--gray-400);
    text-transform: uppercase; letter-spacing: 0.05em;
}

/* ============================================
   SECTION: STEUERRECHNER
   ============================================ */
.calculator-section {
    padding: 80px 0;
    background: var(--gray-50);
}
.calculator-section .section-header { text-align: center; margin-bottom: 40px; }
/* AfA Highlight */
.afa-highlight {
    max-width: 640px; margin: 0 auto 32px;
    text-align: center;
}
.afa-compare {
    display: flex; align-items: center; justify-content: center;
    gap: 24px;
}
.afa-item { text-align: center; }
.afa-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; line-height: 1;
}
.afa-old .afa-value {
    font-size: 2.8rem;
    color: var(--gray-400);
    text-decoration: line-through;
    opacity: 0.6;
}
.afa-new .afa-value {
    font-size: 4.5rem;
    color: var(--accent-green);
    text-shadow: 0 0 40px rgba(0,200,83,0.3);
}
.afa-label {
    display: block;
    font-size: 0.85rem; font-weight: 600;
    color: var(--gray-500);
    margin-top: 4px;
}
.afa-new .afa-label {
    color: var(--accent-green);
    font-weight: 700;
}
.afa-arrow {
    color: var(--accent);
    animation: afa-pulse 2s ease-in-out infinite;
}
@keyframes afa-pulse {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(6px); opacity: 1; }
}
.afa-hint {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--gray-600);
}
.afa-hint strong {
    color: var(--accent-green);
}

.calculator {
    max-width: 640px; margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}
.calc-field { margin-bottom: 24px; }
.calc-field label {
    display: block; font-weight: 600; font-size: 0.9rem;
    color: var(--gray-700); margin-bottom: 8px;
}
.calc-field select {
    width: 100%; padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem; font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}
.calc-field select:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(45,127,249,0.1);
}

/* Calculator Cards */
.calc-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.calc-card {
    position: relative;
    cursor: pointer;
}
.calc-card input[type="radio"] {
    position: absolute; opacity: 0; pointer-events: none;
}
.calc-card-inner {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 16px 12px;
    text-align: center;
    transition: all 0.25s ease;
    background: var(--white);
}
.calc-card:hover .calc-card-inner {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(45,127,249,0.1);
    transform: translateY(-2px);
}
.calc-card input:checked ~ .calc-card-inner {
    border-color: var(--accent);
    background: rgba(45,127,249,0.04);
    box-shadow: 0 0 0 3px rgba(45,127,249,0.15);
}
.calc-card.popular .calc-card-inner {
    border-color: var(--accent);
}
.popular-badge {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem; font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
    z-index: 1;
    letter-spacing: 0.02em;
}
.calc-card-type {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.calc-card-rooms {
    font-size: 0.75rem; font-weight: 600;
    color: var(--accent);
    margin-bottom: 6px;
}
.calc-card-size {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}
.calc-card-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem; font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.calc-card-count {
    font-size: 0.7rem; font-weight: 600;
    color: var(--gray-400);
}
.calc-card-count.scarce {
    color: var(--accent-red);
    font-weight: 700;
}

/* Range Slider */
.slider-wrapper { padding: 8px 0; }
.slider-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--accent);
    text-align: center;
    margin-bottom: 16px;
}
.slider-ticks {
    position: relative;
    margin-top: 12px;
    height: 24px;
}
.slider-ticks span {
    position: absolute;
    transform: translateX(-50%);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s;
    white-space: nowrap;
}
.slider-ticks span::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 6px;
    background: var(--gray-300);
}
.slider-ticks span:hover { color: var(--accent); }
.slider-ticks span.active-tick {
    color: var(--accent);
    font-weight: 700;
}
.slider-ticks span.active-tick::before { background: var(--accent); }

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, var(--accent) 0%, var(--accent) 40%, var(--gray-200) 40%, var(--gray-200) 100%);
    outline: none;
    cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent);
    box-shadow: 0 2px 8px rgba(45,127,249,0.3);
    cursor: pointer;
    transition: var(--transition);
}
input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(45,127,249,0.4);
}
input[type="range"]::-moz-range-thumb {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent);
    box-shadow: 0 2px 8px rgba(45,127,249,0.3);
    cursor: pointer;
}

.calc-result {
    display: none;
    background: linear-gradient(135deg, rgba(0,200,83,0.08) 0%, rgba(45,127,249,0.08) 100%);
    border: 1px solid rgba(0,200,83,0.2);
    border-radius: var(--radius-lg);
    padding: 28px; margin-top: 24px;
    text-align: center;
}
.calc-result.visible { display: block; }
.calc-result .result-label {
    font-size: 0.85rem; color: var(--text-muted);
    margin-bottom: 4px;
}
.calc-result .result-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem; font-weight: 800;
    color: var(--accent-green);
}
.calc-result .result-note {
    font-size: 0.82rem; color: var(--text-muted);
    margin-top: 12px;
}
.calc-disclaimer {
    font-size: 0.78rem; color: var(--gray-400);
    text-align: center; margin-top: 16px; line-height: 1.5;
}

/* ============================================
   SECTION: OBJEKT-HIGHLIGHTS
   ============================================ */
.highlights-section { padding: 80px 0; }
.highlights-section .section-header { text-align: center; margin-bottom: 48px; }
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.highlight-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.highlight-card .card-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.highlight-card .card-icon svg { flex-shrink: 0; }
.highlight-card .card-icon.blue { background: rgba(45,127,249,0.1); color: var(--accent); }
.highlight-card .card-icon.green { background: rgba(0,200,83,0.1); color: var(--accent-green); }
.highlight-card .card-icon.gold { background: rgba(255,193,7,0.1); color: var(--accent-gold); }
.highlight-card .card-icon.purple { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.highlight-card h3 { margin-bottom: 8px; }
.highlight-card p { font-size: 0.92rem; color: var(--text-muted); }

/* ============================================
   SECTION: FÜR INVESTOREN
   ============================================ */
.investor-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}
.investor-section h2 { color: var(--white); }
.investor-section .section-subtitle { color: var(--gray-400); }
.investor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: center;
}
.investor-benefits { list-style: none; }
.investor-benefit {
    display: flex; gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.investor-benefit:last-child { border-bottom: none; }
.investor-benefit .benefit-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 10px;
    background: rgba(45,127,249,0.15);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
}
.investor-benefit h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 4px; }
.investor-benefit p { color: var(--gray-400); font-size: 0.9rem; }
.investor-visual, .investor-visual-img .overlay {
    text-align: center;
}
.investor-visual {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 40px;
}
.investor-visual .big-number, .investor-visual-img .big-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; font-size: 5rem;
    color: var(--accent); line-height: 1;
}
.investor-visual .big-label, .investor-visual-img .big-label {
    font-size: 1.1rem; color: var(--gray-400); margin-top: 8px;
}
.investor-visual .comparison, .investor-visual-img .comparison {
    display: flex; justify-content: center; gap: 40px;
    margin-top: 32px;
}
.investor-visual .comp-item, .investor-visual-img .comp-item { text-align: center; }
.investor-visual .comp-old, .investor-visual-img .comp-old {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem; font-weight: 800;
    color: var(--accent-red);
    text-decoration: line-through;
    opacity: 0.6;
}
.investor-visual .comp-new, .investor-visual-img .comp-new {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem; font-weight: 800;
    color: var(--accent-green);
}
.investor-visual .comp-label, .investor-visual-img .comp-label {
    font-size: 0.8rem; color: var(--gray-400); margin-top: 4px;
}

/* ============================================
   SECTION: FÜR EIGENNUTZER
   ============================================ */
.owner-section { padding: 80px 0; background: var(--gray-50); }
.owner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: center;
}
.owner-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.owner-image img { width: 100%; height: 400px; object-fit: cover; }
.owner-benefits { list-style: none; }
.owner-benefit {
    display: flex; gap: 16px; padding: 16px 0;
}
.owner-benefit .benefit-check {
    width: 28px; height: 28px; flex-shrink: 0;
    border-radius: 50%;
    background: rgba(0,200,83,0.1);
    color: var(--accent-green);
    display: flex; align-items: center; justify-content: center;
}
.owner-benefit h3 { font-size: 1.05rem; margin-bottom: 4px; }
.owner-benefit p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================
   SECTION: LAGE
   ============================================ */
.location-section { padding: 80px 0; }
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: start;
}
.location-features { list-style: none; margin-top: 24px; }
.location-features li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; font-size: 1rem; color: var(--text-muted);
}
.location-features .loc-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(45,127,249,0.08);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    height: 400px;
}
.location-map iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   SECTION: VISUALISIERUNGEN
   ============================================ */
.gallery-section { padding: 80px 0; background: var(--gray-50); }
.gallery-section .section-header { text-align: center; margin-bottom: 48px; }
.gallery-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 24px;
}
.gallery-main img { width: 100%; height: 500px; object-fit: cover; }
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}
.gallery-disclaimer {
    font-size: 0.78rem;
    color: var(--gray-400);
    text-align: center;
    font-style: italic;
    margin-top: 16px;
}
.gallery-thumb {
    border-radius: var(--radius);
    overflow: hidden; cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.gallery-thumb:hover, .gallery-thumb.active {
    border-color: var(--accent);
    transform: scale(1.02);
}
.gallery-thumb img { width: 100%; height: 90px; object-fit: cover; }
.gallery-thumb .thumb-label {
    padding: 6px 8px;
    font-size: 0.72rem; font-weight: 600;
    background: var(--white);
    color: var(--text);
    text-align: center;
}

/* Lightbox */
.lightbox {
    display: none; position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    justify-content: center; align-items: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
    position: absolute; top: 24px; right: 24px;
    background: rgba(255,255,255,0.1);
    border: none; color: white;
    width: 48px; height: 48px; border-radius: 50%;
    font-size: 1.5rem; cursor: pointer;
    transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ============================================
   SECTION: NART SERVICES
   ============================================ */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0f2847 100%);
    color: var(--white);
}
.services-section .section-header { text-align: center; margin-bottom: 48px; }
.services-logo {
    margin-bottom: 28px;
}
.services-logo img {
    height: 80px;
    width: auto;
    margin: 0 auto;
    padding: 16px 40px;
    background: var(--white);
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.services-section h2 { color: var(--white); }
.services-section .section-subtitle { color: var(--gray-400); margin-left: auto; margin-right: auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px; text-align: center;
    transition: var(--transition);
}
.service-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}
.service-card .service-icon {
    width: 64px; height: 64px; margin: 0 auto 16px;
    border-radius: var(--radius);
    background: rgba(45,127,249,0.15);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
}
.service-card h3 { color: var(--white); margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--gray-400); }

/* ============================================
   SECTION: KONTAKT-FORMULAR (Multi-Step)
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--gray-900);
    color: var(--white);
}
.contact-section .section-header { text-align: center; margin-bottom: 48px; }
.contact-section h2 { color: var(--white); }
.contact-section .section-subtitle { color: var(--gray-400); margin-left: auto; margin-right: auto; }

.multistep-form {
    max-width: 620px; margin: 0 auto;
}

/* Progress Steps */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}
.progress-step {
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    position: relative; z-index: 1;
}
.step-circle {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 0.9rem;
    color: var(--gray-500);
    transition: var(--transition);
}
.progress-step.active .step-circle,
.progress-step.completed .step-circle {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 0 16px rgba(45,127,249,0.3);
}
.progress-step.completed .step-circle {
    background: var(--accent-green);
    border-color: var(--accent-green);
    box-shadow: 0 0 16px rgba(0,200,83,0.3);
}
.step-label {
    font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--gray-500);
    transition: var(--transition);
}
.progress-step.active .step-label,
.progress-step.completed .step-label { color: var(--white); }
.progress-line {
    width: 80px; height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 8px;
    margin-bottom: 24px;
    transition: var(--transition);
}
.progress-line.active {
    background: var(--accent);
}

/* Form Steps */
.form-step {
    display: none;
}
.form-step.active { display: block; }

.step-title {
    text-align: center;
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 28px;
}

/* Interest Cards (Step 1) */
.interest-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.interest-card {
    cursor: pointer;
}
.interest-card input[type="radio"] {
    display: none;
}
.interest-card-inner {
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}
.interest-card-inner:hover {
    border-color: rgba(45,127,249,0.4);
    background: rgba(45,127,249,0.06);
}
.interest-card input:checked + .interest-card-inner {
    border-color: var(--accent);
    background: rgba(45,127,249,0.1);
    box-shadow: 0 0 20px rgba(45,127,249,0.15);
}
.interest-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius);
    background: rgba(45,127,249,0.12);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.interest-card input:checked + .interest-card-inner .interest-icon {
    background: var(--accent);
    color: var(--white);
}
.interest-card h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}
.interest-card p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* Form Fields (Step 2 & 3) */
.form-row { margin-bottom: 20px; }
.form-row label {
    display: block; font-weight: 500; font-size: 0.9rem;
    color: var(--gray-300); margin-bottom: 6px;
}
.form-row input, .form-row select, .form-row textarea {
    width: 100%; padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    color: var(--white);
    font-family: 'Inter', sans-serif; font-size: 1rem;
    transition: var(--transition);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--gray-600); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(45,127,249,0.15);
}
.form-row textarea { min-height: 100px; resize: vertical; }
.form-row select option { background: var(--gray-800); color: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.optional-hint { font-weight: 400; color: var(--gray-500); font-size: 0.82rem; }

.step-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    gap: 16px;
}
.step-buttons .btn-secondary {
    background: transparent;
    border-color: rgba(255,255,255,0.15);
    color: var(--gray-400);
}
.step-buttons .btn-secondary:hover {
    border-color: var(--accent);
    color: var(--white);
}

.form-privacy {
    font-size: 0.8rem; color: var(--gray-500);
    margin-top: 16px; text-align: center; line-height: 1.5;
}
.form-privacy a { color: var(--accent); }

/* Consent Checkbox */
.consent-row { margin-top: 8px; margin-bottom: 24px; }
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--gray-400);
}
.checkbox-label input[type="checkbox"] {
    display: none;
}
.checkbox-label .checkmark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-600);
    border-radius: 5px;
    margin-top: 1px;
    position: relative;
    transition: all 0.2s ease;
    background: transparent;
}
.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent);
    border-color: var(--accent);
}
.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox-label a {
    color: var(--accent);
    text-decoration: underline;
}

.form-success {
    display: none;
    text-align: center; padding: 40px;
}
.form-success.visible { display: block; }
.form-success .success-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(0,200,83,0.12);
    color: var(--accent-green);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.form-success h3 { color: var(--accent-green); font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--gray-400); }
/* Honeypot */
.hp-field { position: absolute; left: -9999px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 48px 0 24px;
    background: #060d18;
    color: var(--gray-400);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px; margin-bottom: 40px;
}
.footer-logo {
    height: 64px;
    width: auto;
    padding: 12px 28px;
    background: var(--white);
    border-radius: 100px;
    margin-bottom: 16px;
}
.footer h4 {
    color: var(--white); font-size: 1rem;
    margin-bottom: 16px;
}
.footer p { font-size: 0.9rem; line-height: 1.7; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: var(--gray-400); font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-impressum {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px; margin-bottom: 24px;
}
.footer-impressum h4 { margin-bottom: 8px; }
.footer-impressum p {
    font-size: 0.8rem; line-height: 1.8;
    color: var(--gray-500);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem;
}

/* ============================================
   IMAGE STRIPS & BANNERS
   ============================================ */
.image-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
.image-strip img {
    width: 100%; height: 220px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.image-strip img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.image-banner {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 340px;
    overflow: hidden;
}
.image-banner img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.image-banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.6) 100%);
    display: flex; align-items: center; justify-content: center;
}
.banner-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem; font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.investor-visual-img {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.investor-visual-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    min-height: 420px;
}
.investor-visual-img .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10,22,40,0.4) 0%, rgba(10,22,40,0.85) 70%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.location-photo {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 20px;
}
.location-photo img {
    width: 100%; height: 200px;
    object-fit: cover;
}

.services-section-bg {
    position: relative;
    overflow: hidden;
}
.services-section-bg .services-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.08;
}

/* ============================================
   COUNTDOWN HEADLINE & SUBLINE
   ============================================ */
.countdown-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.countdown-subline {
    font-size: 0.72rem;
    color: var(--gray-400);
    margin-top: 10px;
    line-height: 1.4;
}

/* ============================================
   TAX BENEFITS SECTION
   ============================================ */
.tax-benefits-section {
    padding: 80px 0;
    background: var(--gray-50);
}
.tax-benefits-section .section-header {
    margin-bottom: 56px;
}
.tax-explainer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.tax-explainer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}
.tax-explainer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.tax-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(45,127,249,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}
.tax-explainer-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}
.tax-explainer-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.tax-card-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(45,127,249,0.1);
    color: var(--accent);
}

/* Tax Example / Comparison Table */
.tax-example {
    max-width: 860px;
    margin: 0 auto 56px;
}
.tax-example h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text);
}
.tax-example-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}
.tax-comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.tax-compare-col {
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 2px solid var(--gray-200);
}
.tax-compare-old {
    background: var(--white);
}
.tax-compare-new {
    background: linear-gradient(135deg, rgba(45,127,249,0.04), rgba(34,197,94,0.04));
    border-color: var(--accent-green);
}
.tax-compare-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text);
}
.tax-compare-new .tax-compare-header {
    color: var(--accent-green);
    border-color: rgba(34,197,94,0.2);
}
.tax-compare-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.92rem;
}
.tax-compare-row span {
    color: var(--text-muted);
}
.tax-compare-row strong {
    font-weight: 700;
    color: var(--text);
}
.tax-compare-new .tax-compare-row strong {
    color: var(--accent-green);
}
.tax-compare-row.highlight-row {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid rgba(34,197,94,0.2);
}
.tax-compare-row.highlight-row strong {
    font-size: 1.15rem;
}

/* Savings Highlight */
.tax-savings-highlight {
    text-align: center;
    margin: 32px auto;
    padding: 28px;
    background: linear-gradient(135deg, var(--accent-green), #16a34a);
    border-radius: var(--radius-lg);
    max-width: 480px;
}
.tax-savings-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.tax-savings-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}
.tax-example-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 16px;
    font-style: italic;
}

/* Additional Benefits Grid */
.tax-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.tax-benefit-item {
    text-align: center;
    padding: 24px 16px;
}
.tax-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(45,127,249,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent);
}
.tax-benefit-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.tax-benefit-item p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ============================================
   PRICE COMPARISON (PREISANKER)
   ============================================ */
.price-comparison {
    font-size: 0.82rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.price-comparison .info-icon {
    font-size: 1rem;
    color: var(--accent);
}

/* ============================================
   CALCULATOR RESULT CTA GROUP
   ============================================ */
.result-cta-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}
.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-outline-accent:hover {
    background: rgba(45,127,249,0.08);
    transform: translateY(-2px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    background: var(--gray-50);
}
.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.google-logo {
    flex-shrink: 0;
}
.google-stars {
    display: flex;
    gap: 2px;
}
.google-stars .star {
    color: #FBBC05;
    font-size: 1.2rem;
    line-height: 1;
}
.google-count {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.testimonial-quote-icon {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    opacity: 0.3;
    margin-bottom: 8px;
}
.testimonial-quote {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}
.testimonial-role {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   TEAM HIGHLIGHT
   ============================================ */
.team-highlight {
    text-align: center;
    margin-bottom: 48px;
    padding: 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
}
.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto 16px;
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.team-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto 16px;
    line-height: 1.6;
}
.team-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}
.team-title {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 2px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
}
.faq-accordion {
    max-width: 740px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--accent);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: var(--transition);
    gap: 16px;
}
.faq-question:hover {
    color: var(--accent);
}
.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-mobile-cta {
    display: none;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
/* Fallback: if GSAP doesn't load after 4s, show all content */
.reveal.no-gsap-fallback {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* ============================================
   STICKY CONTACT BUTTON + FLYOUT
   ============================================ */
.sticky-contact-btn {
    position: fixed;
    bottom: 100px; right: 24px;
    width: 58px; height: 58px;
    background: linear-gradient(135deg, var(--accent) 0%, #1a6dff 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 5px 25px rgba(45,127,249,0.4), 0 0 20px rgba(45,127,249,0.2);
    transition: all 0.3s ease;
    border: 3px solid rgba(255,255,255,0.2);
}
.sticky-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(45,127,249,0.6), 0 0 30px rgba(45,127,249,0.4);
}
.sticky-contact-btn svg {
    width: 24px; height: 24px;
    stroke: var(--white); fill: none;
    transition: all 0.3s ease;
}
.sticky-contact-btn .icon-close {
    display: none;
}
.sticky-contact-btn.active .icon-msg { display: none; }
.sticky-contact-btn.active .icon-close { display: block; }
.sticky-contact-btn .icon-msg {
    animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.contact-panel {
    position: fixed;
    bottom: 170px; right: -340px;
    width: 280px;
    background: var(--white);
    box-shadow: -5px 5px 30px rgba(0,0,0,0.15);
    z-index: 9998;
    transition: right 0.4s cubic-bezier(0.68, -0.25, 0.265, 1.25);
    border-radius: 16px 0 0 16px;
    overflow: hidden;
}
.contact-panel.active { right: 0; }
.contact-panel-header {
    background: linear-gradient(135deg, var(--accent) 0%, #1a6dff 100%);
    color: var(--white);
    padding: 14px 18px;
}
.contact-panel-header h3 {
    font-size: 1rem; margin: 0; font-weight: 600;
}
.contact-panel-content { padding: 12px; }
.contact-panel-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px;
    background: var(--gray-50);
    border-radius: 10px;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 8px;
}
.contact-panel-item:last-child { margin-bottom: 0; }
.contact-panel-item:hover {
    background: rgba(45,127,249,0.08);
    transform: translateX(-3px);
}
.contact-panel-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--accent) 0%, #1a6dff 100%);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-panel-icon svg { stroke: var(--white); }
.contact-panel-text strong {
    display: block; font-size: 0.88rem;
    color: var(--text); font-weight: 600;
}
.contact-panel-text span {
    font-size: 0.75rem; color: var(--gray-500);
}
.contact-panel-item:hover .contact-panel-text strong {
    color: var(--accent);
}

/* ============================================
   INTERACTIVE BACKGROUNDS: BLOBS
   ============================================ */
.has-blobs {
    position: relative;
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
    will-change: transform;
}
.blob-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -100px; left: -100px;
    animation: blobFloat1 18s ease-in-out infinite;
}
.blob-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
    bottom: -80px; right: -80px;
    animation: blobFloat2 22s ease-in-out infinite;
}
.blob-3 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: blobFloat3 15s ease-in-out infinite;
}
@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, 40px) scale(1.15); }
    66% { transform: translate(-30px, 80px) scale(0.9); }
}
@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, -30px) scale(1.1); }
    66% { transform: translate(40px, -60px) scale(0.95); }
}
@keyframes blobFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-40%, -60%) scale(1.2); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.8rem; }
    .investor-visual .big-number, .investor-visual-img .big-number { font-size: 3.5rem; }
    .tax-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .sticky-mobile-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 16px 24px;
        background: var(--accent);
        color: var(--white);
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
        z-index: 10000;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
        border-radius: 0;
    }
    .sticky-mobile-cta:hover {
        background: var(--accent-hover);
    }
    .sticky-mobile-cta.hidden {
        transform: translateY(100%);
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .hero { min-height: 100vh; min-height: 100dvh; padding: 0; }
    .hero-content {
        padding: 0 0 60px;
        display: flex; flex-direction: column; justify-content: center;
        min-height: 100vh; min-height: 100dvh;
    }
    .hero h1 { font-size: 1.85rem; margin-bottom: 24px; }
    .hero-sub { font-size: 0.95rem; flex-direction: column; gap: 10px; margin-bottom: 36px; }
    .hero-sub li { display: block; }
    .hero-sub li:not(:last-child)::after { content: none; }
    .hero-sub li::before {
        content: '\2713';
        margin-right: 10px;
        color: var(--accent-green);
        font-weight: 700;
    }
    .hero-buttons { flex-direction: column; gap: 12px; margin-bottom: 36px; }
    .hero-buttons .btn { width: 100%; padding: 16px 24px; font-size: 0.95rem; }
    .hero-trust { flex-direction: row; flex-wrap: nowrap; gap: 6px; }
    .trust-badge { font-size: 0.68rem; padding: 5px 10px; gap: 5px; }
    .trust-badge svg { width: 14px; height: 14px; }
    .hero-countdown {
        margin-top: 40px; align-self: center;
        padding: 16px 28px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    /* Header mobile */
    .header-nav a:not(.btn-header) { display: none; }
    .header-nav { gap: 0; }
    .btn-header { font-size: 0.75rem !important; padding: 8px 16px !important; }
    .header-logo img { height: 40px; padding: 8px 16px; }
    .site-header { padding: 12px 0; }

    .highlights-grid,
    .investor-grid,
    .owner-grid,
    .location-grid,
    .services-grid,
    .form-grid,
    .footer-grid { grid-template-columns: 1fr; }

    .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }

    .container { padding: 0 16px; }
    .calculator { padding: 24px; }
    .calc-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .calc-card-inner { padding: 12px 8px; }
    .afa-new .afa-value { font-size: 3.5rem; }
    .afa-old .afa-value { font-size: 2.2rem; }

    .investor-visual .big-number, .investor-visual-img .big-number { font-size: 3rem; }
    .investor-visual .comparison, .investor-visual-img .comparison { gap: 24px; }
    .investor-visual .comp-old, .investor-visual .comp-new,
    .investor-visual-img .comp-old, .investor-visual-img .comp-new { font-size: 1.8rem; }

    .image-strip { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
    .image-strip img { height: 180px; }
    .image-banner { height: 220px; }
    .banner-text { font-size: 1rem; }
    .investor-visual-img img { min-height: 300px; }
    .investor-visual-img .overlay { padding: 24px; }
    .gallery-main img { height: 250px; }
    .gallery-thumb img { height: 60px; }

    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Multi-step form mobile */
    .interest-cards { grid-template-columns: 1fr; }
    .interest-card-inner { padding: 20px 16px; }
    .step-buttons { flex-direction: column; }
    .step-buttons .btn { width: 100%; }
    .progress-line { width: 40px; }

    .scroll-top { bottom: 150px; right: 16px; width: 46px; height: 46px; }

    /* Sticky CTA mobile */
    .sticky-contact-btn {
        width: 52px; height: 52px;
        bottom: 85px; right: 16px;
    }
    .contact-panel {
        width: calc(100vw - 16px);
        max-width: 320px;
        right: -350px;
        bottom: 150px;
        border-radius: 16px;
    }
    .contact-panel.active { right: 8px; }

    /* Blobs more visible on mobile */
    .blob { opacity: 0.22; }
    .blob-1 { width: 280px; height: 280px; filter: blur(50px); }
    .blob-2 { width: 220px; height: 220px; filter: blur(50px); }
    .blob-3 { width: 200px; height: 200px; filter: blur(40px); }

    /* Testimonials mobile */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Tax Benefits mobile */
    .tax-explainer-grid { grid-template-columns: 1fr; }
    .tax-comparison-table { grid-template-columns: 1fr; }
    .tax-benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .tax-savings-number { font-size: 2.2rem; }

    /* Result CTA group mobile */
    .result-cta-group { flex-direction: column; }
    .result-cta-group .btn { width: 100%; }

    /* Contact section bottom padding for sticky CTA */
    .contact-section { padding-bottom: 100px; }

    /* Footer bottom padding for sticky CTA */
    .footer { padding-bottom: 80px; }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 20px 24px;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.88rem;
    line-height: 1.6;
}
.cookie-banner-text a {
    color: var(--accent);
    text-decoration: underline;
}
.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.cookie-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.cookie-btn-accept {
    background: var(--accent-green);
    color: var(--white);
}
.cookie-btn-accept:hover {
    background: var(--accent-green-hover);
    transform: translateY(-1px);
}
.cookie-btn-decline {
    background: transparent;
    color: var(--gray-400);
    border: 1px solid rgba(255,255,255,0.15);
}
.cookie-btn-decline:hover {
    border-color: var(--gray-400);
    color: var(--white);
}
.cookie-btn-settings {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}
.cookie-btn-settings:hover {
    background: rgba(45,127,249,0.1);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-banner-buttons {
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    /* Push sticky mobile CTA up when cookie banner is visible */
    .cookie-banner.visible ~ .sticky-mobile-cta {
        transform: translateY(-100px);
    }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    .hero h1 { font-size: 1.75rem; }
    .btn-lg { padding: 14px 28px; font-size: 1rem; }
    .sticky-contact-btn { width: 48px; height: 48px; bottom: 70px; right: 12px; }
    .sticky-contact-btn svg { width: 20px; height: 20px; }
    .scroll-top { bottom: 130px; right: 12px; width: 42px; height: 42px; }
    .contact-panel { bottom: 130px; }
    .gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
    .tax-benefits-grid { grid-template-columns: 1fr; }
    .tax-explainer-card { padding: 24px 20px; }
    .tax-compare-col { padding: 20px; }
}
