/* ============================================================
   Branchenportal24 - Modern Responsive Stylesheet
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
    --primary: #1a237e;
    --primary-light: #3949ab;
    --primary-dark: #0d1642;
    --accent: #f37e17;
    --accent-light: #ff9800;
    --accent-dark: #e65100;
    --success: #2e7d32;
    --error: #c62828;
    --text: #212121;
    --text-light: #616161;
    --text-muted: #9e9e9e;
    --bg: #f5f5f5;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: .25s ease;
    --max-width: 1280px;
    --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section--white { background: var(--bg-white); }
.section--gray { background: var(--bg); }
.section--dark { background: var(--primary-dark); color: #fff; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }

/* --- Typography --- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p { color: var(--text-light); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.section-title .accent-line {
    display: block; width: 60px; height: 4px; background: var(--accent);
    border-radius: 2px; margin: 16px auto 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 28px;
    font-size: .95rem; font-weight: 600; border-radius: var(--radius-sm);
    border: none; cursor: pointer; transition: all var(--transition);
    text-decoration: none; line-height: 1.4;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--white { background: #fff; color: var(--primary); }
.btn--white:hover { background: #f0f0f0; color: var(--primary); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--sm { padding: 8px 18px; font-size: .85rem; }
.btn--block { width: 100%; }

/* === HEADER / NAVIGATION === */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-wrapper {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--max-width); margin: 0 auto;
    padding: 0 20px; height: 70px;
}
.nav-logo img { height: 42px; }
.nav-logo { display: flex; align-items: center; font-weight: 800; font-size: 1.3rem; color: var(--primary); gap: 10px; }
.nav-logo span { color: var(--accent); }

.nav-menu { display: flex; gap: 6px; align-items: center; }
.nav-menu a {
    padding: 8px 16px; border-radius: var(--radius-sm);
    font-size: .9rem; font-weight: 500; color: var(--text);
    transition: all var(--transition); white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--accent); background: rgba(243, 126, 23, .08);
}
.nav-cta {
    margin-left: 12px;
    padding: 10px 22px;
    background: var(--accent); color: #fff !important;
    border-radius: var(--radius-sm); font-weight: 600;
}
.nav-cta:hover { background: var(--accent-dark); color: #fff !important; }

/* Mobile hamburger */
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 36px; height: 36px; position: relative;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px; background: var(--text);
    position: absolute; left: 6px; transition: all .3s;
}
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 17px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 17px; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 17px; }

@media (max-width: 1024px) {
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed; top: 70px; left: 0; right: 0;
        background: #fff; flex-direction: column;
        padding: 24px; gap: 4px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform .35s ease;
        max-height: calc(100vh - 70px); overflow-y: auto;
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-menu a { padding: 14px 20px; font-size: 1rem; width: 100%; border-radius: var(--radius-sm); }
    .nav-cta { margin-left: 0; text-align: center; margin-top: 12px; }
}

/* === HERO === */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
    color: #fff;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute; bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: var(--bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-content p { font-size: 1.15rem; opacity: .9; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
    display: flex; justify-content: center; align-items: center;
}
.hero-badge {
    background: rgba(255,255,255,.15); backdrop-filter: blur(10px);
    border-radius: var(--radius-lg); padding: 32px;
    text-align: center;
}
.hero-badge .number { font-size: 3rem; font-weight: 800; display: block; }
.hero-badge .label { font-size: .95rem; opacity: .8; }

@media (max-width: 768px) {
    .hero { padding: 50px 0 80px; }
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-visual { display: none; }
}

/* === SEARCH BAR === */
.search-section { margin-top: -50px; position: relative; z-index: 10; padding-bottom: 40px; }
.search-box {
    background: var(--bg-white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: 28px 32px;
    max-width: 900px; margin: 0 auto;
}
.search-form {
    display: flex; gap: 12px; flex-wrap: wrap;
}
.search-form input, .search-form select {
    flex: 1; min-width: 160px;
    padding: 14px 18px; border: 2px solid var(--border);
    border-radius: var(--radius-sm); font-size: .95rem;
    transition: border-color var(--transition);
    font-family: var(--font);
}
.search-form input:focus, .search-form select:focus {
    outline: none; border-color: var(--accent);
}
.search-form .btn { flex-shrink: 0; min-width: 140px; }

@media (max-width: 600px) {
    .search-box { padding: 20px; margin: 0 12px; }
    .search-form { flex-direction: column; }
    .search-form input, .search-form select, .search-form .btn { min-width: 100%; }
}

/* === PRICING CARDS === */
.pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; max-width: 960px; margin: 0 auto;
}
.pricing-card {
    background: var(--bg-white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-md); overflow: hidden;
    text-align: center; transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border: 3px solid var(--accent); }
.pricing-card.featured::before {
    content: 'Empfohlen';
    position: absolute; top: 16px; right: -30px;
    background: var(--accent); color: #fff;
    padding: 4px 40px; font-size: .75rem; font-weight: 700;
    transform: rotate(45deg); text-transform: uppercase;
}
.pricing-header { padding: 32px 24px 16px; }
.pricing-header h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.pricing-price small { font-size: .9rem; font-weight: 400; color: var(--text-muted); }
.pricing-body { padding: 16px 24px; }
.pricing-body ul { text-align: left; }
.pricing-body li {
    padding: 8px 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 10px; font-size: .9rem;
}
.pricing-body li:last-child { border-bottom: none; }
.pricing-body li::before { content: '✓'; color: var(--success); font-weight: 700; }
.pricing-footer { padding: 16px 24px 32px; }

/* === FEATURES / SERVICES GRID === */
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--bg-white); border-radius: var(--radius-md);
    padding: 32px 28px; box-shadow: var(--shadow-sm);
    text-align: center; transition: all var(--transition);
    border: 1px solid var(--border);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--accent); }
.feature-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 20px;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p { color: var(--text-light); font-size: .9rem; }

/* === BUNDESLAENDER GRID === */
.states-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
}
.state-link {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px; background: var(--bg-white);
    border-radius: var(--radius-sm); border: 1px solid var(--border);
    font-weight: 500; color: var(--text);
    transition: all var(--transition);
}
.state-link:hover {
    border-color: var(--accent); background: rgba(243, 126, 23,.05);
    color: var(--accent); transform: translateX(4px);
}
.state-link i { color: var(--accent); }

/* === CITIES GRID === */
.cities-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 10px;
}
.city-link {
    padding: 10px 16px; background: var(--bg-white);
    border-radius: var(--radius-sm); border: 1px solid var(--border);
    font-size: .9rem; color: var(--text); text-align: center;
    transition: all var(--transition);
}
.city-link:hover {
    border-color: var(--primary); background: var(--primary);
    color: #fff;
}

/* === TOP-BRANCHEN === */
.branchen-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.branche-card {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 12px;
    padding: 28px 20px; background: var(--bg-white);
    border-radius: var(--radius-md); border: 1px solid var(--border);
    transition: all var(--transition); text-align: center; color: var(--text);
}
.branche-card i { font-size: 2rem; color: var(--accent); transition: transform var(--transition); }
.branche-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); color: var(--accent); }
.branche-card:hover i { transform: scale(1.15); }
.branche-card span { font-weight: 600; font-size: .95rem; }

/* === ENTRIES LIST === */
.entries-section h2 { margin-bottom: 24px; }
.entries-list { display: grid; gap: 16px; }
.entry-card {
    display: grid; grid-template-columns: auto 1fr;
    gap: 20px; padding: 20px 24px;
    background: var(--bg-white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); border-left: 4px solid var(--primary);
    transition: all var(--transition);
}
.entry-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--accent); transform: translateX(3px); }
.entry-card.premium { border-left-color: var(--accent); }
.entry-logo {
    width: 80px; height: 80px; border-radius: var(--radius-sm);
    background: var(--bg); display: flex; align-items: center;
    justify-content: center; overflow: hidden; flex-shrink: 0;
}
.entry-logo img { width: 100%; height: 100%; object-fit: contain; }
.entry-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.entry-category { font-size: .8rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.entry-address { display: flex; align-items: center; gap: 6px; font-size: .9rem; color: var(--text-light); }
.entry-address i { color: var(--text-muted); font-size: .85rem; }

@media (max-width: 600px) {
    .entry-card { grid-template-columns: 1fr; }
    .entry-logo { width: 100%; height: 60px; }
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.testimonial-card {
    background: var(--bg-white); border-radius: var(--radius-md);
    padding: 28px; box-shadow: var(--shadow-sm);
    position: relative;
}
.testimonial-card::before {
    content: '„'; font-size: 4rem; color: var(--accent);
    position: absolute; top: 8px; left: 20px; line-height: 1; opacity: .3;
}
.testimonial-text { font-style: italic; color: var(--text-light); margin-bottom: 16px; padding-top: 24px; }
.testimonial-author { font-weight: 600; font-size: .9rem; }
.testimonial-company { font-size: .8rem; color: var(--text-muted); }

/* === NEWS CARDS === */
.news-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.news-card {
    background: var(--bg-white); border-radius: var(--radius-md);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-card-img { height: 180px; background: var(--primary); overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 24px; }
.news-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.news-card-body p { color: var(--text-light); font-size: .9rem; }
.news-card-meta { font-size: .8rem; color: var(--text-muted); margin-top: 12px; }

/* === GOOGLE ADS SECTION === */
.ads-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px; align-items: start;
}
.ads-card {
    background: var(--bg-white); border-radius: var(--radius-md);
    overflow: hidden; box-shadow: var(--shadow-md); text-align: center;
}
.ads-card-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff; padding: 28px 24px;
}
.ads-card-header h3 { font-size: 1.25rem; margin-bottom: 8px; }
.ads-price { font-size: 2.2rem; font-weight: 800; }
.ads-icons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 24px; }
.ads-icon-item { text-align: center; }
.ads-icon-item i { font-size: 1.5rem; color: var(--accent); display: block; margin-bottom: 6px; }
.ads-icon-item span { font-size: .85rem; font-weight: 600; }
.ads-card-footer { padding: 0 24px 28px; }

/* === SEA INFO SECTION === */
.sea-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.sea-card {
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-sm); background: var(--bg-white);
}
.sea-card img { width: 100%; height: 200px; object-fit: cover; }
.sea-card-body { padding: 24px; }
.sea-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.sea-card-body p { font-size: .9rem; color: var(--text-light); }

/* === PARTNER / VIDEO SECTION === */
.partner-section .container { text-align: center; }
.video-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; margin-top: 24px;
}
.video-embed {
    position: relative; padding-bottom: 56.25%; height: 0;
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-md);
}
.video-embed iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; border: 0;
}

/* === STATS BAR === */
.stats-bar {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px; padding: 40px 0;
}
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--accent); display: block; }
.stat-label { font-size: .9rem; color: rgba(255,255,255,.8); }

/* === MICRO SITE SECTION === */
.microsite-section {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center;
}
.microsite-section img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) { .microsite-section { grid-template-columns: 1fr; } }

/* === FOOTER === */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.85); padding: 60px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px; padding-bottom: 40px;
}
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 36px; height: 3px; background: var(--accent); border-radius: 2px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-col p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.1); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); font-size: 1.1rem;
}
.footer-social a:hover { background: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0; text-align: center;
    font-size: .8rem; color: rgba(255,255,255,.4);
}
.footer-partner { display: inline-block; margin-top: 8px; }
.footer-partner img { height: 50px; opacity: .6; transition: opacity var(--transition); }
.footer-partner img:hover { opacity: 1; }

/* === LOGIN / FORMS === */
.form-container {
    max-width: 480px; margin: 40px auto;
    background: var(--bg-white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-md); padding: 40px;
}
.form-container h2 { margin-bottom: 24px; text-align: center; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: .9rem; font-weight: 600;
    margin-bottom: 6px; color: var(--text);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 2px solid var(--border); border-radius: var(--radius-sm);
    font-size: .95rem; font-family: var(--font);
    transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent);
}
.form-error { color: var(--error); font-size: .85rem; margin-top: 4px; }

/* Flash Messages */
.flash-message {
    padding: 16px 24px; border-radius: var(--radius-sm);
    margin-bottom: 20px; font-weight: 500; font-size: .95rem;
    display: flex; align-items: center; gap: 10px;
}
.flash-message.success { background: #e8f5e9; color: var(--success); border-left: 4px solid var(--success); }
.flash-message.error { background: #ffebee; color: var(--error); border-left: 4px solid var(--error); }
.flash-message.info { background: #e3f2fd; color: #1565c0; border-left: 4px solid #1565c0; }

/* === CUSTOMER DASHBOARD === */
.dashboard { max-width: 960px; margin: 0 auto; padding: 40px 20px; }
.dashboard-card {
    background: var(--bg-white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); margin-bottom: 20px; overflow: hidden;
}
.dashboard-card-header {
    padding: 18px 24px; background: var(--bg);
    border-bottom: 1px solid var(--border);
    cursor: pointer; display: flex; align-items: center; justify-content: space-between;
    font-weight: 600;
}
.dashboard-card-header i { transition: transform var(--transition); }
.dashboard-card.open .dashboard-card-header i { transform: rotate(180deg); }
.dashboard-card-body { padding: 24px; display: none; }
.dashboard-card.open .dashboard-card-body { display: block; }
.dashboard-table { width: 100%; }
.dashboard-table td { padding: 8px 0; vertical-align: top; }
.dashboard-table td:first-child { font-weight: 600; width: 200px; color: var(--text-light); }

/* === PAGINATION === */
.pagination { display: flex; justify-content: center; gap: 4px; margin-top: 32px; flex-wrap: wrap; }
.pagination a, .pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px;
    border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500;
    border: 1px solid var(--border); color: var(--text);
    transition: all var(--transition);
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current {
    background: var(--accent); color: #fff;
    border-color: var(--accent);
}

/* === COOKIE BANNER (DSGVO) === */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--primary-dark); color: #fff;
    padding: 20px; z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,.3);
    display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
    max-width: var(--max-width); margin: 0 auto;
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-inner p { flex: 1; min-width: 280px; font-size: .9rem; opacity: .9; }
.cookie-inner a { color: var(--accent); }
.cookie-actions { display: flex; gap: 12px; }

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed; bottom: 24px; right: 24px;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden;
    transition: all var(--transition); cursor: pointer;
    border: none; z-index: 100;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* === PRINT === */
@media print {
    .site-header, .site-footer, .cookie-banner, .scroll-top, .nav-toggle { display: none !important; }
    body { background: #fff; }
    .section { padding: 20px 0; }
}
