:root {
    --color-bg: #ffffff;
    --color-bg-light: #f8fafc;
    --color-text: #1e293b;
    --color-text-muted: #64748b;
    
    --color-primary: #1c2541; /* B&G Dark Blue */
    --color-accent: #00a8e8; /* B&G Light Blue / Cyan */
    --color-accent-hover: #007ea7;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    
    --border-color: #e2e8f0;
    --border-radius: 16px;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.03em; }
.hero-text h1 {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
h2 { font-size: clamp(2rem, 4vw, 2.75rem); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 700; }

p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--color-text);
    font-weight: 600;
}

.text-highlight {
    color: var(--color-accent);
}

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

.section {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 232, 0.3);
}

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

.btn-secondary:hover {
    background: var(--color-bg-light);
    border-color: #cbd5e1;
}

.btn-large { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-small { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(0, 168, 232, 0.1);
    color: var(--color-accent);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtext {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: block;
    object-fit: cover;
}

/* Trust Bar */
.trust-bar {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item h3 {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

/* Expertise / Teams */
.expertise-section {
    background: var(--color-bg);
}

.expertise-header {
    margin-bottom: 4rem;
}

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

.expert-card {
    padding: 2rem;
    background: var(--color-bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-color);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(0, 168, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

/* Channels */
.channels-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.channels-text {
    flex: 1;
}

.channel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.tag {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.channels-icons {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.channel-icon {
    background: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: var(--transition);
}

.channel-icon:hover {
    transform: scale(1.05);
    color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.channel-icon svg, .channel-icon img { width: 48px; height: 48px; }

.brand-icon img {
    /* Approximate #1c2541 */
    filter: invert(12%) sepia(25%) saturate(1637%) hue-rotate(189deg) brightness(96%) contrast(92%);
    transition: var(--transition);
}

.channel-icon:hover .brand-icon img {
    /* Approximate #00a8e8 */
    filter: invert(48%) sepia(91%) saturate(1478%) hue-rotate(167deg) brightness(101%) contrast(101%);
}

/* Phone Mockup Features */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.feature-list li svg {
    color: var(--color-accent);
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 12px solid var(--color-primary);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Phone Notch */
.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: var(--color-primary);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 28px;
}

.phone-screen img, .phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animated Before/After Slider */
.animated-slider {
    position: relative;
}

.animated-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    animation: slide-mask 5s infinite alternate ease-in-out;
}

.slider-before-wrapper img {
    width: 276px; /* 300px phone frame - 24px borders = 276px. Ensures image doesn't scale with wrapper */
    max-width: none;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #fff;
    transform: translateX(-50%);
    animation: slide-handle 5s infinite alternate ease-in-out;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 10;
}

.slider-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23000" viewBox="0 0 16 16"><path d="M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8zm-2.5 0a.5.5 0 0 1 .5-.5h.5a.5.5 0 0 1 0 1H2a.5.5 0 0 1-.5-.5zm11 0a.5.5 0 0 1 .5-.5h.5a.5.5 0 0 1 0 1h-.5a.5.5 0 0 1-.5-.5z"/><path d="M8 2.5a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0V3a.5.5 0 0 1 .5-.5zm0 8a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2a.5.5 0 0 1 .5-.5z"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
}

@keyframes slide-mask {
    0%, 10% { width: 10%; }
    90%, 100% { width: 90%; }
}

@keyframes slide-handle {
    0%, 10% { left: 10%; }
    90%, 100% { left: 90%; }
}

.bg-blue-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.screen-icon {
    width: 80px;
    height: 80px;
    color: #fff;
    opacity: 0.9;
}

/* Philosophy */
.philosophy-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* Values Grid (3 Dinge) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.emoji-header {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Before / After */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.comparison-card.before {
    border-top: 6px solid #ef4444; /* Red */
}

.comparison-card.after {
    border-top: 6px solid #22c55e; /* Green */
}

.comparison-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.comparison-card li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.comparison-card.before li svg { color: #ef4444; flex-shrink: 0; }
.comparison-card.after li svg { color: #22c55e; flex-shrink: 0; }

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.person {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}

.security-question input { width: 80px; }

/* Footer */
.footer {
    background: var(--color-bg-light);
    padding: 4rem 0 6rem; /* Extra bottom padding for cookie banner */
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-logo:hover {
    filter: none;
    opacity: 1;
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: bottom 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content p {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.cookie-links a {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    text-decoration: underline;
}

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

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Hero Animation Container */
.hero-animation-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-pulse-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(0, 168, 232, 0.7);
    animation: pulseStrong 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

.center-pulse-circle svg {
    width: 56px;
    height: 56px;
}

@keyframes pulseStrong {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 168, 232, 0.8); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 35px rgba(0, 168, 232, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 168, 232, 0); }
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 0 15px rgba(0, 168, 232, 0.3);
    animation: floatDynamic 2.2s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
    opacity: 0;
    z-index: 3;
}

.floating-icon svg { width: 32px; height: 32px; }
.like-icon svg { color: #ef4444; fill: #ef4444; }
.share-icon svg { color: #3b82f6; }
.comment-icon svg { color: #10b981; }

.like-icon { left: 15%; bottom: 10%; animation-delay: 0s; }
.share-icon { right: 15%; bottom: 30%; animation-delay: 0.4s; }
.comment-icon { left: 25%; bottom: 50%; animation-delay: 0.8s; }
.like-icon.delay-1 { right: 25%; bottom: 10%; animation-delay: 0.6s; }
.comment-icon.delay-2 { right: 5%; bottom: 50%; animation-delay: 1.1s; }
.share-icon.delay-3 { left: 5%; bottom: 40%; animation-delay: 0.3s; }
.like-icon.delay-4 { left: 40%; bottom: 15%; animation-delay: 0.9s; }
.comment-icon.delay-5 { right: 40%; bottom: 20%; animation-delay: 0.2s; }
.share-icon.delay-6 { left: 20%; bottom: 70%; animation-delay: 1.3s; }
.like-icon.delay-7 { right: 20%; bottom: 70%; animation-delay: 0.7s; }

@keyframes floatDynamic {
    0% { transform: translateY(30px) scale(0.5) rotate(-15deg); opacity: 0; }
    15% { transform: translateY(10px) scale(1.1) rotate(5deg); opacity: 1; }
    30% { transform: translateY(-10px) scale(1) rotate(-5deg); opacity: 1; }
    70% { transform: translateY(-70px) scale(1) rotate(5deg); opacity: 1; }
    100% { transform: translateY(-120px) scale(0.6) rotate(15deg); opacity: 0; }
}

.rounded-image {
    border-radius: 28px;
    width: 100%;
    height: auto;
    display: block;
}

.video-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.mute-toggle-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.mute-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.mute-toggle-btn svg {
    width: 20px;
    height: 20px;
}

.mx-auto { margin-left: auto; margin-right: auto; }
.text-left { text-align: left !important; }

/* FAQ Section */
.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question svg {
    transition: transform 0.3s ease;
    color: var(--color-accent);
}

.faq-question.active svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
    padding: 0 1.5rem;
}

.faq-answer p {
    margin-bottom: 1.5rem;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.channels-icons.center-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Blue Background Section Styles */
.bg-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary p, .bg-primary li, .bg-primary .text-muted {
    color: #ffffff;
}

.bg-primary .badge {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.bg-primary .value-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.bg-primary .channel-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    color: #ffffff;
}

.bg-primary .phone-frame {
    border-color: #ffffff;
}

.bg-primary .channel-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.bg-primary .brand-icon img {
    filter: brightness(0) invert(1);
}

.bg-primary .channel-icon:hover .brand-icon img {
    filter: brightness(0) invert(1);
}

.bg-primary .contact-form-box {
    background: var(--color-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.bg-primary .form-group input, .bg-primary .form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.bg-primary .form-group label {
    color: #ffffff;
}

.bg-primary .form-group input:focus, .bg-primary .form-group textarea:focus {
    background: rgba(255, 255, 255, 0.15);
}

.bg-primary .avatar {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.bg-primary .contact-info strong, .bg-primary .contact-info span {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .expertise-grid, .trust-grid, .values-grid, .comparison-grid, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .channels-flex {
        flex-direction: column;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 5rem;
    }
    
    .feature-row.reverse { direction: ltr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}
