/* ==========================================================================
   Odiwave Media - Main Stylesheet
   A modern creator-brand marketplace theme
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #60A5FA;
    --secondary: #1A1A2E;
    --secondary-light: #16213E;
    --accent: #3B82F6;
    --accent-light: #93C5FD;
    --success: #27AE60;
    --warning: #F39C12;
    --danger: #E74C3C;
    --info: #4A90D9;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; margin-top: 0 !important; padding-top: 0 !important; overflow-x: hidden; }
html.wp-toolbar { padding-top: 0 !important; margin-top: 0 !important; }
body { font-family: var(--font-primary); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden; margin: 0; padding: 0; max-width: 100%; }
img { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-gradient { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius); font-family: var(--font-primary); font-weight: 600; font-size: 15px; cursor: pointer; transition: var(--transition); border: 2px solid transparent; text-decoration: none; line-height: 1.4; }
.btn i { font-size: 14px; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); border-color: transparent; box-shadow: 0 4px 15px rgba(37,99,235,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,99,235,0.45); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-ghost { background: transparent; color: var(--gray-600); border-color: transparent; }
.btn-ghost:hover { color: var(--primary); background: rgba(37,99,235,0.05); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); color: var(--primary); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); color: var(--white); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius-md); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }
.btn-google { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; padding: 14px; background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius); font-size: 15px; font-weight: 600; color: var(--gray-700); cursor: pointer; transition: var(--transition); }
.btn-google:hover { border-color: var(--gray-300); background: var(--gray-50); box-shadow: var(--shadow-sm); }
.btn-link { background: none; border: none; color: var(--primary); cursor: pointer; font-weight: 600; padding: 0; font-size: inherit; }
.btn-link:hover { text-decoration: underline; }

/* ---------- Header / Navbar ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); margin: 0; padding: 0; background: var(--white); overflow: visible; }
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-nav-bar { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.05); }
.navbar { display: flex; align-items: center; justify-content: space-between; height: 90px; }
.navbar-brand .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; }
.logo-text { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--gray-900); }
.logo-accent { color: var(--primary); }
.navbar-menu { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; list-style: none; gap: 8px; }
.nav-link { padding: 8px 16px; color: var(--gray-600); font-weight: 500; font-size: 15px; border-radius: var(--radius-sm); }
.nav-link:hover { color: var(--primary); background: rgba(37,99,235,0.05); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.navbar-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger { display: block; width: 24px; height: 2px; background: var(--gray-700); position: relative; transition: var(--transition); }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 24px; height: 2px; background: var(--gray-700); left: 0; transition: var(--transition); }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* Page content offset for fixed header (top-bar 37px + nav 76px = 113px) */
.site-main { padding-top: 100px; }
.site-main.homepage { padding-top: 0; } /* hero section handles its own padding */
.auth-page { padding-top: 160px; }
.agreement-page { padding-top: 140px; }
.contact-page { padding-top: 0; } /* contact hero handles its own padding */

/* ---------- Hero Section ---------- */
.hero-section { position: relative; padding: 180px 0 120px; background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%); overflow: hidden; min-height: 100vh; display: flex; align-items: center; }
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; }
.hero-shape { position: absolute; border-radius: 50%; opacity: 0.08; }
.hero-shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -100px; }
.hero-shape-2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; left: -100px; }
.hero-shape-3 { width: 200px; height: 200px; background: var(--info); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(37,99,235,0.15); color: var(--primary-light); padding: 8px 18px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 24px; border: 1px solid rgba(37,99,235,0.25); }
.badge-pulse { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }
.hero-title { font-family: var(--font-heading); font-size: 52px; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-cta { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.trust-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 14px; border: 3px solid var(--secondary); margin-left: -10px; }
.trust-avatar:first-child { margin-left: 0; }
.trust-count { background: var(--primary); font-size: 11px; font-weight: 700; }
.hero-trust span { color: rgba(255,255,255,0.6); font-size: 14px; }

/* Hero Visual Cards */
.hero-visual { position: relative; z-index: 2; }
.hero-card-stack { position: relative; height: 420px; }
.hero-card { position: absolute; background: rgba(255,255,255,0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg); padding: 24px; display: flex; align-items: center; gap: 16px; min-width: 320px; transition: var(--transition); }
.hero-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.15); }
.hero-card-1 { top: 20px; right: 0; animation: float 6s ease-in-out infinite; }
.hero-card-2 { top: 140px; right: 40px; animation: float 6s ease-in-out infinite 1s; }
.hero-card-3 { top: 260px; right: 10px; animation: float 6s ease-in-out infinite 2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.card-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 20px; flex-shrink: 0; }
.card-info { flex: 1; }
.card-label { display: block; color: rgba(255,255,255,0.6); font-size: 13px; }
.card-value { display: block; color: var(--white); font-weight: 700; font-size: 18px; }
.card-badge { padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; color: var(--white); background: rgba(255,255,255,0.15); }
.card-badge.active { background: rgba(39,174,96,0.3); color: #6FCF97; }
.card-badge.success { background: rgba(39,174,96,0.3); color: #6FCF97; }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; }
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ---------- Stats Section ---------- */
.stats-section { padding: 60px 0; background: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 32px 20px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--gray-100); transition: var(--transition); }
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.stat-icon { width: 64px; height: 64px; background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(59,130,246,0.1)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--primary); font-size: 24px; }
.stat-number { font-family: var(--font-heading); font-size: 40px; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; }
.stat-label { color: var(--gray-500); font-size: 14px; font-weight: 500; }

/* ---------- Section Headers ---------- */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-tag { display: inline-block; background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(59,130,246,0.1)); color: var(--primary); padding: 6px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.section-title { font-family: var(--font-heading); font-size: 40px; font-weight: 800; color: var(--gray-900); line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--gray-500); line-height: 1.7; }

/* ---------- Features Section ---------- */
.features-section { padding: 100px 0; background: var(--gray-50); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--gray-100); transition: var(--transition); position: relative; overflow: hidden; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover .feature-icon { transform: scale(1.05); }
.feature-card:hover .feature-icon-bg { transform: scale(1); opacity: 0.1; }
.feature-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 24px; margin-bottom: 20px; position: relative; transition: var(--transition); }
.feature-icon-bg { position: absolute; width: 120px; height: 120px; background: var(--primary); border-radius: 50%; top: -30px; left: -30px; transform: scale(0); opacity: 0; transition: var(--transition); }
.feature-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.feature-card p { color: var(--gray-500); font-size: 15px; line-height: 1.7; }

/* ---------- How It Works ---------- */
.how-it-works-section { padding: 100px 0; background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.step-card { text-align: center; padding: 36px 24px; position: relative; }
.step-number { font-family: var(--font-heading); font-size: 80px; font-weight: 900; color: rgba(37,99,235,0.08); position: absolute; top: 0; left: 50%; transform: translateX(-50%); line-height: 1; }
.step-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 28px; margin: 0 auto 24px; position: relative; z-index: 1; box-shadow: 0 8px 25px rgba(37,99,235,0.3); }
.step-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.step-card p { color: var(--gray-500); font-size: 14px; line-height: 1.7; }
.step-connector { display: none; }

/* ---------- Split Layout (Creators / Brands) ---------- */
.creators-section { padding: 100px 0; background: var(--gray-50); }
.brands-section { padding: 100px 0; background: var(--white); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-layout.reverse { direction: ltr; }
.split-content h2 { text-align: left; }
.split-content p { color: var(--gray-600); font-size: 17px; line-height: 1.8; margin-bottom: 24px; }
.check-list { list-style: none; margin-bottom: 32px; }
.check-list li { display: flex; align-items: flex-start; gap: 8px; padding: 8px 0; color: var(--gray-700); font-size: 15px; }
.check-list li i { margin-top: 3px; }
.check-list li i { color: var(--success); font-size: 18px; flex-shrink: 0; }

/* Dashboard Preview */
.visual-dashboard { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); overflow: hidden; border: 1px solid var(--gray-200); }
.vdash-header { display: flex; align-items: center; gap: 12px; padding: 14px 20px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.vdash-dots { display: flex; gap: 6px; }
.vdash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.vdash-dots span:nth-child(1) { background: #FF5F57; }
.vdash-dots span:nth-child(2) { background: #FFBD2E; }
.vdash-dots span:nth-child(3) { background: #28C840; }
.vdash-title { font-size: 13px; color: var(--gray-500); font-weight: 500; }
.vdash-body { padding: 24px; }
.vdash-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.vdash-stat { background: var(--gray-50); border-radius: var(--radius); padding: 16px; }
.vdash-stat-value { display: block; font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: var(--gray-900); }
.vdash-stat-label { display: block; font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.vdash-chart { display: flex; align-items: flex-end; gap: 10px; height: 100px; margin-bottom: 20px; padding: 10px 0; }
.vdash-bar { flex: 1; background: linear-gradient(to top, rgba(37,99,235,0.2), rgba(37,99,235,0.05)); border-radius: 6px 6px 0 0; transition: var(--transition); min-height: 10px; }
.vdash-bar.active { background: linear-gradient(to top, var(--primary), var(--accent)); }
.vdash-projects { display: flex; flex-direction: column; gap: 10px; }
.vdash-project { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--gray-50); border-radius: var(--radius-sm); font-size: 13px; }
.vdash-project-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.vdash-project-dot.green { background: var(--success); }
.vdash-project-dot.blue { background: var(--info); }
.vdash-project-badge { margin-left: auto; padding: 2px 10px; border-radius: 50px; font-size: 11px; font-weight: 600; background: rgba(39,174,96,0.1); color: var(--success); }
.vdash-project-badge.pending { background: rgba(243,156,18,0.1); color: var(--warning); }

/* Brand Showcase */
.brand-showcase { display: flex; align-items: center; justify-content: center; padding: 40px; }
.brand-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.brand-mini-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 28px 24px; text-align: center; transition: var(--transition); }
.brand-mini-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.brand-mini-card i { font-size: 32px; color: var(--primary); margin-bottom: 12px; display: block; }
.brand-mini-card span { font-weight: 600; color: var(--gray-700); font-size: 14px; }
.brand-mini-card.accent { background: linear-gradient(135deg, var(--primary), var(--accent)); border-color: transparent; }
.brand-mini-card.accent i { color: var(--white); }
.brand-mini-card.accent span { color: var(--white); }

/* ---------- Testimonials ---------- */
.testimonials-section { padding: 100px 0; background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--gray-100); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--accent); margin-bottom: 16px; font-size: 14px; display: flex; gap: 2px; }
.testimonial-card p { color: var(--gray-600); font-size: 15px; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; flex-shrink: 0; }
.testimonial-author strong { display: block; color: var(--gray-900); font-size: 15px; }
.testimonial-author span { display: block; color: var(--gray-500); font-size: 13px; }

/* ---------- CTA Section ---------- */
.cta-section { position: relative; padding: 100px 0; background: linear-gradient(135deg, var(--primary), var(--accent)); overflow: hidden; }
.cta-bg-shapes { position: absolute; inset: 0; }
.cta-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); }
.cta-shape-1 { width: 400px; height: 400px; top: -150px; right: -100px; }
.cta-shape-2 { width: 300px; height: 300px; bottom: -100px; left: -80px; }
.cta-content { text-align: center; position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-family: var(--font-heading); font-size: 42px; font-weight: 800; color: var(--white); margin-bottom: 20px; }
.cta-content p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--secondary); color: rgba(255,255,255,0.7); position: relative; }
.footer-wave { color: var(--secondary); margin-bottom: -1px; }
.footer-wave svg { display: block; width: 100%; height: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding: 60px 0 40px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); }
.footer-logo .logo-text { color: var(--white); }
.footer-about p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { color: var(--white); font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact li i { color: var(--primary); margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 20px; }
.footer-bottom p { font-size: 14px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ---------- Animations ---------- */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate].animated { opacity: 1; transform: translate(0,0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-title { font-size: 40px; }
    .section-title { font-size: 32px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar-toggle { display: block; }
    .logo-img { height: 40px; }
    .navbar { height: 60px; }
    .navbar-menu { display: none; }
    .header-nav-bar { backdrop-filter: none; background: #ffffff; }
    .nav-links { flex-direction: column; }
    .nav-actions { flex-direction: column; width: 100%; }
    .nav-actions .btn { width: 100%; justify-content: center; }
    .hero-section { padding: 120px 0 80px; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 32px; }
    .hero-visual { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .split-layout { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 30px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 28px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 26px; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   Top Info Bar
   ========================================================================== */
.top-info-bar { background: var(--secondary); color: rgba(255,255,255,0.8); font-size: 13px; padding: 8px 0; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-left a, .top-bar-right a, .top-bar-right span { color: rgba(255,255,255,0.75); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.top-bar-left a:hover { color: var(--primary-light); }
.top-bar-left a i, .top-bar-right span i { font-size: 12px; color: var(--primary-light); }
.top-bar-social { display: flex; gap: 8px; }
.top-bar-social a { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 11px; }
.top-bar-social a:hover { background: var(--primary); color: var(--white); }

/* Logo image */
.logo-img { height: 75px; width: auto; }
.footer-logo-img { height: 88px; width: auto; }

@media (max-width: 768px) {
    .top-info-bar { display: none; }
    .hero-section { padding-top: 120px; }
}

/* ==========================================================================
   Brand Logos Ticker
   ========================================================================== */
.brands-ticker-section { padding: 80px 0; background: var(--white); }
.brands-ticker { overflow: hidden; margin: 0 -20px 16px; position: relative; }
.brands-ticker::before, .brands-ticker::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.brands-ticker::before { left: 0; background: linear-gradient(to right, white, transparent); }
.brands-ticker::after { right: 0; background: linear-gradient(to left, white, transparent); }
.ticker-track { display: flex; gap: 20px; width: max-content; }
.ticker-ltr { animation: ticker-ltr 35s linear infinite; }
.ticker-rtl { animation: ticker-rtl 35s linear infinite; }
@keyframes ticker-ltr { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes ticker-rtl { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.ticker-item { display: flex; align-items: center; gap: 10px; padding: 14px 28px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 14px; white-space: nowrap; transition: var(--transition); }
.ticker-item i { font-size: 24px; flex-shrink: 0; width: 36px; text-align: center; }
.ticker-item span { font-weight: 700; color: var(--gray-700); font-size: 16px; }
.ticker-item:hover { background: var(--gray-100); border-color: var(--primary); box-shadow: 0 4px 12px rgba(37,99,235,0.1); }
.ticker-item:hover span { color: var(--primary); }

.brand-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.brand-cat { text-align: center; padding: 24px; background: var(--gray-50); border-radius: var(--radius-md); border: 1px solid var(--gray-100); }
.brand-cat h4 { font-family: var(--font-heading); font-size: 15px; color: var(--gray-800); margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.brand-cat h4 i { color: var(--primary); }
.brand-cat p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
@media (max-width: 768px) { .brand-categories { grid-template-columns: 1fr; } }

/* ==========================================================================
   Regional Gap Section
   ========================================================================== */
.regional-gap-section { padding: 100px 0; background: var(--gray-50); }
.gap-comparison { display: flex; align-items: center; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; justify-content: center; }
.gap-card { flex: 1; min-width: 280px; max-width: 420px; padding: 32px; border-radius: var(--radius-lg); border: 2px solid var(--gray-200); background: var(--white); }
.gap-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.gap-card-header i { font-size: 28px; color: var(--primary); }
.gap-card-header h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; }
.gap-card p { color: var(--gray-600); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.gap-tag { display: inline-block; padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; }
.gap-tag.pain { background: rgba(74,144,217,0.1); color: var(--info); }
.gap-tag.danger { background: rgba(231,76,60,0.1); color: var(--danger); }
.gap-national { border-color: rgba(74,144,217,0.3); }
.gap-regional { border-color: rgba(231,76,60,0.3); }
.gap-vs { font-family: var(--font-heading); font-size: 28px; font-weight: 900; color: var(--gray-400); flex-shrink: 0; }
@media (max-width: 768px) {
    .gap-comparison { flex-direction: column; align-items: stretch; }
    .gap-card { max-width: 100%; min-width: 0; }
    .gap-vs { text-align: center; order: 1; }
    .gap-national { order: 0; }
    .gap-regional { order: 2; }
}
.gap-solution { text-align: center; max-width: 600px; margin: 0 auto; padding: 36px; background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(59,130,246,0.05)); border: 2px solid rgba(37,99,235,0.2); border-radius: var(--radius-lg); }
.gap-solution-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--white); font-size: 24px; }
.gap-solution h3 { font-family: var(--font-heading); font-size: 20px; margin-bottom: 8px; color: var(--gray-900); }
.gap-solution p { color: var(--gray-600); font-size: 15px; line-height: 1.7; }

/* ==========================================================================
   Money Split Section
   ========================================================================== */
.money-split-section { padding: 100px 0; background: var(--white); }
.split-visual-card { max-width: 800px; margin: 0 auto; }
.split-circle { display: flex; justify-content: center; gap: 32px; margin-bottom: 40px; }
.split-creator-arc, .split-agency-arc { width: 180px; height: 180px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.split-creator-arc { background: linear-gradient(135deg, var(--success), #2ECC71); color: var(--white); box-shadow: 0 10px 30px rgba(39,174,96,0.3); }
.split-agency-arc { background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); box-shadow: 0 10px 30px rgba(37,99,235,0.3); }
.split-percent { font-family: var(--font-heading); font-size: 42px; font-weight: 900; line-height: 1; }
.split-label { font-size: 13px; opacity: 0.9; margin-top: 4px; }
.split-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.split-detail-card { padding: 24px; border-radius: var(--radius-md); }
.split-detail-card h4 { font-family: var(--font-heading); font-size: 16px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.split-detail-card h4 i { font-size: 18px; }
.split-detail-card p { font-size: 14px; line-height: 1.7; }
.creator-detail { background: rgba(39,174,96,0.06); border: 1px solid rgba(39,174,96,0.15); }
.creator-detail h4 { color: var(--success); }
.creator-detail p { color: var(--gray-600); }
.agency-detail { background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.15); }
.agency-detail h4 { color: var(--primary); }
.agency-detail p { color: var(--gray-600); }
@media (max-width: 480px) { .split-circle { flex-direction: column; align-items: center; } .split-details-grid { grid-template-columns: 1fr; } .split-creator-arc, .split-agency-arc { width: 150px; height: 150px; } .split-percent { font-size: 36px; } }

/* ==========================================================================
   Why Join Section
   ========================================================================== */
.why-join-section { padding: 100px 0; background: var(--gray-50); }
.why-join-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--gray-100); transition: var(--transition); text-align: center; }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.why-icon { width: 60px; height: 60px; background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(59,130,246,0.1)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--primary); font-size: 22px; }
.why-card h4 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.why-card p { color: var(--gray-500); font-size: 14px; line-height: 1.7; }
@media (max-width: 768px) { .why-join-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CTA Steps
   ========================================================================== */
.cta-steps { display: flex; flex-direction: column; gap: 12px; margin: 24px auto 32px; max-width: 560px; text-align: left; }
.cta-step { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.9); font-size: 15px; }
.cta-step span { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex-shrink: 0; }

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-page { padding-top: 0; }
.contact-page .site-header { background: transparent; }
.contact-hero { position: relative; padding: 160px 0 100px; background: linear-gradient(135deg, #1A1A2E, #0F3460); overflow: hidden; text-align: center; }
.contact-hero-shapes { position: absolute; inset: 0; }
.contact-shape { position: absolute; border-radius: 50%; opacity: 0.08; }
.contact-shape-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; right: -100px; }
.contact-shape-2 { width: 300px; height: 300px; background: var(--accent); bottom: -80px; left: -80px; }
.contact-hero-content { position: relative; z-index: 2; }
.contact-hero-content h1 { font-family: var(--font-heading); font-size: 48px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.contact-hero-content p { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.contact-hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; }
.contact-hero-wave svg { display: block; width: 100%; height: 60px; }

.contact-cards-section { padding: 60px 0; margin-top: -40px; position: relative; z-index: 3; }
.contact-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-info-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; text-align: center; border: 1px solid var(--gray-100); box-shadow: var(--shadow-md); transition: var(--transition); }
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.contact-info-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--white); font-size: 24px; }
.contact-info-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--gray-900); }
.contact-info-card p { color: var(--gray-500); font-size: 13px; margin-bottom: 10px; }
.contact-info-value { color: var(--primary); font-weight: 600; font-size: 14px; word-break: break-all; }

.contact-main-section { padding: 40px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: start; }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
.contact-form-header { margin-bottom: 24px; }
.contact-form-header h2 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.contact-form-header p { color: var(--gray-500); font-size: 14px; }
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 14px; border: 2px solid var(--gray-200); border-radius: var(--radius); font-family: var(--font-primary); font-size: 14px; color: var(--gray-800); outline: none; transition: var(--transition); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.contact-form .form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-alert { padding: 18px 20px; border-radius: var(--radius); margin-bottom: 20px; }
.contact-alert-success { background: rgba(39,174,96,0.06); border: 1px solid rgba(39,174,96,0.2); display: flex; align-items: flex-start; gap: 14px; }
.contact-alert-icon { width: 44px; height: 44px; background: rgba(39,174,96,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--success); font-size: 20px; flex-shrink: 0; }
.contact-alert-success strong { color: var(--success); display: block; margin-bottom: 2px; }
.contact-alert-success p { color: var(--gray-600); font-size: 14px; margin: 0; }
.contact-alert-error { background: rgba(231,76,60,0.06); border: 1px solid rgba(231,76,60,0.2); color: var(--danger); font-size: 14px; display: flex; align-items: center; gap: 8px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-map-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); }
.contact-map iframe { display: block; }
.contact-company-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--gray-200); }
.contact-company-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.contact-company-card p { color: var(--gray-600); font-size: 14px; line-height: 1.7; margin-bottom: 8px; }
.company-highlights { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.company-highlight-item { display: flex; align-items: center; gap: 14px; padding: 12px; background: var(--gray-50); border-radius: var(--radius); }
.company-highlight-item i { width: 36px; height: 36px; background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(59,130,246,0.1)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 14px; flex-shrink: 0; }
.company-highlight-item strong { display: block; font-size: 14px; color: var(--gray-900); }
.company-highlight-item span { display: block; font-size: 12px; color: var(--gray-500); }

.contact-cta-card { background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: var(--radius-lg); padding: 28px; color: var(--white); text-align: center; }
.contact-cta-card h3 { font-family: var(--font-heading); font-size: 20px; margin-bottom: 8px; }
.contact-cta-card p { opacity: 0.9; font-size: 14px; margin-bottom: 18px; }
.contact-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.contact-cta-btns .btn { font-size: 13px; padding: 10px 20px; }

/* FAQ */
.contact-faq-section { padding: 80px 0; background: var(--gray-50); }
.faq-grid { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--primary); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; font-weight: 600; color: var(--gray-800); font-size: 15px; }
.faq-question i { color: var(--gray-400); transition: var(--transition); font-size: 13px; }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 22px 18px; color: var(--gray-600); font-size: 14px; line-height: 1.7; }

@media (max-width: 768px) {
    .contact-hero-content h1 { font-size: 32px; }
    .contact-cards-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form .form-row-2col { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Agreement Gate Page (shown to creators who haven't signed)
   ========================================================================== */
.agreement-gate-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.agreement-gate { background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 0; width: 100%; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.gate-content { max-width: 640px; text-align: center; color: var(--white); }
.gate-icon { width: 80px; height: 80px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 32px; }
.gate-content h1 { font-family: var(--font-heading); font-size: 48px; font-weight: 900; margin-bottom: 16px; font-style: italic; }
.gate-subtitle { font-size: 17px; opacity: 0.9; margin-bottom: 36px; line-height: 1.6; }
.gate-steps { text-align: left; margin-bottom: 36px; }
.gate-step { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.gate-step:last-child { border-bottom: none; }
.gate-step-num { width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.gate-step-info strong { display: block; font-size: 16px; margin-bottom: 4px; }
.gate-step-info p { font-size: 14px; opacity: 0.85; margin: 0; line-height: 1.5; }
.gate-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.gate-note { font-size: 13px; opacity: 0.7; }
.gate-note i { margin-right: 6px; }
@media (max-width: 480px) { .gate-content h1 { font-size: 32px; } .gate-actions { flex-direction: column; } .gate-actions .btn { width: 100%; justify-content: center; } }

/* ==========================================================================
   Privacy Policy & Terms of Service Pages
   ========================================================================== */
.privacy-page { padding-top: 0; }
.privacy-hero { position: relative; padding: 160px 0 100px; background: linear-gradient(135deg, #1A1A2E, #0F3460); overflow: hidden; text-align: center; }
.privacy-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.privacy-shape { position: absolute; border-radius: 50%; opacity: 0.08; background: #fff; }
.privacy-shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.privacy-shape-2 { width: 300px; height: 300px; bottom: -80px; left: -80px; }
.privacy-hero-content { position: relative; z-index: 2; }
.privacy-hero-content h1 { font-family: var(--font-heading); font-size: 48px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.privacy-hero-content p { color: rgba(255,255,255,0.75); font-size: 18px; max-width: 620px; margin: 0 auto; line-height: 1.7; }
.privacy-meta { display: flex; justify-content: center; gap: 24px; margin-top: 20px; flex-wrap: wrap; }
.privacy-meta span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 500; }
.privacy-hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; }
.privacy-hero-wave svg { display: block; width: 100%; height: 60px; }

.privacy-content { padding: 60px 0 80px; background: #f8fafc; }
.privacy-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }

/* Table of Contents Sidebar */
.privacy-toc { position: sticky; top: 100px; }
.privacy-toc-inner { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); border: 1px solid #e2e8f0; }
.privacy-toc h4 { font-size: 14px; font-weight: 700; color: #1e293b; margin: 0 0 14px; display: flex; align-items: center; gap: 8px; }
.privacy-toc h4 i { color: var(--primary); }
.privacy-toc nav { display: flex; flex-direction: column; gap: 2px; }
.toc-link { display: block; padding: 8px 12px; font-size: 12px; font-weight: 500; color: #64748b; text-decoration: none; border-radius: 6px; transition: all 0.2s; line-height: 1.4; }
.toc-link:hover, .toc-link.active { background: #f1f5f9; color: var(--primary); font-weight: 600; }

/* Main Content */
.privacy-main { min-width: 0; }

.privacy-intro-card { display: flex; gap: 20px; padding: 24px; background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; margin-bottom: 32px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.privacy-intro-icon { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), #3B82F6); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.privacy-intro-card h3 { font-size: 18px; font-weight: 700; color: #1e293b; margin: 0 0 8px; }
.privacy-intro-card p { font-size: 14px; color: #64748b; line-height: 1.7; margin: 0; }

.privacy-section { background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; margin-bottom: 20px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.privacy-section-highlight { border-color: #bfdbfe; background: linear-gradient(180deg, #eff6ff 0%, #fff 40%); }
.privacy-section-header { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-bottom: 1px solid #f1f5f9; }
.privacy-section-num { width: 36px; height: 36px; border-radius: 10px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; flex-shrink: 0; }
.privacy-section-header h2 { font-size: 18px; font-weight: 700; color: #1e293b; margin: 0; }
.privacy-section-body { padding: 20px 24px; }
.privacy-section-body p { font-size: 14px; color: #475569; line-height: 1.8; margin: 0 0 14px; }
.privacy-section-body h4 { font-size: 14px; font-weight: 700; color: #1e293b; margin: 20px 0 10px; display: flex; align-items: center; gap: 8px; }
.privacy-section-body h4 i { color: var(--primary); font-size: 14px; }
.privacy-section-body ul { padding-left: 20px; margin: 0 0 16px; }
.privacy-section-body ul li { font-size: 14px; color: #475569; line-height: 1.8; margin-bottom: 6px; }
.privacy-section-body a { color: var(--primary); font-weight: 600; text-decoration: none; }
.privacy-section-body a:hover { text-decoration: underline; }

/* Use cards grid */
.privacy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 14px 0; }
.privacy-use-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 18px; }
.privacy-use-card i { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
.privacy-use-card h5 { font-size: 14px; font-weight: 700; color: #1e293b; margin: 0 0 6px; }
.privacy-use-card p { font-size: 12px; color: #64748b; line-height: 1.6; margin: 0; }

/* Gmail badge */
.privacy-gmail-badge { display: inline-flex; align-items: center; gap: 10px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; padding: 10px 18px; font-size: 13px; font-weight: 600; color: #16a34a; margin-bottom: 16px; }
.privacy-gmail-badge i { font-size: 18px; }

/* Notice box */
.privacy-notice-box { display: flex; gap: 12px; padding: 16px; background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px; margin: 16px 0; }
.privacy-notice-box i { color: #d97706; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.privacy-notice-box p { font-size: 13px; color: #92400e; line-height: 1.7; margin: 0; }

/* Rights grid */
.privacy-rights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 14px 0; }
.privacy-right { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 16px; text-align: center; }
.privacy-right i { font-size: 20px; color: var(--primary); margin-bottom: 8px; }
.privacy-right h5 { font-size: 13px; font-weight: 700; color: #1e293b; margin: 0 0 4px; }
.privacy-right p { font-size: 11px; color: #64748b; line-height: 1.5; margin: 0; }

/* Cookies table */
.privacy-table { width: 100%; border-collapse: collapse; margin: 14px 0; border-radius: 8px; overflow: hidden; border: 1px solid #e2e8f0; }
.privacy-table th { background: #f1f5f9; font-size: 12px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.5px; padding: 10px 16px; text-align: left; }
.privacy-table td { padding: 10px 16px; font-size: 13px; color: #475569; border-top: 1px solid #e2e8f0; }

/* Contact card */
.privacy-contact-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 20px; margin-top: 14px; }
.privacy-contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid #f1f5f9; }
.privacy-contact-item:last-child { border-bottom: none; }
.privacy-contact-item i { width: 36px; height: 36px; border-radius: 8px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.privacy-contact-item strong { display: block; font-size: 13px; color: #1e293b; }
.privacy-contact-item span, .privacy-contact-item a { font-size: 13px; color: #64748b; text-decoration: none; }
.privacy-contact-item a:hover { color: var(--primary); }

/* Responsive */
@media (max-width: 768px) {
    .privacy-hero-content h1 { font-size: 32px; }
    .privacy-layout { grid-template-columns: 1fr; }
    .privacy-toc { position: static; }
    .privacy-grid, .privacy-rights-grid { grid-template-columns: 1fr; }
    .privacy-intro-card { flex-direction: column; }
    .privacy-meta { flex-direction: column; align-items: center; gap: 8px; }
}

/* ---------- Creators Showcase Carousel ---------- */
.creators-showcase-section { padding: 60px 0 70px; background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%); overflow: hidden; }
.creators-showcase-section .section-header { text-align: center; margin-bottom: 30px; }

.creators-carousel-wrapper { position: relative; width: 100%; overflow: hidden; }
.creators-carousel-wrapper::before,
.creators-carousel-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.creators-carousel-wrapper::before { left: 0; background: linear-gradient(90deg, #f8fafc 0%, transparent 100%); }
.creators-carousel-wrapper::after { right: 0; background: linear-gradient(270deg, #eef2ff 0%, transparent 100%); }

.creators-carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
    padding: 10px 0;
}
.creators-carousel-track:hover { animation-play-state: paused; }

.creators-scroll-left {
    animation: creatorsScrollLeft 45s linear infinite;
}
.creators-scroll-right {
    animation: creatorsScrollRight 45s linear infinite;
}

@keyframes creatorsScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes creatorsScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.creator-showcase-card {
    flex-shrink: 0;
    width: 260px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
}
.creator-showcase-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.creator-showcase-img { position: relative; width: 100%; overflow: hidden; background: #fff; }
.creator-showcase-img img { display: block; width: 100%; height: auto; transition: transform 0.5s ease; }
.creator-showcase-card:hover .creator-showcase-img img { transform: scale(1.03); }

.creator-showcase-placeholder {
    width: 100%; height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; position: relative;
    background: linear-gradient(135deg, #1e3a5f, #2563EB, #3B82F6) !important;
}
.placeholder-initials {
    font-size: 22px; font-weight: 800; color: rgba(255,255,255,0.95);
    letter-spacing: 0.5px; text-align: center; padding: 0 16px;
    line-height: 1.3; max-width: 100%;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.placeholder-icon {
    position: absolute; bottom: 16px; right: 16px;
    font-size: 28px; color: rgba(255,255,255,0.2);
}

.creator-showcase-info { padding: 12px 14px 14px; }

.creator-showcase-handle { display: flex; align-items: center; gap: 5px; margin-bottom: 2px; }
.creator-showcase-handle .handle-name { font-size: 13px; font-weight: 700; color: #1e293b; letter-spacing: -0.2px; }

.creator-showcase-name { font-size: 11px; color: #64748b; margin-bottom: 6px; }

.creator-showcase-niche {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 10px; font-weight: 600; color: #6366f1;
    background: #eef2ff; padding: 3px 10px; border-radius: 20px;
    margin-bottom: 10px;
}

.creator-showcase-platforms { display: flex; gap: 6px; flex-wrap: wrap; }
.platform-tag {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 8px;
}
.platform-tag.instagram { background: linear-gradient(135deg, #fdf2f8, #fce7f3); color: #c026d3; }
.platform-tag.youtube { background: linear-gradient(135deg, #fef2f2, #fee2e2); color: #dc2626; }
.platform-tag.facebook { background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #2563eb; }

@media (max-width: 768px) {
    .creators-showcase-section { padding: 40px 0; }
    .creator-showcase-card { width: 220px; }
    .creators-carousel-wrapper::before, .creators-carousel-wrapper::after { width: 40px; }
}
