/* CSS VARIABLES & DESIGN SYSTEM */
:root {
    --bg-color: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #f8fafc;
    --text-light-muted: #94a3b8;
    
    --accent-primary: #3B9DD3; /* bauerundguse Blue */
    --accent-primary-hover: #2a7ca8;
    
    --accent-secondary: #7B3A8D; /* bauerundguse Purple */
    --accent-secondary-hover: #5e2a6b;
    --accent-secondary-light: #a86bba; /* For better contrast on dark bg */
    
    --card-bg: #ffffff;
    --card-bg-dark: rgba(30, 41, 59, 0.7);
    --card-border: #e2e8f0;
    --card-border-dark: rgba(255, 255, 255, 0.1);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

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

section {
    padding: 100px 0;
    position: relative;
}

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

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

.section-gray {
    background-color: var(--bg-secondary);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.section-dark p, .section-darker p {
    color: var(--text-light-muted);
}

.text-center { text-align: center; }
.text-accent { color: var(--accent-primary); }

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(59, 157, 211, 0.1);
    color: var(--accent-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-dark .badge {
    background: rgba(59, 157, 211, 0.2);
}

.text-center .badge {
    display: table;
    margin: 0 auto 16px auto;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 157, 211, 0.39);
}

.btn-primary:hover {
    background-color: var(--accent-primary-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(59, 157, 211, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--card-border);
}

.section-dark .btn-outline {
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* BUTTON SWOOSH EFFECT */
@keyframes buttonSwoosh {
    0% { transform: skewX(-20deg) translateX(-200%); opacity: 0; }
    1% { opacity: 1; }
    10% { transform: skewX(-20deg) translateX(350%); opacity: 1; }
    11% { transform: skewX(-20deg) translateX(350%); opacity: 0; }
    60% { transform: skewX(-20deg) translateX(-200%); opacity: 0; }
    61% { opacity: 1; }
    70% { transform: skewX(-20deg) translateX(350%); opacity: 1; }
    71% { transform: skewX(-20deg) translateX(350%); opacity: 0; }
    100% { transform: skewX(-20deg) translateX(350%); opacity: 0; }
}

.btn-primary, .funnel-btn, .btn-submit, .sticky-offer .btn-outline {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary::after, .funnel-btn::after, .btn-submit::after, .sticky-offer .btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40px;
    width: 30px;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transform: skewX(-20deg) translateX(-200%);
    opacity: 0;
    animation: buttonSwoosh 10s infinite ease-in-out;
}

/* GRIDS & LAYOUTS */
.grid {
    display: grid;
    gap: 32px;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* CARDS */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.card-dark {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

/* STATS */
.stat-box {
    text-align: center;
    padding: 24px;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light-muted);
}

/* HERO SECTION */
.hero {
    padding: 140px 0 60px;
    background-color: var(--bg-color);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-text {
    text-align: left;
}
.hero-text h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-mockup-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 8px solid var(--card-border);
    max-width: 500px;
    width: 100%;
}
.mockup-img {
    width: 100%;
    height: auto;
    display: block;
}

/* TRUST BAR */
.trust-bar-wrapper {
    padding: 40px 0;
    margin-bottom: 20px;
}
.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.trust-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.stat-box {
    text-align: center;
    flex: 1;
    min-width: 150px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-box:last-child {
    border-right: none;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-number span { font-size: 2.5rem; vertical-align: middle; }
.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    line-height: 1.3;
}
.case-study-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}
.case-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.case-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.case-study-card:hover .case-img-wrap img {
    transform: scale(1.05);
}
.case-content {
    padding: 32px;
}
.case-stats {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
}
.case-stat {
    display: flex;
    flex-direction: column;
}
.case-stat strong {
    font-size: 1.5rem;
    color: var(--accent-primary);
}
.case-stat span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ICONS */
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 157, 211, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.icon-box svg {
    width: 24px;
    height: 24px;
}

/* REEL SCROLL PORTFOLIO */
.reel-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.reel-scroll-container::-webkit-scrollbar {
    display: none;
}
.reel-card {
    flex: 0 0 auto;
    width: 280px;
    height: 480px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: var(--shadow-xl);
    background: #000;
    cursor: pointer;
}
.reel-card img,
.reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.reel-card:hover img,
.reel-card:hover video {
    transform: scale(1.05);
    opacity: 1;
}

/* Custom Zoom for Hiring Video Poster */
#hiring-video.poster-mode {
    transform-origin: center center;
    transform: scale(1.6) translateY(-15%);
}
.reel-card:hover #hiring-video.poster-mode {
    transform-origin: center center;
    transform: scale(1.65) translateY(-15%);
}
.reel-badge-top {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    gap: 6px;
}
.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.4);
    transition: transform 0.3s ease, background 0.3s ease;
}
.reel-card:hover .reel-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(255,255,255,0.25);
}
.reel-play-icon {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid white;
    margin-left: 4px; /* optical centering */
}
.reel-info-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4) 60%, transparent);
    color: white;
}
.reel-category {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 8px;
    backdrop-filter: blur(4px);
}
.reel-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

/* TEAM */
.team-member {
    text-align: center;
}
.team-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--card-border);
}

/* FAQ */
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item-header {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    opacity: 0;
    padding: 0 24px;
    transition: all 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 24px 24px;
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* LANG SWITCHER */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.1);
}
.lang-btn {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}
.lang-btn.active {
    background: var(--accent-primary);
    color: white;
}

/* FORMS (Kept mostly as original but modernized) */
.contact-section {
    background: var(--bg-darker);
    position: relative;
}
.contact-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group-full { grid-column: 1 / -1; }
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light-muted);
    margin-bottom: 8px;
}
.form-label .required { color: #ef4444; }
.form-input, .form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px;
    color: white;
    font-family: var(--font-family);
    transition: border-color 0.3s ease;
}
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}
.package-radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}
.package-radio-card { cursor: pointer; position: relative; }
.package-radio-card input { position: absolute; opacity: 0; }
.package-radio-inner {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.02);
}
.package-radio-card input:checked + .package-radio-inner {
    border-color: var(--accent-primary);
    background: rgba(59, 157, 211, 0.1);
}
.pkg-title { font-weight: 600; color: white; display: block; margin: 8px 0 4px; }
.pkg-price { color: var(--accent-primary); font-size: 0.9rem; font-weight: 600; display: block;}
.pkg-note { font-size: 0.8rem; color: var(--text-light-muted); display: block; margin-top: 4px;}
.btn-submit {
    width: 100%;
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 24px;
    transition: background 0.3s ease;
}
.btn-submit:hover { background: var(--accent-primary-hover); }
.hp-field { display: none; }
.form-feedback {
    display: none;
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 500;
}
.form-feedback.visible { display: flex; align-items: flex-start; gap: 12px;}
.form-feedback.success { background: rgba(34, 197, 94, 0.1); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.form-feedback.error { background: rgba(239, 68, 68, 0.1); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.2); }
.form-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 32px 0; }

/* ─── LEAD MAGNET FUNNEL ─── */
.funnel-section {
    background-color: var(--bg-darker);
    padding: 80px 0;
}
.funnel-card {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}
.funnel-progress-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}
.funnel-progress-track {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}
.funnel-progress-fill {
    height: 100%;
    background: var(--accent-primary);
    width: 33%;
    transition: width 0.4s ease;
}
.funnel-progress-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
}
.funnel-step {
    display: none;
    animation: fadeInStep 0.4s ease forwards;
}
.funnel-step.active {
    display: block;
}
@keyframes fadeInStep {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.funnel-step h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.funnel-step p.subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.funnel-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.funnel-option {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    font-weight: 600;
    color: var(--accent-primary);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8fafc;
}
.funnel-option:hover {
    border-color: var(--accent-primary);
    background: rgba(59, 157, 211, 0.05);
}
.funnel-option.selected {
    border-color: var(--accent-primary);
    background: rgba(59, 157, 211, 0.1);
    box-shadow: 0 0 0 4px rgba(59, 157, 211, 0.15);
}
.funnel-btn {
    width: 100%;
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s ease;
    opacity: 0.5;
    pointer-events: none;
}
.funnel-btn.enabled {
    opacity: 1;
    pointer-events: auto;
}
.funnel-btn.enabled:hover {
    background: var(--accent-primary-hover);
}

/* ─── STICKY OFFER BOX ─── */
.sticky-offer {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 24px;
    width: 320px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(123, 58, 141, 0.3);
    z-index: 999;
    color: white;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}
.sticky-offer.visible {
    transform: translateY(0);
    opacity: 1;
}
.sticky-offer-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 28px;
    height: 28px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border: 2px solid #0f172a;
    transition: transform 0.2s;
}
.sticky-offer-close:hover {
    transform: scale(1.1);
}
.sticky-badge {
    background: var(--accent-secondary-light);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.sticky-offer h4 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}
.sticky-offer p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.4;
}
.sticky-offer .btn-outline {
    width: 100%;
    border-color: var(--accent-secondary-light);
    color: var(--accent-secondary-light);
    padding: 10px;
    font-size: 0.95rem;
}
.sticky-offer .btn-outline:hover {
    background: rgba(168, 107, 186, 0.1);
}

/* FOOTER */
footer {
    background: var(--bg-darker);
    color: var(--text-light-muted);
    text-align: center;
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
footer a { color: var(--text-light-muted); text-decoration: none; margin: 0 10px; }
footer a:hover { color: white; }

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-darker);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 24px;
    border-radius: 12px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    box-shadow: var(--shadow-xl);
    width: 90%;
    max-width: 600px;
}
.cookie-banner.hidden { display: none; }
.cookie-link { color: var(--accent-primary); text-decoration: none; }

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
    section { padding: 60px 0; }
    .hero { padding: 100px 0 60px; }
    
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text { text-align: center; }
    .hero-text p { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; flex-direction: column; }
    
    .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
    .stat-box:last-child { border-bottom: none; padding-bottom: 0; }
    
    .cookie-banner { flex-direction: column; text-align: center; }
    
    .funnel-card { padding: 30px 20px; margin: 0 15px; }
    .sticky-offer { 
        bottom: 0; right: 0; width: 100%; 
        border-radius: 20px 20px 0 0; 
        padding: 20px; 
        border-left: none; border-right: none; border-bottom: none;
    }
    .sticky-offer-close { top: 10px; right: 10px; }
}
