/* Variables */
:root {
    --bg-dark: #0B0F19;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --primary: #6366F1;
    --primary-hover: #4F46E5;
    --accent-pink: #EC4899;
    --accent-purple: #A855F7;
    --accent-blue: #3B82F6;
    --accent-green: #10B981;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* Typography */
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; font-weight: 800; margin-bottom: 24px; background: linear-gradient(to right, #fff, #a5b4fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.2; font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
p { color: var(--text-muted); font-size: 1.125rem; }
.text-gradient { background: linear-gradient(to right, var(--primary), var(--accent-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Utilities */
.section-tag { display: inline-block; padding: 6px 16px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-glass); border-radius: 100px; font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.glass-card { background: var(--bg-card); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border-glass); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); }
.glass-card:hover { background: var(--bg-card-hover); transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: 1rem; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
.btn-glow { box-shadow: 0 0 20px rgba(99, 102, 241, 0.4); }
.btn-glow:hover { box-shadow: 0 0 30px rgba(99, 102, 241, 0.7); }
.btn-secondary { background: rgba(255, 255, 255, 0.05); color: #fff; border: 1px solid var(--border-glass); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

.w-100 { width: 100%; } .text-center { text-align: center; } .mt-4 { margin-top: 24px; }
.text-green { color: var(--accent-green); } .text-red { color: var(--accent-pink); }

/* Grid Layouts */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

/* Floating Header */
.header-wrapper { position: fixed; top: 20px; left: 0; width: 100%; z-index: 1000; display: flex; justify-content: center; padding: 0 24px; pointer-events: none; }
.header { background: rgba(11, 15, 25, 0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border-glass); border-radius: 100px; width: 100%; max-width: 1000px; padding: 12px 24px; transition: var(--transition); pointer-events: auto; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.header.scrolled { background: rgba(11, 15, 25, 0.85); border-color: rgba(255,255,255,0.15); box-shadow: 0 10px 40px rgba(0,0,0,0.4); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 32px; }
.nav-menu { display: flex; gap: 32px; }
.nav-menu a { font-size: 0.9rem; font-weight: 500; color: var(--text-main); transition: var(--transition); position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-menu a:hover::after { width: 100%; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: var(--transition); }

/* Hero Section */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 120px; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('tlo.webp') center/cover no-repeat; z-index: -2; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,15,25,0.98) 0%, rgba(11,15,25,0.7) 50%, rgba(11,15,25,0.95) 100%); z-index: -1; }
.hero-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }

.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); color: #a5b4fc; border-radius: 100px; font-size: 0.875rem; font-weight: 600; margin-bottom: 24px; }
.badge-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 10px var(--primary); }
.hero-buttons { display: flex; gap: 16px; margin: 32px 0; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-pills span { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; padding: 8px 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-glass); border-radius: 100px; color: var(--text-muted); }

/* Hero Visual (Right Side) - Fixed Positioning */
.hero-visual { position: relative; height: 650px; width: 100%; }
.visual-wrapper { position: relative; width: 100%; height: 100%; }
.person-img { position: absolute; bottom: 0; right: 10%; height: 95%; object-fit: contain; z-index: 2; }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; }
.orb-1 { width: 300px; height: 300px; background: var(--accent-purple); top: 10%; right: 20%; opacity: 0.4; }
.orb-2 { width: 250px; height: 250px; background: var(--accent-blue); bottom: 10%; left: 10%; opacity: 0.3; }

/* Floating Cards - Constrained to right column */
.float-card { position: absolute; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 16px; z-index: 3; box-shadow: 0 20px 40px rgba(0,0,0,0.4); animation: float 6s ease-in-out infinite; max-width: 200px; }
.card-active { top: 15%; right: 70%; display: flex; align-items: center; gap: 8px; font-weight: 600; animation-delay: 0s; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.green { background: var(--accent-green); box-shadow: 0 0 10px var(--accent-green); }
.card-chart { top: 25%; right: -5%; width: 160px; animation-delay: 1s; }
.card-cpa { bottom: 30%; right: 65%; animation-delay: 2s; }
.card-roas { bottom: 40%; right: -10%; animation-delay: 1.5s; }
.card-lead { bottom: 10%; right: 40%; display: flex; align-items: center; gap: 12px; animation-delay: 0.5s; width: max-content; max-width: 250px; }
.card-remarketing { top: 50%; right: 75%; width: 140px; animation-delay: 2.5s; }

.float-card .label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 4px; }
.float-card .value { display: block; font-size: 1.5rem; font-weight: 700; color: #fff; }
.float-card .sub { display: block; font-size: 0.85rem; font-weight: 600; }
.float-card .icon { width: 40px; height: 40px; background: rgba(99, 102, 241, 0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.progress-bar { width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-top: 8px; overflow: hidden; }
.progress-bar .fill { width: 75%; height: 100%; background: var(--accent-pink); }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* Modern Marquee */
.marquee-section { padding: 40px 0; background: rgba(255,255,255,0.01); border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); }
.marquee-mask { max-width: 100%; overflow: hidden; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-content { display: flex; gap: 24px; padding: 0 12px; }
.m-item { padding: 12px 28px; background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 100px; font-weight: 500; white-space: nowrap; transition: var(--transition); cursor: default; }
.m-item:hover { background: rgba(99, 102, 241, 0.1); border-color: var(--primary); color: #fff; box-shadow: 0 0 20px rgba(99, 102, 241, 0.2); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Sections General */
.section { padding: 120px 0; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 64px; }

/* Interactive Problem Section */
.interactive-card { position: relative; background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: var(--radius-lg); padding: 40px 32px; overflow: hidden; transition: var(--transition); min-height: 280px; display: flex; flex-direction: column; justify-content: center; }
.interactive-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(99,102,241,0.1), transparent); opacity: 0; transition: var(--transition); }
.interactive-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(99,102,241,0.15); }
.interactive-card:hover::before { opacity: 1; }

.ic-front, .ic-back { transition: var(--transition); }
.ic-front { position: relative; z-index: 1; }
.ic-back { position: absolute; inset: 0; padding: 40px 32px; background: var(--bg-dark); display: flex; flex-direction: column; justify-content: center; opacity: 0; transform: translateY(20px); z-index: 2; }
.interactive-card:hover .ic-front { opacity: 0; transform: translateY(-20px); }
.interactive-card:hover .ic-back { opacity: 1; transform: translateY(0); }

.card-icon { font-size: 3rem; margin-bottom: 24px; }
.ic-hint { font-size: 0.85rem; color: var(--primary); margin-top: 16px; font-weight: 600; }
.ic-metric { font-size: 3.5rem; font-weight: 800; color: var(--accent-green); line-height: 1; margin-bottom: 16px; }

/* Services & Target with SVGs */
.s-icon { width: 56px; height: 56px; background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(168,85,247,0.2)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--primary); }
.t-icon { width: 48px; height: 48px; color: var(--accent-pink); margin-bottom: 20px; }

/* Funnel Section */
.funnel-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.funnel-steps { display: flex; flex-direction: column; gap: 24px; position: relative; }
.funnel-steps::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--accent-pink)); z-index: 0; }
.step { display: flex; align-items: center; gap: 24px; position: relative; z-index: 1; }
.step-num { width: 50px; height: 50px; background: var(--bg-dark); border: 2px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; box-shadow: 0 0 15px rgba(99, 102, 241, 0.3); }
.step-text { font-size: 1.1rem; font-weight: 600; background: var(--bg-card); padding: 16px 24px; border-radius: 12px; border: 1px solid var(--border-glass); flex: 1; }

.funnel-dashboard { padding: 0; overflow: hidden; border-color: rgba(99,102,241,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.dash-header { background: rgba(255,255,255,0.05); padding: 16px 24px; border-bottom: 1px solid var(--border-glass); display: flex; align-items: center; gap: 16px; font-weight: 600; }
.dash-header .dots { display: flex; gap: 6px; }
.dash-header .dots span { width: 12px; height: 12px; border-radius: 50%; background: #475569; }
.dash-header .dots span:nth-child(1) { background: #EF4444; }
.dash-header .dots span:nth-child(2) { background: #F59E0B; }
.dash-header .dots span:nth-child(3) { background: #10B981; }
.dash-body { padding: 24px; }
.dash-row { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dash-row:last-child { border-bottom: none; }

/* Massive CodePress CTA */
.cp-mega-card { position: relative; background: var(--bg-dark); border: 1px solid rgba(99,102,241,0.3); border-radius: var(--radius-xl); padding: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.cp-bg-glow { position: absolute; top: -50%; right: -20%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%); z-index: 0; pointer-events: none; }
.cp-content { position: relative; z-index: 1; }
.cp-features { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.cp-features li { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; font-weight: 500; }

.cp-visual { position: relative; z-index: 1; height: 400px; perspective: 1000px; }
.floating-mockup { position: absolute; background: rgba(15,23,42,0.8); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; width: 300px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); transform: rotateY(-15deg) rotateX(5deg); animation: floatMockup 8s ease-in-out infinite; }
.mockup-2 { top: 100px; right: 0; transform: rotateY(-15deg) rotateX(5deg) translateZ(-50px); animation-delay: 1s; background: linear-gradient(135deg, rgba(15,23,42,0.9), rgba(99,102,241,0.1)); }
.m-header { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px; border-bottom: 1px solid var(--border-glass); padding-bottom: 8px; }
.m-line { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 12px; }
.w-70 { width: 70%; } .w-50 { width: 50%; }
.m-badge { display: inline-block; padding: 6px 12px; background: rgba(16,185,129,0.2); color: var(--accent-green); border-radius: 100px; font-size: 0.85rem; margin-top: 12px; }
.m-stat { display: flex; flex-direction: column; }
.m-val { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.m-lbl { font-size: 0.9rem; color: var(--text-muted); }

@keyframes floatMockup { 0%, 100% { transform: rotateY(-15deg) rotateX(5deg) translateY(0); } 50% { transform: rotateY(-15deg) rotateX(5deg) translateY(-20px); } }

/* Process Grid */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-card { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: var(--radius-lg); padding: 40px 32px; position: relative; transition: var(--transition); overflow: hidden; }
.process-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--border-glass); transition: var(--transition); }
.process-card:hover { transform: translateY(-10px); background: var(--bg-card-hover); }
.process-card:hover::before { background: var(--primary); box-shadow: 0 0 20px var(--primary); }
.p-num { font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.05); margin-bottom: 16px; line-height: 1; transition: var(--transition); }
.process-card:hover .p-num { color: var(--primary); opacity: 0.5; }

/* SEO Text */
.seo-text .glass-card { padding: 64px; }
.seo-content p { margin-bottom: 24px; }
.seo-content strong { color: #fff; }

/* 2-Column FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.faq-col { display: flex; flex-direction: column; gap: 16px; }
.faq-item { border: 1px solid var(--border-glass); border-radius: 12px; background: var(--bg-card); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(255,255,255,0.2); }
.faq-question { width: 100%; text-align: left; padding: 24px; background: none; border: none; color: #fff; font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; }
.faq-question::after { content: '+'; font-size: 1.5rem; transition: var(--transition); color: var(--primary); }
.faq-question.active::after { content: '−'; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.faq-answer p { padding: 0 24px 24px; color: var(--text-muted); }

/* Footer with Grid & CTA */
.footer { position: relative; border-top: 1px solid var(--border-glass); padding: 100px 0 24px; background-color: var(--bg-dark); overflow: hidden; }
.footer-grid-bg { position: absolute; inset: 0; background-size: 40px 40px; background-image: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px); z-index: 0; mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent); -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent); }
.footer .container { position: relative; z-index: 1; }

.footer-cta-box { background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(168,85,247,0.1)); border: 1px solid rgba(99,102,241,0.3); border-radius: var(--radius-xl); padding: 64px; text-align: center; margin-bottom: 80px; backdrop-filter: blur(10px); }
.footer-cta-box h2 { margin-bottom: 16px; }
.footer-cta-box p { margin-bottom: 32px; font-size: 1.2rem; }

.footer-inner { display: flex; justify-content: space-between; margin-bottom: 64px; flex-wrap: wrap; gap: 40px; }
.footer-brand { max-width: 400px; }
.footer-logo { height: 40px; margin-bottom: 24px; }
.footer-trust h4 { margin-bottom: 16px; color: #fff; }
.footer-trust ul { display: flex; flex-direction: column; gap: 12px; color: var(--text-muted); }
.footer-trust li { display: flex; align-items: center; gap: 8px; }
.footer-trust li::before { content: '✓'; color: var(--accent-green); font-weight: bold; }

.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border-glass); color: var(--text-muted); font-size: 0.9rem; }

/* Widgets */
.cookie-banner { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(150%); background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(10px); border: 1px solid var(--border-glass); padding: 16px 24px; border-radius: 100px; display: flex; align-items: center; gap: 24px; z-index: 9999; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner p { margin: 0; font-size: 0.85rem; }

.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9998; }
.chat-toggle { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); color: #fff; border: none; cursor: pointer; box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.chat-toggle:hover { transform: scale(1.1); }
.chat-panel { position: absolute; bottom: 80px; right: 0; width: 320px; background: var(--bg-dark); border: 1px solid var(--border-glass); border-radius: 16px; overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.chat-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.chat-header { background: linear-gradient(to right, var(--primary), var(--accent-purple)); padding: 16px; font-weight: 600; color: #fff; }
.chat-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { background: var(--bg-card); padding: 12px; border-radius: 12px 12px 12px 0; font-size: 0.9rem; border: 1px solid var(--border-glass); }
.chat-footer { padding: 16px; border-top: 1px solid var(--border-glass); }

.back-to-top { position: fixed; bottom: 24px; left: 24px; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; border: 1px solid var(--border-glass); cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 9997; backdrop-filter: blur(5px); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); border-color: var(--primary); }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; padding-top: 140px; }
    .hero-buttons, .trust-pills { justify-content: center; }
    .hero-visual { height: 500px; margin-top: 40px; }
    .person-img { right: 50%; transform: translateX(50%); }
    
    /* Adjust floats for tablet */
    .float-card { transform: scale(0.8); }
    .card-active { right: 80%; }
    .card-chart { right: 0%; }
    .card-cpa { right: 75%; }
    .card-roas { right: 5%; }
    .card-lead { right: 60%; }
    .card-remarketing { right: 85%; }
    
    .funnel-layout, .cp-mega-card { grid-template-columns: 1fr; }
    .cp-mega-card { padding: 40px 24px; }
    .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .header-wrapper { top: 10px; padding: 0 10px; }
    .header { padding: 12px 20px; border-radius: 20px; }
    .nav-menu, .header-cta { display: none; }
    .hamburger { display: flex; }
    
    .nav-menu.mobile-active { display: flex; flex-direction: column; position: absolute; top: calc(100% + 10px); left: 0; width: 100%; background: rgba(11,15,25,0.95); backdrop-filter: blur(20px); padding: 24px; border: 1px solid var(--border-glass); border-radius: 20px; }
    .header-cta.mobile-active { display: block; position: absolute; top: calc(100% + 250px); left: 24px; right: 24px; z-index: 1001; }
    
    /* Hide some floats on mobile to not block the image */
    .card-cpa, .card-remarketing, .card-active { display: none; }
    .card-chart { right: 5%; top: 10%; }
    .card-roas { right: 5%; bottom: 20%; }
    .card-lead { right: auto; left: 5%; bottom: 10%; }
    
    .process-grid, .faq-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-trust ul { align-items: center; }
    .cookie-banner { flex-direction: column; width: 90%; text-align: center; border-radius: 24px; }
    .seo-text .glass-card { padding: 32px 24px; }
    .cp-visual { display: none; /* Hide complex 3D mockup on mobile */ }
}