/* ============================================
   FEF-Consulting - Premium Minimal Design v3
   Kompakt, elegant, schwarz/weiß, filigrane Schrift
   ============================================ */

/* Inter Font - lokal gehostet (DSGVO-konform, kein externer Google-Aufruf) */
/* inter-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/inter-v20-latin-300.woff2') format('woff2'),
         url('fonts/inter-v20-latin-300.woff') format('woff');
}
/* inter-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/inter-v20-latin-regular.woff2') format('woff2'),
         url('fonts/inter-v20-latin-regular.woff') format('woff');
}
/* inter-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/inter-v20-latin-500.woff2') format('woff2'),
         url('fonts/inter-v20-latin-500.woff') format('woff');
}
/* inter-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/inter-v20-latin-600.woff2') format('woff2'),
         url('fonts/inter-v20-latin-600.woff') format('woff');
}
/* inter-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/inter-v20-latin-700.woff2') format('woff2'),
         url('fonts/inter-v20-latin-700.woff') format('woff');
}

/* CSS Variables */
:root {
    --color-black: #000000;
    --color-dark: #111111;
    --color-gray-dark: #333333;
    --color-gray: #666666;
    --color-gray-light: #999999;
    --color-gray-lighter: #e5e5e5;
    --color-light: #f7f7f7;
    --color-white: #ffffff;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-soft: 0 2px 15px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 25px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 8px 40px rgba(0, 0, 0, 0.12);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Animierter Netzwerk-Hintergrund Canvas */
#network-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-gray-dark);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
    /* Subtiler Hintergrund-Gradient */
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
    background-attachment: fixed;
}

/* Typography - Filigran und Clean */
h1, h2, h3, h4 {
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.25;
    color: var(--color-black);
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    margin-bottom: 0.75rem;
    color: var(--color-gray);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Container */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Highlight Text - Grau statt Grün */
.highlight {
    color: var(--color-gray);
}

/* ============================================
   Buttons - Elegant mit weichen Kanten
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--color-black);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-gray-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--color-black);
    border: 1.5px solid var(--color-black);
}

.btn-secondary:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* ============================================
   Availability Badge - Grün blinkender Punkt
   ============================================ */
.availability-bar {
    background: var(--color-white);
    padding: 0.75rem 0;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.availability-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.availability-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation: pulse-green 2s ease-in-out infinite;
}

.availability-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes pulse-ring {
    0% { width: 8px; height: 8px; opacity: 0.8; }
    50% { width: 18px; height: 18px; opacity: 0; }
    100% { width: 8px; height: 8px; opacity: 0; }
}

.availability-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #22c55e;
    letter-spacing: 0.02em;
}

/* ============================================
   Header - Minimalistisch, zentriert, scrollt mit
   ============================================ */
.header {
    position: relative;
    background: var(--color-white);
    padding: 2rem 0 1rem;
    z-index: 1;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
}

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

/* ============================================
   Hero Section - Kompakt und Elegant
   ============================================ */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0 4.5rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    color: var(--color-black);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-gray-dark);
    margin-bottom: 0.75rem;
}

.hero-subtitle strong {
    font-weight: 500;
    color: var(--color-black);
}

.hero-text {
    font-size: 1rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ============================================
   Hero Rating (Stars + Text)
   ============================================ */
.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 1.25rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.hero-stars svg {
    width: 14px;
    height: 14px;
}

.hero-rating-text {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--color-gray);
    letter-spacing: 0.01em;
}

@media (max-width: 480px) {
    .hero-rating {
        flex-direction: column;
        gap: 0.375rem;
    }
    
    .hero-rating-text {
        font-size: 0.75rem;
    }
}

/* ============================================
   Trust Badges - Kompakt
   ============================================ */
.trust-badges {
    padding: 5rem 0;
    background: var(--color-light);
    position: relative;
    z-index: 1;
}

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

.badge {
    text-align: center;
    padding: 1.25rem 1rem;
}

.badge-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    border-radius: var(--radius-md);
    color: var(--color-white);
}

.badge-icon svg {
    width: 24px;
    height: 24px;
}

.badge h3 {
    font-size: 0.9375rem;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.badge p {
    font-size: 0.8125rem;
    color: var(--color-gray);
    margin-bottom: 0;
}

/* ============================================
   Services Section - Kompakt und Clean
   ============================================ */
.services {
    padding: 6rem 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.services h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--color-gray);
    max-width: 550px;
    margin: 0 auto 2.5rem;
}

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

.service-card {
    background: var(--color-white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-lighter);
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--color-gray-light);
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    color: var(--color-black);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    color: var(--color-black);
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
}

.service-card > p {
    color: var(--color-gray);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-gray-dark);
    font-size: 0.875rem;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 5px;
    height: 5px;
    background: var(--color-black);
    border-radius: 50%;
}

/* ============================================
   Clients Section - Unsere Kunden
   ============================================ */
.clients-section {
    padding: 4rem 0;
    background: var(--color-light);
    position: relative;
    z-index: 1;
}

.clients-title {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.clients-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem 3rem;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.45;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 0.7;
}

.client-logo img {
    max-height: 32px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .clients-section {
        padding: 3rem 0;
    }
    
    .clients-grid {
        gap: 1.5rem 2rem;
    }
    
    .client-logo img {
        max-height: 26px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        gap: 1.25rem 1.5rem;
    }
    
    .client-logo img {
        max-height: 22px;
        max-width: 85px;
    }
}

/* ============================================
   CTA Section - Kompakt
   ============================================ */
.cta-section {
    padding: 6rem 0;
    background: var(--color-black);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: var(--color-gray-light);
    font-size: 1rem;
    margin-bottom: 1.75rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--color-white);
    color: var(--color-black);
}

.cta-section .btn-primary:hover {
    background: var(--color-gray-lighter);
}

/* ============================================
   Footer - Kompakt und Clean
   ============================================ */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 5rem 0 2.5rem;
    position: relative;
    z-index: 1;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-img {
    height: 40px;
    /* Gleiche Größe wie Header-Logo */
}

.footer-brand p {
    color: var(--color-gray-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-contact h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 0.8125rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.footer-contact a {
    color: var(--color-gray-light);
}

.footer-contact a:hover {
    color: var(--color-white);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-gray-dark);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--color-gray);
    transform: translateY(-2px);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-cta {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.footer-cta .btn-primary {
    background: var(--color-white);
    color: var(--color-black);
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
}

.footer-cta .btn-primary:hover {
    background: var(--color-gray-lighter);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-dark);
}

.footer-bottom p {
    color: var(--color-gray);
    font-size: 0.8125rem;
    margin-bottom: 0;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--color-gray);
    font-size: 0.8125rem;
}

.footer-nav a:hover {
    color: var(--color-white);
}

/* ============================================
   Legal Pages (Impressum, Datenschutz)
   ============================================ */
.legal-page {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.legal-page h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--color-black);
}

.legal-page h3 {
    font-size: 1.0625rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-page p {
    margin-bottom: 0.75rem;
    color: var(--color-gray-dark);
    font-size: 0.9375rem;
}

.legal-page ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.legal-page li {
    margin-bottom: 0.375rem;
    color: var(--color-gray-dark);
    font-size: 0.9375rem;
}

.legal-page a {
    color: var(--color-black);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--color-gray);
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-decoration: none;
}

.back-link:hover {
    color: var(--color-black);
}

.contact-block {
    background: var(--color-light);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.contact-block p {
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-cta {
        grid-column: span 2;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .header-content {
        height: 60px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .hero {
        padding: 80px 0 50px;
        min-height: auto;
    }
    
    .hero-text {
        font-size: 0.9375rem;
    }
    
    .trust-badges {
        padding: 2rem 0;
    }
    
    .badges-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .badge {
        padding: 1rem 0.75rem;
    }
    
    .badge-icon {
        width: 44px;
        height: 44px;
    }
    
    .services {
        padding: 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .footer {
        padding: 2.5rem 0 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-cta {
        grid-column: auto;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .badges-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.875rem;
    }
    
    .legal-page {
        padding: 100px 0 50px;
    }
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-black);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--color-black);
    color: var(--color-white);
}


/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-gray-lighter);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1.5rem 0;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}


/* ============================================
   Cookie Settings Modal
   ============================================ */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal-content {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-gray-lighter);
}

.cookie-modal-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-gray);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.cookie-modal-close:hover {
    color: var(--color-black);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-modal-body > p {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cookie-option {
    background: var(--color-light);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.cookie-option:last-child {
    margin-bottom: 0;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-option-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-option-label input[type="checkbox"] {
    display: none;
}

.cookie-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-gray-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cookie-option-label input[type="checkbox"]:checked + .cookie-checkbox {
    background: var(--color-black);
    border-color: var(--color-black);
}

.cookie-option-label input[type="checkbox"]:checked + .cookie-checkbox::after {
    content: '✓';
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: bold;
}

.cookie-option-label input[type="checkbox"]:disabled + .cookie-checkbox {
    background: var(--color-gray-light);
    border-color: var(--color-gray-light);
    cursor: not-allowed;
}

.cookie-option-label input[type="checkbox"]:disabled:checked + .cookie-checkbox::after {
    color: var(--color-gray);
}

.cookie-badge {
    font-size: 0.6875rem;
    background: var(--color-gray-lighter);
    color: var(--color-gray);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.cookie-option-desc {
    font-size: 0.8125rem;
    color: var(--color-gray);
    margin: 0;
    line-height: 1.5;
}

.cookie-option-service {
    font-size: 0.75rem;
    color: var(--color-gray-light);
    margin: 0.25rem 0 0;
    font-style: italic;
}

.cookie-settings-link {
    cursor: pointer;
    text-decoration: underline;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.cookie-settings-link:hover {
    opacity: 1;
}

.cookie-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 480px) {
    .cookie-modal-content {
        max-height: 85vh;
    }
    
    .cookie-modal-header {
        padding: 1rem;
    }
    
    .cookie-modal-body {
        padding: 1rem;
    }
    
    .cookie-option-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}


/* ============================================
   Scroll Animations - Fade In Effects
   ============================================ */

/* Initial state for animated elements */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for grid items */
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   Enhanced Hover Effects
   ============================================ */

/* Service Cards - Enhanced Hover */
.service-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--color-gray-light);
}

.service-card .service-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background-color: var(--color-black);
}

.service-card:hover .service-icon svg {
    stroke: var(--color-white);
}

/* Trust Badges - Enhanced Hover */
.badge {
    transition: transform 0.3s ease, 
                background-color 0.3s ease,
                box-shadow 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
    background-color: var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.badge .badge-icon {
    transition: transform 0.3s ease;
}

.badge:hover .badge-icon {
    transform: scale(1.15);
}

/* CTA Button - Enhanced Pulse Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Footer Social Icons - Enhanced Hover */
.social-links a {
    transition: transform 0.3s ease, 
                background-color 0.3s ease,
                opacity 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    opacity: 0.8;
}

/* Hero Section - Subtle Animation */
.hero h1 {
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero .btn-primary {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle text highlight on hover for service list items */
.service-features li {
    transition: padding-left 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-features li {
    color: var(--color-black);
}

/* Logo subtle hover effect */
.logo img {
    transition: opacity 0.3s ease;
}

.logo:hover img {
    opacity: 0.8;
}
