/* Dark Theme CSS Variables */
:root {
    /* Dark theme colors */
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --secondary-color: #94a3b8;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;

    /* Dark backgrounds */
    --background-color: #0f0f0f;
    --surface-color: #1a1a1a;
    --surface-light: #2a2a2a;
    --surface-hover: #3a3a3a;

    /* Dark text */
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-light: #9ca3af;
    --text-muted: #6b7280;

    /* Dark borders and shadows */
    --border-color: #374151;
    --border-light: #4b5563;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.3), 0 1px 2px -1px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4), 0 4px 6px -4px rgb(0 0 0 / 0.4);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.5), 0 10px 10px -5px rgb(0 0 0 / 0.3);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-color);
}

body.dark-theme {
    background-color: var(--background-color);
    color: var(--text-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid var(--primary-color);
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.lang-btn:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.lang-btn .flag {
    font-size: 1.2rem;
}

/* Affiliate Disclosure */
.affiliate-disclosure {
    background: linear-gradient(90deg, #451a03, #78350f);
    border-bottom: 2px solid var(--accent-color);
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: #fbbf24;
    font-weight: 500;
}

/* Navigation */
.navbar {
    background-color: rgba(26, 26, 26, 0.95);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background-color: var(--surface-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.7) 0%, rgba(26, 26, 26, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: auto;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.6));
  z-index: 10;
}

.hero-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.btn-service {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    width: 100%;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-full {
    width: 100%;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--surface-color);
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--text-primary);
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--surface-light);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-content {
    padding: 2rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background-color: var(--background-color);
}

.why-choose h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--text-primary);
    position: relative;
}

.why-choose h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--success-color), var(--primary-color));
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Checklist Section */
.checklist-section {
    padding: 6rem 0;
    background: var(--surface-color);
}

.checklist-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.checklist-section > .container > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.checklist-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface-light);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    min-width: 150px;
    border: 1px solid var(--border-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.checklist-category {
    background-color: var(--surface-light);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.checklist-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.checklist-item:hover {
    background-color: var(--surface-hover);
    border-color: var(--border-light);
}

.checklist-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    margin-right: 1rem;
    margin-top: 2px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checklist-item input:checked + .checkmark {
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.checklist-item input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.item-text {
    color: var(--text-secondary);
    line-height: 1.5;
    transition: all 0.3s ease;
    flex: 1;
}

.checklist-item input:checked + .checkmark + .item-text {
    text-decoration: line-through;
    opacity: 0.6;
    color: var(--text-muted);
}

.checklist-actions {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: var(--background-color);
}

.contact-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-section > .container > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.975rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: var(--surface-light);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.method-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-content strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.method-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-stats span {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: #9ca3af;
}

/* Consent Modal */
.consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.consent-modal.hidden {
    display: none;
}

.consent-content {
    background: var(--surface-light);
    padding: 3rem;
    border-radius: 1.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: scale(0.9);
    animation: modalAppear 0.3s ease forwards;
    border: 1px solid var(--border-color);
}

@keyframes modalAppear {
    to {
        transform: scale(1);
    }
}

.consent-content h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.consent-content p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.partner-benefits {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.benefit {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.consent-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.consent-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-logo-img {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-color);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        gap: 0;
        border: 1px solid var(--border-color);
        border-top: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu a {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services h2,
    .why-choose h2,
    .checklist-section h2,
    .contact-section h2 {
        font-size: 2.5rem;
    }

    .service-grid,
    .features-grid,
    .checklist-grid {
        grid-template-columns: 1fr;
    }

    .checklist-stats {
        gap: 1rem;
    }

    .consent-buttons {
        flex-direction: column;
    }

    .checklist-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .language-toggle {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-logo-img {
        height: 50px;
    }

    .services,
    .why-choose,
    .checklist-section,
    .contact-section {
        padding: 4rem 0;
    }

    .service-card .service-content,
    .contact-form,
    .checklist-category {
        padding: 1.5rem;
    }

    .consent-content {
        padding: 2rem;
    }

    .brand-text {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.checklist-item:focus-within,
.lang-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Translation animation */
.translating {
    opacity: 0.7;
    transform: scale(0.98);
    transition: all 0.3s ease;
}

/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--surface-color);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* === Scoped legal page polish (non-invasive) === */
.legal {
  max-width: 920px;
  margin: 56px auto;
  padding: 0 20px 80px;
  line-height: 1.75;
  font-size: clamp(16px, 1.05vw + 12px, 18px);
}
.legal h1 {
  font-size: clamp(28px, 2.2vw + 10px, 40px);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.legal h2 {
  font-size: clamp(20px, 1.1vw + 12px, 26px);
  margin: 28px 0 8px;
}
.legal p { margin: 0 0 14px; }
.legal ul, .legal ol { margin: 8px 0 16px 22px; }
.legal li { margin: 6px 0; }
.legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal code, .legal kbd {
  padding: 2px 6px;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95em;
}
/* Light/Dark friendly accents */
:root { --legal-muted: rgba(127,127,127,.85); }
body.dark-theme :root, body.dark-theme { --legal-muted: rgba(200,200,200,.75); }
.legal small, .legal time { color: var(--legal-muted); }
.legal hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127,127,127,.25), transparent);
  margin: 24px 0;
}
/* Compact containers on very small screens */
@media (max-width: 480px) {
  .legal { margin: 32px auto; padding: 0 14px 56px; }
}

/* Hide cookie settings floating button sitewide */
#cmp-fab{display:none !important;}


/* Footer cookie link (subtle, matches existing theme) */
.site-footer-legal {
  display: flex; justify-content: center; align-items: center;
  padding: 16px 12px; font-size: 14px;
  opacity: .85;
}
.site-footer-legal .cookie-settings-link { text-decoration: underline; text-underline-offset: 2px; }
.site-footer-legal .cookie-settings-link:focus { outline: 2px solid currentColor; outline-offset: 2px; }



/* Footer navigation legal links */
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  padding: 18px 10px;
  border-top: 1px solid rgba(127,127,127,.25);
  opacity: .9;
}
.footer-nav a {
  text-decoration: none;
  color: inherit;
}
.footer-nav a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .footer-nav { font-size: 13px; gap: 4px; padding: 14px 6px; }
}



/* Instagram footer link */
.footer-nav .insta-link { display:inline-flex; align-items:center; }
.footer-nav .insta-icon { width:20px; height:20px; }
.footer-nav .insta-link:hover .insta-icon { color:#E1306C; }
/* Back to home link on legal pages */
.back-home-link {
  display:inline-block;
  margin: 12px 0 18px;
  font-size:15px;
  text-decoration:none;
}
.back-home-link:hover { text-decoration:underline; }



/* Hero logo styling */
.hero-logo {
  display: inline-block;
  max-width: min(520px, 60vw);
  height: auto;
  vertical-align: middle;
}



/* Ensure hero logo looks elevated */
.hero-logo { image-rendering:auto; filter: drop-shadow(0 6px 18px rgba(0,0,0,.25)); }



/* --- Fix hero logo visibility and layout --- */
.hero .hero-content .hero-logo { display:flex !important; align-items:center; justify-content:center; gap:1rem; margin-bottom:2rem; }
img.hero-logo-heroimg { display:block; max-width:min(520px, 60vw); height:auto; image-rendering:auto; filter: drop-shadow(0 6px 18px rgba(0,0,0,.25)); }


/* Ensure hero logo appears above all hero content */
.hero h1 img.hero-logo-heroimg {
  position: relative;
  z-index: 5;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
.hero .hero-content {
  position: relative;
  z-index: 1;
}
.hero .hero-content p {
  margin-top: 32px; /* push text lower below the logo */
}



/* Force hero logo visibility and size */
.hero .hero-content h1 { position: relative; z-index: 5; }
img.hero-logo-heroimg {
  position: relative;
  z-index: 5;
  display: block;
  margin: 0 auto 24px auto;
  width: clamp(320px, 45vw, 680px);
  height: auto;
}



/* DEBUG: make hero logo undeniably visible (remove after check) */
img.hero-logo-heroimg {
  outline: 2px dashed #ff5252;            /* TEMP outline so we can see the box */
  background: rgba(0,0,0,0.25);            /* TEMP dark backing for contrast */
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.45)) brightness(1.35) contrast(1.25);
}
@media (prefers-color-scheme: light) {
  img.hero-logo-heroimg { background: rgba(255,255,255,0.18); }
}



/* Screen-reader only helper */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 1px, 1px); white-space: nowrap; border: 0;
}



/* Dedicated hero logo container */
.hero-mark {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.hero-mark img.hero-logo-heroimg {
  display: block;
  width: clamp(340px, 46vw, 720px);
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.35));
}
/* DEBUG: show outline temporarily to verify visibility - remove after confirming */
.hero-mark img.hero-logo-heroimg { outline: 2px dashed rgba(255,255,255,.65); outline-offset: 4px; }



/* FORCE hero logo to be visible: absolute, centered */
.hero { position: relative; }
.hero-mark {
  position: absolute !important;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: block;
  width: 100%;
  text-align: center;
  pointer-events: none; /* don't block buttons */
}
.hero-mark img.hero-logo-heroimg {
  display: inline-block !important;
  width: clamp(360px, 48vw, 760px) !important;
  height: auto !important;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.4));
  outline: 2px dashed rgba(255,255,255,.7); /* DEBUG: remove later */
  outline-offset: 4px;
}
/* push subtitle down to avoid overlap */
.hero .hero-subtitle { margin-top: 140px !important; }


/* mirror v22 clean overrides */

/* INLINE hero logo (final clean v22) */
.hero { position: relative; }
.hero-overlay { z-index: 0 !important; }
.hero .hero-content { position: relative; z-index: 1 !important; }
.hero-mark{
  position:absolute !important;
  top: 18% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 9999 !important;
  width: clamp(420px, 50vw, 820px) !important;
  height: clamp(120px, 16vw, 230px) !important;
  pointer-events: none !important;
  background-image: url('assets/hero-logo-cut.png') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;        /* no box, only drop-shadow on image look */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.hero .hero-subtitle{ margin-top: 160px !important; }



/* HERO logo final (persistent) */
.hero { position: relative; }
.hero .hero-logo {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: auto;
  z-index: 12;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.45));
  pointer-events: none;
}
.hero .hero-content { position: relative; z-index: 10; }
.hero .hero-subtitle { margin-top: 110px; }



/* === HERO LOGO v25 === */
.hero { position: relative; }
.hero-logo {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: auto;
  z-index: 20;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
  pointer-events: none;
}
@media (max-width: 640px) {
  .hero-logo { width: 207px; top: 40%; }
}
/* Ensure subtitle does not overlap too closely */
.hero .hero-subtitle { margin-top: 18px; }



/* Legal Pack additions */
.footer-nav {
  display:flex; justify-content:center; flex-wrap:wrap; gap:6px;
  font-size:14px; padding:18px 10px; border-top:1px solid rgba(127,127,127,.25); opacity:.9;
}
.footer-nav a { text-decoration:none; color:inherit; }
.footer-nav a:hover { text-decoration:underline; }
@media (max-width: 480px) { .footer-nav { font-size:13px; gap:4px; padding:14px 6px; } }



/* Language switch in header */
header a.lang-switch, nav a.lang-switch {
  margin-left: 12px;
  font-size: 14px;
  opacity: .9;
  text-decoration: none;
}
header a.lang-switch:hover, nav a.lang-switch:hover { text-decoration: underline; }


/* === Gijs v8 fix: Equal-height checklist tiles & 4 columns on desktop === */
.checklist-grid { align-items: stretch; }
.checklist-category { display:flex; flex-direction:column; height:100%; }
.checklist-items { flex: 1 1 auto; }
.checklist-actions { margin-top:auto; }
/* Force 4 columns on wide screens */
@media (min-width: 1200px) {
  .checklist-grid { grid-template-columns: repeat(4, minmax(260px, 1fr)); }
}
/* === end fix === */



/* === Gijs v9: floating header (sticky) === */
.navbar{
  position: sticky;
  top: 0;
  z-index: 1000;
}
/* Keep content from hiding behind sticky nav when jumping to anchors */
:root { scroll-padding-top: 72px; }
/* === end v9 === */



/* === Gijs v14_safe: Compactere checklist-tiles + meer kolommen === */
.checklist-section .checklist-category { padding: 10px 12px; border-radius: 12px; }
.checklist-section .checklist-category h3 { font-size: 0.95rem; margin-bottom: 6px; line-height: 1.2; }
.checklist-section .checklist-items { gap: 0.5rem; }
.checklist-section .checklist-item { font-size: 0.9rem; }
.checklist-section .checklist-item .checkmark { width: 16px; height: 16px; min-width: 16px; }
@media (min-width: 1280px) {
  .checklist-grid { grid-template-columns: repeat(5, minmax(180px, 1fr)); gap: 0.9rem; }
}
@media (min-width: 1600px) {
  .checklist-grid { grid-template-columns: repeat(6, minmax(160px, 1fr)); }
}

