/* =========================================
 The Influencer World — Influencer Marketing Agency
 Main Stylesheet
 ========================================= */

/* ---------- Fonts (self-hosted) ----------
 Both families are variable fonts covering the whole weight range in a
 single file, subset to latin. Self-hosted rather than pulled from Google
 Fonts so first paint doesn't wait on a DNS + TLS handshake to
 fonts.googleapis.com followed by a second one to fonts.gstatic.com —
 that request chain was the slowest thing on the critical path.
 font-display: swap keeps text visible in the fallback font meanwhile. */

@font-face {
 font-family: 'Space Grotesk';
 font-style: normal;
 font-weight: 400 700;
 font-display: swap;
 src: url('../fonts/space-grotesk-var-latin.woff2') format('woff2');
 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
 font-family: 'Inter';
 font-style: normal;
 font-weight: 300 700;
 font-display: swap;
 src: url('../fonts/inter-var-latin.woff2') format('woff2');
 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- CSS Custom Properties ---------- */
:root {
 --bg-dark: #0B0B12;
 --bg-darker: #060609;
 --bg-light: #FAFAF9;
 --bg-card: #FFFFFF;
 --accent-1: #7C3AED;
 --accent-2: #EC4899;
 --accent-3: #F97316;
 --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #EC4899 50%, #F97316 100%);
 --gradient-primary-subtle: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(236,72,153,0.15) 100%);
 --gradient-dark: linear-gradient(180deg, #0B0B12 0%, #111127 100%);
 --gradient-cta: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
 --text-primary: #1A1A2E;
 --text-on-dark: #F1F1F7;
 --text-muted: #6B7280;
 --text-muted-light: #9CA3AF;
 --border-light: #E5E7EB;
 --border-dark: rgba(255,255,255,0.08);
 --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
 --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
 --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
 --shadow-glow: 0 0 40px rgba(124,58,237,0.2);
 --radius-sm: 12px;
 --radius-md: 16px;
 --radius-lg: 24px;
 --radius-xl: 32px;
 --font-heading: 'Space Grotesk', sans-serif;
 --font-body: 'Inter', sans-serif;
 --nav-height: 84px;
 --container-max: 1280px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
 scroll-behavior: smooth;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

body {
 font-family: var(--font-body);
 color: var(--text-primary);
 background: var(--bg-light);
 line-height: 1.7;
 overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
 font-family: var(--font-heading);
 line-height: 1.15;
 font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
 max-width: var(--container-max);
 margin: 0 auto;
 padding: 0 24px;
}

.text-center { text-align: center; }

/* Small spacing helper kept from the old Bootstrap markup (icon before text). */
.me-2 { margin-right: 0.5rem; }

.section-label {
 display: inline-block;
 font-size: 0.8rem;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 0.12em;
 background: var(--gradient-primary-subtle);
 color: var(--accent-1);
 padding: 6px 16px;
 border-radius: 50px;
 margin-bottom: 16px;
}

.section-heading {
 font-size: clamp(2rem, 4vw, 3rem);
 margin-bottom: 16px;
}

.section-subheading {
 color: var(--text-muted);
 font-size: 1.125rem;
 max-width: 600px;
}

/* ---------- Buttons ---------- */
.btn-primary-gradient {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 14px 32px;
 background: var(--gradient-cta);
 color: #fff;
 font-weight: 600;
 font-size: 1rem;
 border: none;
 border-radius: 50px;
 cursor: pointer;
 transition: transform 0.25s, box-shadow 0.25s;
 position: relative;
 overflow: hidden;
}

.btn-primary-gradient::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
 opacity: 0;
 transition: opacity 0.3s;
}

.btn-primary-gradient:hover {
 transform: translateY(-2px);
 box-shadow: 0 8px 30px rgba(124,58,237,0.35);
 color: #fff;
}

.btn-primary-gradient:hover::before { opacity: 1; }

.btn-outline-light {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 14px 32px;
 background: transparent;
 color: #fff;
 font-weight: 600;
 font-size: 1rem;
 border: 2px solid rgba(255,255,255,0.25);
 border-radius: 50px;
 cursor: pointer;
 transition: all 0.25s;
}

.btn-outline-light:hover {
 border-color: #fff;
 background: rgba(255,255,255,0.08);
 color: #fff;
 transform: translateY(-2px);
}

.btn-outline-dark {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 14px 32px;
 background: transparent;
 color: var(--text-primary);
 font-weight: 600;
 font-size: 1rem;
 border: 2px solid var(--border-light);
 border-radius: 50px;
 cursor: pointer;
 transition: all 0.25s;
}

.btn-outline-dark:hover {
 border-color: var(--accent-1);
 color: var(--accent-1);
 transform: translateY(-2px);
}

/* ---------- Gradient Text ---------- */
.text-gradient {
 background: var(--gradient-primary);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

/* =========================================
 NAVBAR
 ========================================= */
.navbar {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 height: var(--nav-height);
 display: flex;
 align-items: center;
 transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}

/* Keeps anchor-jump targets (URL hash on load, browser back/forward,
 bookmarks) from landing underneath the fixed navbar. */
section[id] {
 scroll-margin-top: calc(var(--nav-height) + 16px);
}

.navbar.scrolled {
 background: rgba(11,11,18,0.85);
 backdrop-filter: blur(20px);
 -webkit-backdrop-filter: blur(20px);
 box-shadow: 0 1px 0 var(--border-dark);
}

.navbar .container {
 display: flex;
 align-items: center;
 justify-content: space-between;
 width: 100%;
}

.nav-logo {
 display: inline-flex;
 align-items: center;
}

.nav-logo-img {
 height: 54px;
 width: auto;
 display: block;
}

.nav-links {
 display: flex;
 align-items: center;
 gap: 32px;
}

.nav-links a {
 color: rgba(255,255,255,0.7);
 font-size: 0.9rem;
 font-weight: 500;
 position: relative;
 transition: color 0.2s;
}

.nav-links a::after {
 content: '';
 position: absolute;
 bottom: -4px;
 left: 0;
 width: 0;
 height: 2px;
 background: var(--gradient-primary);
 border-radius: 2px;
 transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
 color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
 width: 100%;
}

.nav-cta {
 padding: 10px 24px !important;
 font-size: 0.875rem !important;
}

.nav-cta::after { display: none !important; }

/* Navbar Offcanvas (mobile) */
.navbar-toggler {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 8px;
 z-index: 1001;
}

.navbar-toggler span {
 display: block;
 width: 24px;
 height: 2px;
 background: #fff;
 margin: 5px 0;
 border-radius: 2px;
 transition: all 0.3s;
}

/* Bootstrap-free offcanvas mechanics (panel + backdrop) */
.offcanvas {
 position: fixed;
 top: 0;
 left: 0;
 bottom: 0;
 z-index: 1045;
 width: 340px;
 max-width: 85vw;
 background: var(--bg-light);
 box-shadow: var(--shadow-lg);
 transform: translateX(-100%);
 transition: transform 0.3s ease-in-out;
 visibility: hidden;
 display: flex;
 flex-direction: column;
 overflow-y: auto;
}

.offcanvas.show {
 transform: translateX(0);
 visibility: visible;
}

.offcanvas-header {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
 padding: 14px 20px;
 flex-shrink: 0;
}

/* The full-size logo plus the close button is wider than the panel, so the
 flex row would otherwise squeeze the image and distort it. A smaller height
 makes it fit, and object-fit keeps the aspect ratio correct even on the
 narrowest phones where it still has to shrink. */
.offcanvas-header .nav-logo-img {
 height: auto;
 width: auto;
 max-height: 44px;
 max-width: 100%;
 object-fit: contain;
}

.offcanvas-backdrop {
 position: fixed;
 inset: 0;
 z-index: 1044;
 background: rgba(0,0,0,0.5);
 opacity: 0;
 pointer-events: none;
 transition: opacity 0.3s ease-in-out;
}

.offcanvas-backdrop.show {
 opacity: 1;
 pointer-events: auto;
}

body.offcanvas-open {
 overflow: hidden;
}

.btn-close {
 background: transparent;
 border: none;
 padding: 0;
 width: 36px;
 height: 36px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.1rem;
 cursor: pointer;
 opacity: 0.7;
 transition: opacity 0.2s, background 0.2s;
}

.btn-close:hover {
 opacity: 1;
 background: rgba(0,0,0,0.06);
}

.btn-close-white {
 color: #fff;
}

.btn-close-white:hover {
 background: rgba(255,255,255,0.1);
}

.offcanvas .nav-links-mobile {
 display: flex;
 flex-direction: column;
 gap: 8px;
 padding: 80px 32px 32px;
}

.offcanvas .nav-links-mobile a {
 color: var(--text-primary);
 font-size: 1.25rem;
 font-weight: 600;
 padding: 12px 0;
 opacity: 0;
 transform: translateX(-20px);
}

/* Animation only plays when offcanvas is open — prevents mobile links
   from becoming visible on desktop where the panel should stay hidden. */
.offcanvas.show .nav-links-mobile a {
 animation: fadeInLeft 0.4s forwards;
}

.offcanvas.show .nav-links-mobile a:nth-child(1) { animation-delay: 0.05s; }
.offcanvas.show .nav-links-mobile a:nth-child(2) { animation-delay: 0.1s; }
.offcanvas.show .nav-links-mobile a:nth-child(3) { animation-delay: 0.15s; }
.offcanvas.show .nav-links-mobile a:nth-child(4) { animation-delay: 0.2s; }
.offcanvas.show .nav-links-mobile a:nth-child(5) { animation-delay: 0.25s; }
.offcanvas.show .nav-links-mobile a:nth-child(6) { animation-delay: 0.3s; }
.offcanvas.show .nav-links-mobile a:nth-child(7) { animation-delay: 0.35s; }
.offcanvas.show .nav-links-mobile a:nth-child(8) { animation-delay: 0.4s; }

/* =========================================
 HERO
 ========================================= */
.hero {
 min-height: 110vh;
 background: var(--bg-dark);
 display: flex;
 align-items: center;
 position: relative;
 overflow: hidden;
 padding-top: var(--nav-height);
}

@media (max-width: 991px) {
 .hero { min-height: 100vh; }
}

.hero-bg-blobs {
 position: absolute;
 inset: 0;
 overflow: hidden;
 pointer-events: none;
}

.blob {
 position: absolute;
 border-radius: 50%;
 filter: blur(80px);
 opacity: 0.35;
 will-change: transform;
}

.blob-1 {
 width: 600px;
 height: 600px;
 background: var(--accent-1);
 top: -200px;
 right: -100px;
 animation: floatBlob1 12s ease-in-out infinite;
}

.blob-2 {
 width: 400px;
 height: 400px;
 background: var(--accent-2);
 bottom: -100px;
 left: -100px;
 animation: floatBlob2 15s ease-in-out infinite;
}

.blob-3 {
 width: 300px;
 height: 300px;
 background: var(--accent-3);
 top: 50%;
 left: 50%;
 animation: floatBlob3 10s ease-in-out infinite;
}

.hero-grid-overlay {
 position: absolute;
 inset: 0;
 background-image:
 linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
 linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
 background-size: 60px 60px;
 pointer-events: none;
}

/* Two-column hero layout (replaces Bootstrap's .row/.col-lg-7/.col-lg-5) */
.hero-row {
 display: grid;
 grid-template-columns: 1fr;
 align-items: center;
 gap: 40px;
 position: relative;
 z-index: 2;
}

.hero-col-avatars {
 display: none;
}

@media (min-width: 992px) {
 .hero-row {
 grid-template-columns: 7fr 5fr;
 }

 .hero-col-avatars {
 display: block;
 }
}

.hero-content {
 position: relative;
 z-index: 2;
 margin-top: 24px;
}

.hero-title {
 font-size: clamp(2.8rem, 6vw, 5rem);
 color: #fff;
 font-weight: 700;
 line-height: 1.08;
 margin-bottom: 24px;
}

.hero-title .word {
 display: inline-block;
 white-space: nowrap;
 will-change: transform, opacity;
}

.hero-subtitle {
 font-size: clamp(1rem, 2vw, 1.25rem);
 color: var(--text-muted-light);
 max-width: 540px;
 margin-bottom: 32px;
 line-height: 1.7;
}

.hero-ctas {
 display: flex;
 flex-wrap: wrap;
 gap: 16px;
 margin-bottom: 28px;
}

.hero-avatars {
 position: relative;
 height: 300px;
}

.avatar-circle {
 position: absolute;
 border-radius: 50%;
 overflow: hidden;
 border: 3px solid rgba(255,255,255,0.1);
 will-change: transform;
 transition: transform 0.15s ease-out;
}

.avatar-circle img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.avatar-1 { width: 120px; height: 120px; top: 20px; right: 60px; z-index: 3; }
.avatar-2 { width: 90px; height: 90px; top: 80px; right: 10px; z-index: 2; }
.avatar-3 { width: 100px; height: 100px; top: 140px; right: 140px; z-index: 1; }
.avatar-4 { width: 80px; height: 80px; top: 200px; right: 80px; z-index: 2; }
.avatar-5 { width: 70px; height: 70px; top: 100px; right: 200px; z-index: 1; }
.avatar-6 { width: 85px; height: 85px; top: 0; right: 130px; z-index: 2; }

.hero-stats {
 display: flex;
 flex-wrap: wrap;
 gap: 40px;
 padding-top: 20px;
 border-top: 1px solid var(--border-dark);
}

.hero-stat {
 text-align: left;
}

.hero-stat-number {
 /* Fixed-width digits so the counter animation swaps numbers without
 changing the text width, which kept re-laying-out the row each frame. */
 font-variant-numeric: tabular-nums;
 font-family: var(--font-heading);
 font-size: 2rem;
 font-weight: 700;
 background: var(--gradient-primary);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.hero-stat-label {
 font-size: 0.875rem;
 color: var(--text-muted-light);
 margin-top: 4px;
}

.scroll-indicator {
 position: absolute;
 bottom: 32px;
 left: 50%;
 transform: translateX(-50%);
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 8px;
 color: rgba(255,255,255,0.4);
 font-size: 0.75rem;
 letter-spacing: 0.1em;
 text-transform: uppercase;
}

.scroll-indicator .mouse {
 width: 24px;
 height: 38px;
 border: 2px solid rgba(255,255,255,0.3);
 border-radius: 12px;
 position: relative;
}

.scroll-indicator .mouse::after {
 content: '';
 position: absolute;
 width: 4px;
 height: 8px;
 background: #fff;
 border-radius: 2px;
 top: 8px;
 left: 50%;
 transform: translateX(-50%);
 animation: scrollWheel 1.5s ease-in-out infinite;
}

/* =========================================
 LOGO MARQUEE
 ========================================= */
.logo-marquee {
 padding: 48px 0;
 background: #fff;
 border-bottom: 1px solid var(--border-light);
 overflow: hidden;
}

.marquee-track {
 display: flex;
 animation: marqueeScroll 30s linear infinite;
 width: max-content;
}

.marquee-track:hover {
 animation-play-state: paused;
}

.marquee-item {
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 0 48px;
 font-family: var(--font-heading);
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text-muted);
 white-space: nowrap;
 transition: color 0.3s;
 cursor: default;
}

.marquee-item:hover {
 color: var(--accent-1);
}

.marquee-item svg {
 height: 28px;
 width: auto;
}

/* =========================================
 ABOUT US
 ========================================= */
.about-section {
 padding: 100px 0;
 background: #fff;
}

.about-section .feature-row {
 margin-bottom: 72px;
}

.about-values-title {
 font-size: 1.5rem;
 color: var(--text-primary);
 margin-bottom: 32px;
}

.about-values-row {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 20px;
}

.value-card {
 background: var(--bg-light);
 border: 1px solid var(--border-light);
 border-radius: var(--radius-lg);
 padding: 28px 24px;
 transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
 transform: translateY(-6px);
 box-shadow: var(--shadow-lg);
}

.value-icon {
 width: 48px;
 height: 48px;
 border-radius: var(--radius-md);
 background: var(--gradient-primary-subtle);
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 16px;
 font-size: 1.3rem;
 color: var(--accent-1);
}

.value-card h4 {
 font-size: 1rem;
 margin-bottom: 8px;
}

.value-card p {
 font-size: 0.875rem;
 color: var(--text-muted);
 line-height: 1.6;
}

/* =========================================
 HOW IT WORKS
 ========================================= */
.how-it-works {
 padding: 100px 0;
 background: var(--bg-light);
}

.tabs-container {
 display: flex;
 justify-content: center;
 margin-bottom: 60px;
}

.tabs-pills {
 display: inline-flex;
 background: var(--bg-card);
 border-radius: 50px;
 padding: 4px;
 box-shadow: var(--shadow-md);
 border: 1px solid var(--border-light);
}

.tab-pill {
 padding: 12px 28px;
 border: none;
 background: transparent;
 font-family: var(--font-body);
 font-size: 0.95rem;
 font-weight: 600;
 color: var(--text-muted);
 border-radius: 50px;
 cursor: pointer;
 transition: all 0.25s;
}

.tab-pill.active {
 background: var(--gradient-cta);
 color: #fff;
 box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}

.steps-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 24px;
 position: relative;
}

.step-card {
 background: var(--bg-card);
 border-radius: var(--radius-lg);
 padding: 36px 28px;
 text-align: center;
 border: 1px solid var(--border-light);
 transition: transform 0.3s, box-shadow 0.3s;
 position: relative;
 z-index: 1;
}

.step-card:hover {
 transform: translateY(-6px);
 box-shadow: var(--shadow-lg);
}

.step-icon {
 width: 56px;
 height: 56px;
 border-radius: var(--radius-md);
 background: var(--gradient-primary-subtle);
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 20px;
 font-size: 1.5rem;
 color: var(--accent-1);
}

.step-number {
 font-family: var(--font-heading);
 font-size: 3rem;
 font-weight: 700;
 background: var(--gradient-primary);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 opacity: 0.2;
 position: absolute;
 top: 12px;
 right: 20px;
}

.step-card h3 {
 font-size: 1.1rem;
 margin-bottom: 8px;
}

.step-card p {
 font-size: 0.9rem;
 color: var(--text-muted);
 line-height: 1.6;
}

/* SVG connecting line */
.steps-connector {
 display: none;
}

.tab-panel {
 display: none;
}

.tab-panel.active {
 display: block;
}

/* =========================================
 PLATFORM SHOWCASE
 ========================================= */
.platform-showcase {
 padding: 100px 0;
 background: #fff;
}

.feature-row {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 64px;
 align-items: center;
 margin-bottom: 100px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }

.feature-text .section-label { margin-bottom: 12px; }

.feature-text h3 {
 font-size: clamp(1.5rem, 3vw, 2.25rem);
 margin-bottom: 16px;
}

.feature-text p {
 color: var(--text-muted);
 font-size: 1.05rem;
 margin-bottom: 24px;
 line-height: 1.7;
}

.feature-list {
 display: flex;
 flex-direction: column;
 gap: 12px;
}

.feature-list li {
 display: flex;
 align-items: center;
 gap: 10px;
 font-size: 0.95rem;
 color: var(--text-primary);
}

.feature-list li .check-icon {
 width: 20px;
 height: 20px;
 border-radius: 50%;
 background: rgba(124,58,237,0.1);
 color: var(--accent-1);
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 0.7rem;
 flex-shrink: 0;
}

/* Mockup frame */
.mockup-frame {
 background: var(--bg-dark);
 border-radius: var(--radius-lg);
 padding: 12px;
 box-shadow: var(--shadow-lg);
 position: relative;
 overflow: hidden;
}

.mockup-dots {
 display: flex;
 gap: 6px;
 margin-bottom: 12px;
 padding: 4px 4px 0;
}

.mockup-dot {
 width: 10px;
 height: 10px;
 border-radius: 50%;
 background: rgba(255,255,255,0.15);
}

.mockup-dot:first-child { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #28CA41; }

.mockup-content {
 background: linear-gradient(180deg, #111127 0%, #0B0B12 100%);
 border-radius: var(--radius-sm);
 padding: 24px;
 min-height: 280px;
 position: relative;
 overflow: hidden;
}

/* Mockup dashboard UI */
.mockup-sidebar {
 position: absolute;
 left: 0;
 top: 0;
 bottom: 0;
 width: 60px;
 background: rgba(255,255,255,0.03);
 border-right: 1px solid var(--border-dark);
 display: flex;
 flex-direction: column;
 align-items: center;
 padding: 16px 0;
 gap: 16px;
}

.mockup-sidebar-icon {
 width: 28px;
 height: 28px;
 border-radius: 8px;
 background: rgba(124,58,237,0.2);
}

.mockup-main {
 margin-left: 60px;
 padding: 16px;
}

.mockup-cards {
 display: flex;
 gap: 12px;
 margin-bottom: 16px;
}

.mockup-stat-card {
 flex: 1;
 background: rgba(255,255,255,0.05);
 border-radius: 10px;
 padding: 14px;
 border: 1px solid var(--border-dark);
}

.mockup-stat-bar {
 height: 4px;
 border-radius: 2px;
 background: var(--gradient-primary);
 margin-top: 10px;
 width: 60%;
}

.mockup-chart {
 background: rgba(255,255,255,0.03);
 border-radius: 10px;
 padding: 16px;
 border: 1px solid var(--border-dark);
 height: 120px;
 position: relative;
 overflow: hidden;
}

.mockup-chart-bars {
 display: flex;
 align-items: flex-end;
 gap: 8px;
 height: 70px;
 margin-top: 8px;
}

.mockup-chart-bar {
 flex: 1;
 border-radius: 4px 4px 0 0;
 background: var(--gradient-primary);
 opacity: 0.7;
}

/* =========================================
 CREATOR SHOWCASE
 ========================================= */
.creator-showcase {
 padding: 100px 0;
 background: var(--bg-light);
}

.filter-chips {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
 margin-bottom: 40px;
}

.filter-chip {
 padding: 8px 20px;
 border: 1px solid var(--border-light);
 border-radius: 50px;
 background: #fff;
 font-size: 0.875rem;
 font-weight: 500;
 color: var(--text-muted);
 cursor: pointer;
 transition: all 0.25s;
}

.filter-chip:hover,
.filter-chip.active {
 background: var(--gradient-cta);
 border-color: transparent;
 color: #fff;
}

.creators-grid {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
 gap: 24px;
}

.creator-card {
 background: var(--bg-card);
 border-radius: var(--radius-lg);
 overflow: hidden;
 border: 1px solid var(--border-light);
 transition: transform 0.3s, box-shadow 0.3s;
 cursor: pointer;
 position: relative;
}

.creator-card:hover {
 transform: translateY(-6px);
 box-shadow: var(--shadow-lg);
}

.creator-card-image {
 height: 240px;
 overflow: hidden;
 position: relative;
}

.creator-card-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.4s;
}

.creator-card:hover .creator-card-image img {
 transform: scale(1.05);
}

.creator-card-overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(180deg, transparent 50%, rgba(11,11,18,0.7) 100%);
 opacity: 0;
 transition: opacity 0.3s;
 display: flex;
 align-items: flex-end;
 padding: 20px;
}

.creator-card:hover .creator-card-overlay { opacity: 1; }

.creator-card-overlay span {
 color: #fff;
 font-weight: 600;
 font-size: 0.9rem;
}

.creator-niche-tag {
 position: absolute;
 top: 12px;
 left: 12px;
 background: rgba(0,0,0,0.6);
 backdrop-filter: blur(8px);
 color: #fff;
 font-size: 0.75rem;
 font-weight: 600;
 padding: 4px 12px;
 border-radius: 50px;
}

.creator-card-info {
 padding: 20px;
}

.creator-card-info h3 {
 font-size: 1.05rem;
 margin-bottom: 4px;
}

.creator-meta {
 display: flex;
 gap: 16px;
 font-size: 0.85rem;
 color: var(--text-muted);
}

.creator-meta span {
 display: flex;
 align-items: center;
 gap: 4px;
}

/* =========================================
 CASE STUDIES
 ========================================= */
.case-studies {
 padding: 100px 0;
 background: #fff;
}

.case-studies .section-header {
 text-align: center;
 margin-bottom: 60px;
}

.case-studies .section-header .section-subheading {
 margin: 0 auto;
}

.case-studies-carousel {
 position: relative;
}

.case-studies-track-wrapper {
 overflow: hidden;
 padding-bottom: 12px;
 -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
 mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.case-arrow {
 position: absolute;
 top: 45%;
 transform: translateY(-50%);
 width: 48px;
 height: 48px;
 border-radius: 50%;
 background: #fff;
 border: 1px solid var(--border-light);
 box-shadow: var(--shadow-md);
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.2rem;
 color: var(--text-primary);
 cursor: pointer;
 z-index: 3;
 transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}

.case-arrow:hover {
 background: var(--gradient-cta);
 color: #fff;
 border-color: transparent;
 box-shadow: var(--shadow-lg);
}

.case-arrow:active {
 transform: translateY(-50%) scale(0.94);
}

.case-arrow-left {
 left: -22px;
}

.case-arrow-right {
 right: -22px;
}

@media (max-width: 767px) {
 .case-arrow {
 width: 40px;
 height: 40px;
 font-size: 1rem;
 }

 .case-arrow-left { left: 4px; }
 .case-arrow-right { right: 4px; }
}

.case-studies-track {
 display: flex;
 align-items: stretch;
 gap: 24px;
 width: max-content;
 animation: caseStudiesScroll 32s linear infinite;
}

.case-studies-track-wrapper:hover .case-studies-track {
 animation-play-state: paused;
}

.case-card-item {
 flex: 0 0 380px;
 width: 380px;
}

.case-card {
 background: var(--bg-card);
 border-radius: var(--radius-lg);
 padding: 36px;
 border: 1px solid var(--border-light);
 height: 100%;
 display: flex;
 flex-direction: column;
 transition: transform 0.3s, box-shadow 0.3s;
}

.case-card:hover {
 transform: translateY(-4px);
 box-shadow: var(--shadow-lg);
}

.case-card-logo {
 font-family: var(--font-heading);
 font-weight: 700;
 font-size: 1.25rem;
 color: var(--text-muted);
 margin-bottom: 16px;
}

.case-card-metrics {
 display: flex;
 flex-wrap: nowrap;
 gap: 12px;
 margin-bottom: 20px;
 padding: 20px 0;
 border-top: 1px solid var(--border-light);
 border-bottom: 1px solid var(--border-light);
}

.case-metric {
 flex: 1;
 min-width: 0;
 text-align: center;
}

.case-metric-value {
 font-family: var(--font-heading);
 font-size: 1.75rem;
 font-weight: 700;
 background: var(--gradient-primary);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.case-metric-label {
 font-size: 0.8rem;
 color: var(--text-muted);
 text-transform: uppercase;
 letter-spacing: 0.05em;
}

.case-card p {
 color: var(--text-muted);
 font-size: 0.95rem;
 line-height: 1.7;
 flex: 1;
}

/* =========================================
 TESTIMONIALS
 ========================================= */
.testimonials {
 padding: 100px 0;
 background: var(--bg-light);
}

.testimonials .section-header {
 text-align: center;
 margin-bottom: 40px;
}

.testimonial-tabs {
 display: flex;
 justify-content: center;
 gap: 4px;
 margin-bottom: 48px;
 background: #fff;
 border-radius: 50px;
 padding: 4px;
 width: fit-content;
 margin-left: auto;
 margin-right: auto;
 box-shadow: var(--shadow-md);
 border: 1px solid var(--border-light);
}

.testimonial-tab {
 padding: 10px 24px;
 border: none;
 background: transparent;
 font-family: var(--font-body);
 font-size: 0.9rem;
 font-weight: 600;
 color: var(--text-muted);
 border-radius: 50px;
 cursor: pointer;
 transition: all 0.25s;
}

.testimonial-tab.active {
 background: var(--bg-dark);
 color: #fff;
}

.testimonials-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
}

.testimonial-slide {
 background: var(--bg-card);
 border-radius: var(--radius-lg);
 padding: 40px;
 border: 1px solid var(--border-light);
 height: 100%;
}

.testimonial-stars {
 display: flex;
 gap: 4px;
 margin-bottom: 20px;
 color: #FBBF24;
 font-size: 1.1rem;
}

.testimonial-quote {
 font-size: 1.1rem;
 line-height: 1.8;
 color: var(--text-primary);
 margin-bottom: 24px;
 font-style: italic;
}

.testimonial-author {
 display: flex;
 align-items: center;
 gap: 14px;
}

.testimonial-avatar {
 width: 48px;
 height: 48px;
 border-radius: 50%;
 overflow: hidden;
 background: var(--gradient-primary-subtle);
 display: flex;
 align-items: center;
 justify-content: center;
 font-weight: 700;
 color: var(--accent-1);
 font-size: 1.1rem;
}

.testimonial-author-info h3 {
 font-size: 0.95rem;
 margin-bottom: 2px;
}

.testimonial-author-info p {
 font-size: 0.85rem;
 color: var(--text-muted);
 margin: 0;
}

/* =========================================
 PRICING
 ========================================= */
.pricing-section {
 padding: 100px 0;
 background: var(--bg-dark);
 color: var(--text-on-dark);
}

.pricing-section .section-label {
 background: rgba(124,58,237,0.15);
}

.pricing-section .section-subheading {
 color: var(--text-muted-light);
}

.pricing-toggle {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 12px;
 margin: 32px 0 48px;
}

.pricing-toggle span {
 font-size: 0.9rem;
 font-weight: 500;
 color: var(--text-muted-light);
}

.pricing-toggle span.active { color: #fff; }

.toggle-switch {
 width: 48px;
 height: 26px;
 background: rgba(255,255,255,0.15);
 border-radius: 13px;
 cursor: pointer;
 position: relative;
 transition: background 0.3s;
 border: none;
}

.toggle-switch.active {
 background: var(--gradient-cta);
}

.toggle-switch::after {
 content: '';
 position: absolute;
 width: 20px;
 height: 20px;
 background: #fff;
 border-radius: 50%;
 top: 3px;
 left: 3px;
 transition: transform 0.3s;
 box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch.active::after {
 transform: translateX(22px);
}

.badge-save {
 font-size: 0.75rem;
 background: rgba(34,197,94,0.15);
 color: #4ADE80;
 padding: 3px 10px;
 border-radius: 50px;
 font-weight: 600;
}

.pricing-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
 align-items: start;
 margin-top: 56px;
}

.pricing-card {
 background: rgba(255,255,255,0.04);
 border: 1px solid var(--border-dark);
 border-radius: var(--radius-xl);
 padding: 40px 32px;
 transition: transform 0.3s, box-shadow 0.3s;
 position: relative;
}

.pricing-card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
 background: rgba(124,58,237,0.08);
 border-color: rgba(124,58,237,0.3);
}

.pricing-card-badge {
 position: absolute;
 top: -12px;
 left: 50%;
 transform: translateX(-50%);
 background: var(--gradient-cta);
 color: #fff;
 font-size: 0.8rem;
 font-weight: 600;
 padding: 4px 16px;
 border-radius: 50px;
}

.pricing-card h3 {
 font-size: 1.25rem;
 margin-bottom: 8px;
 color: #fff;
}

.pricing-cta-text {
 font-family: var(--font-heading);
 font-size: 1.75rem;
 font-weight: 700;
 background: var(--gradient-primary);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 margin: 16px 0 24px;
}

.pricing-card .price-desc {
 font-size: 0.9rem;
 color: var(--text-muted-light);
 margin-bottom: 32px;
 padding-bottom: 24px;
 border-bottom: 1px solid var(--border-dark);
}

.pricing-features {
 display: flex;
 flex-direction: column;
 gap: 12px;
 margin-bottom: 32px;
}

.pricing-features li {
 display: flex;
 align-items: center;
 gap: 10px;
 font-size: 0.9rem;
 color: rgba(255,255,255,0.7);
}

.pricing-features li .check {
 color: #4ADE80;
 font-size: 1rem;
}

.pricing-card .btn-primary-gradient {
 width: 100%;
 justify-content: center;
}

.pricing-card .btn-outline-light {
 width: 100%;
 justify-content: center;
}

/* =========================================
 CTA BAND
 ========================================= */
.cta-band {
 padding: 90px 0;
 background: var(--gradient-primary);
 position: relative;
 overflow: hidden;
}

.cta-band-inner {
 max-width: 640px;
 margin: 0 auto;
 position: relative;
 z-index: 1;
}

.cta-band-buttons {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 16px;
}

.btn-white {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 14px 32px;
 background: #fff;
 color: var(--accent-1);
 font-weight: 600;
 font-size: 1rem;
 border: none;
 border-radius: 50px;
 cursor: pointer;
 transition: transform 0.25s, box-shadow 0.25s;
}

.btn-white:hover {
 transform: translateY(-2px);
 box-shadow: 0 8px 30px rgba(0,0,0,0.25);
 color: var(--accent-1);
}

/* =========================================
 STATS BAND
 ========================================= */
.stats-band {
 padding: 80px 0;
 background: var(--gradient-dark);
 position: relative;
 overflow: hidden;
}

.stats-band::before {
 content: '';
 position: absolute;
 inset: 0;
 background-image:
 linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
 linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
 background-size: 40px 40px;
}

.stats-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 32px;
 position: relative;
 z-index: 1;
}

.stat-item {
 text-align: center;
}

.stat-number {
 /* Fixed-width digits so the counter animation swaps numbers without
 changing the text width, which kept re-laying-out the row each frame. */
 font-variant-numeric: tabular-nums;
 font-family: var(--font-heading);
 font-size: clamp(2rem, 4vw, 3.5rem);
 font-weight: 700;
 background: var(--gradient-primary);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 line-height: 1.1;
}

.stat-suffix {
 background: var(--gradient-primary);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.stat-label {
 font-size: 0.95rem;
 color: var(--text-muted-light);
 margin-top: 8px;
}

/* =========================================
 FAQ
 ========================================= */
.faq-section {
 padding: 100px 0;
 background: #fff;
}

.faq-section .section-header {
 text-align: center;
 margin-bottom: 48px;
}

.faq-section .section-header .section-subheading {
 margin: 0 auto;
}

.accordion-item {
 border: 1px solid var(--border-light);
 border-radius: var(--radius-md) !important;
 margin-bottom: 12px;
 overflow: hidden;
}

.accordion-button {
 width: 100%;
 border: none;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
 text-align: left;
 font-family: var(--font-heading);
 font-size: 1.05rem;
 font-weight: 600;
 color: var(--text-primary) !important;
 padding: 20px 24px;
 background: var(--bg-card) !important;
}

.accordion-button:not(.collapsed) {
 color: var(--accent-1) !important;
 background: rgba(124,58,237,0.04) !important;
 box-shadow: none !important;
}

.accordion-button::after {
 content: '';
 flex-shrink: 0;
 width: 14px;
 height: 14px;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A1A2E'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
 background-repeat: no-repeat;
 background-position: center;
 background-size: contain;
 transition: transform 0.3s;
}

.accordion-button:not(.collapsed)::after {
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237C3AED'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
 transform: rotate(180deg);
}

.accordion-collapse {
 overflow: hidden;
 max-height: 0;
 transition: max-height 0.35s ease-in-out;
}

.accordion-body {
 padding: 0 24px 20px;
 color: var(--text-muted);
 font-size: 0.95rem;
 line-height: 1.7;
}

/* =========================================
 STATIC PAGE HEADER (privacy / terms)
 ========================================= */
.page-header {
 padding: 160px 0 70px;
 background: var(--bg-dark);
 position: relative;
 overflow: hidden;
 text-align: center;
}

.page-header .container {
 position: relative;
 z-index: 1;
}

.page-header h1 {
 color: #fff;
 font-size: clamp(2rem, 4vw, 3rem);
 margin: 16px 0 8px;
}

.page-header p {
 color: var(--text-muted-light);
 font-size: 0.95rem;
}

/* =========================================
 LEGAL CONTENT (privacy / terms)
 ========================================= */
.legal-content {
 padding: 80px 0 100px;
 background: #fff;
}

.legal-content .container {
 max-width: 780px;
}

.legal-content > .container > p:first-child {
 font-size: 1.05rem;
 color: var(--text-muted);
 line-height: 1.8;
 margin-bottom: 8px;
}

.legal-content h2 {
 font-size: 1.4rem;
 margin: 40px 0 14px;
 color: var(--text-primary);
}

.legal-content p {
 color: var(--text-muted);
 font-size: 1rem;
 line-height: 1.8;
 margin-bottom: 16px;
}

.legal-content ul {
 margin: 0 0 16px;
}

.legal-content ul li {
 color: var(--text-muted);
 font-size: 1rem;
 line-height: 1.8;
 padding-left: 22px;
 position: relative;
 margin-bottom: 8px;
}

.legal-content ul li::before {
 content: '';
 position: absolute;
 left: 4px;
 top: 12px;
 width: 6px;
 height: 6px;
 border-radius: 50%;
 background: var(--accent-1);
}

/* =========================================
 THANK YOU PAGE
 ========================================= */
.thank-you-hero {
 min-height: 100vh;
 background: var(--bg-dark);
 display: flex;
 align-items: center;
 justify-content: center;
 position: relative;
 overflow: hidden;
 padding-top: var(--nav-height);
 text-align: center;
}

.thank-you-content {
 position: relative;
 z-index: 2;
 max-width: 620px;
 margin: 0 auto;
}

.thank-you-icon {
 width: 88px;
 height: 88px;
 border-radius: 50%;
 background: rgba(34,197,94,0.15);
 color: #4ADE80;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 2.5rem;
 margin: 0 auto 24px;
}

.thank-you-content h1 {
 font-family: var(--font-heading);
 font-weight: 700;
 font-size: clamp(2rem, 4vw, 3rem);
 color: #fff;
 margin: 16px 0;
}

.thank-you-content p {
 color: var(--text-muted-light);
 font-size: 1.05rem;
 line-height: 1.7;
 margin-bottom: 40px;
}

.thank-you-actions {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 16px;
}

/* =========================================
 CTA / CONTACT
 ========================================= */
.contact-section {
 padding: 100px 0;
 background: var(--bg-dark);
 position: relative;
 overflow: hidden;
}

.contact-section .blob {
 opacity: 0.2;
}

.contact-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 64px;
 align-items: start;
 position: relative;
 z-index: 2;
}

.contact-heading {
 font-size: clamp(2rem, 4vw, 3rem);
 color: #fff;
 margin-bottom: 16px;
}

.contact-subheading {
 color: var(--text-muted-light);
 font-size: 1.05rem;
 margin-bottom: 32px;
 line-height: 1.7;
}

.contact-form {
 background: rgba(255,255,255,0.04);
 border: 1px solid var(--border-dark);
 border-radius: var(--radius-xl);
 padding: 40px;
}

.form-group {
 margin-bottom: 20px;
}

.form-group label {
 display: block;
 font-size: 0.875rem;
 font-weight: 600;
 color: rgba(255,255,255,0.8);
 margin-bottom: 8px;
}

.form-control {
 width: 100%;
 padding: 12px 16px;
 background: rgba(255,255,255,0.06);
 border: 1px solid var(--border-dark);
 border-radius: var(--radius-sm);
 color: #fff;
 font-family: var(--font-body);
 font-size: 0.95rem;
 transition: border-color 0.2s, box-shadow 0.2s;
 outline: none;
}

.form-control::placeholder { color: var(--text-muted-light); }

.form-control:focus {
 border-color: var(--accent-1);
 box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}

.form-control.error {
 border-color: #EF4444;
 box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}

.form-error-msg {
 font-size: 0.8rem;
 color: #EF4444;
 margin-top: 4px;
 display: none;
}

.form-error-msg.visible { display: block; }

.radio-group {
 display: flex;
 gap: 12px;
}

.radio-option {
 flex: 1;
}

.radio-option input[type="radio"] { display: none; }

.radio-option label {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 padding: 12px 16px;
 background: rgba(255,255,255,0.06);
 border: 1px solid var(--border-dark);
 border-radius: var(--radius-sm);
 cursor: pointer;
 font-size: 0.9rem;
 font-weight: 500;
 color: rgba(255,255,255,0.7);
 transition: all 0.2s;
}

.radio-option input[type="radio"]:checked + label {
 background: rgba(124,58,237,0.15);
 border-color: var(--accent-1);
 color: #fff;
}

textarea.form-control {
 resize: vertical;
 min-height: 100px;
}

/* Success Toast */
.toast-success {
 display: none;
 text-align: center;
 padding: 40px;
}

.toast-success.visible {
 display: block;
 animation: fadeInUp 0.5s ease;
}

.toast-icon {
 width: 64px;
 height: 64px;
 border-radius: 50%;
 background: rgba(34,197,94,0.15);
 color: #4ADE80;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 2rem;
 margin: 0 auto 16px;
}

.toast-success h3 {
 color: #fff;
 font-size: 1.5rem;
 margin-bottom: 8px;
}

.toast-success p {
 color: var(--text-muted-light);
}

.contact-form-wrapper {
 position: relative;
}

.contact-form-wrapper.submitted .form-fields {
 display: none;
}

/* =========================================
 FOOTER
 ========================================= */
.footer {
 background: var(--bg-darker);
 padding: 80px 0 0;
 color: var(--text-muted-light);
}

.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr;
 gap: 48px;
 padding-bottom: 60px;
 border-bottom: 1px solid var(--border-dark);
}

.footer-brand .nav-logo {
 margin-bottom: 16px;
}

.footer-brand p {
 font-size: 0.9rem;
 line-height: 1.7;
 margin-bottom: 24px;
}

.social-icons {
 display: flex;
 gap: 12px;
}

.social-icon {
 width: 40px;
 height: 40px;
 border-radius: 50%;
 background: rgba(255,255,255,0.06);
 display: flex;
 align-items: center;
 justify-content: center;
 transition: all 0.3s;
 color: var(--text-muted-light);
 font-size: 1rem;
}

.social-icon:hover {
 background: var(--gradient-cta);
 color: #fff;
 transform: translateY(-3px);
}

.footer-col h3 {
 color: #fff;
 font-size: 0.9rem;
 font-weight: 600;
 margin-bottom: 20px;
 text-transform: uppercase;
 letter-spacing: 0.08em;
}

.footer-col ul li {
 margin-bottom: 10px;
}

.footer-col ul li a {
 font-size: 0.9rem;
 color: var(--text-muted-light);
 transition: color 0.2s;
}

.footer-col ul li a:hover {
 color: #fff;
}

.newsletter-input-group {
 display: flex;
 gap: 8px;
 margin-top: 12px;
}

.newsletter-input-group input {
 flex: 1;
 padding: 10px 16px;
 background: rgba(255,255,255,0.06);
 border: 1px solid var(--border-dark);
 border-radius: 50px;
 color: #fff;
 font-size: 0.9rem;
 outline: none;
 font-family: var(--font-body);
}

.newsletter-input-group input:focus {
 border-color: var(--accent-1);
}

.newsletter-input-group button {
 padding: 10px 20px;
 background: var(--gradient-cta);
 border: none;
 border-radius: 50px;
 color: #fff;
 font-weight: 600;
 cursor: pointer;
 transition: transform 0.2s;
 font-family: var(--font-body);
}

.newsletter-input-group button:hover {
 transform: translateY(-1px);
}

.footer-bottom {
 padding: 24px 0;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.85rem;
}

.footer-bottom a { color: var(--text-muted-light); }
.footer-bottom a:hover { color: #fff; }

.back-to-top {
 width: 40px;
 height: 40px;
 border-radius: 50%;
 background: rgba(255,255,255,0.06);
 border: 1px solid var(--border-dark);
 color: var(--text-muted-light);
 display: flex;
 align-items: center;
 justify-content: center;
 cursor: pointer;
 opacity: 0;
 transform: translateY(10px);
 transition: all 0.3s;
}

.back-to-top.visible {
 opacity: 1;
 transform: translateY(0);
}

.back-to-top:hover {
 background: var(--gradient-cta);
 color: #fff;
 border-color: transparent;
}

/* =========================================
 ANIMATIONS (keyframes)
 ========================================= */
@keyframes floatBlob1 {
 0%, 100% { transform: translate(0, 0) scale(1); }
 33% { transform: translate(-80px, 60px) scale(1.1); }
 66% { transform: translate(40px, -40px) scale(0.9); }
}

@keyframes floatBlob2 {
 0%, 100% { transform: translate(0, 0) scale(1); }
 33% { transform: translate(60px, -50px) scale(1.05); }
 66% { transform: translate(-40px, 30px) scale(0.95); }
}

@keyframes floatBlob3 {
 0%, 100% { transform: translate(-50%, -50%) scale(1); }
 50% { transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes marqueeScroll {
 0% { transform: translateX(0); }
 100% { transform: translateX(-50%); }
}

@keyframes caseStudiesScroll {
 0% { transform: translateX(0); }
 100% { transform: translateX(-50%); }
}

@keyframes scrollWheel {
 0% { transform: translateX(-50%) translateY(0); opacity: 1; }
 100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

@keyframes fadeInLeft {
 from { opacity: 0; transform: translateX(-20px); }
 to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
 from { opacity: 0; transform: translateY(20px); }
 to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
 0%, 100% { opacity: 0.35; }
 50% { opacity: 0.5; }
}

/* =========================================
 RESPONSIVE
 ========================================= */
@media (max-width: 991px) {
 .nav-links { display: none; }
 .navbar-toggler { display: block; }

 .hero { text-align: center; }
 .hero-subtitle { margin: 0 auto 40px; }
 .hero-ctas { justify-content: center; }
 .hero-stats { justify-content: center; }
 .hero-avatars { display: none; }

 .about-values-row { grid-template-columns: repeat(2, 1fr); }
 .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
 .steps-grid { grid-template-columns: repeat(2, 1fr); }
 .feature-row { grid-template-columns: 1fr; gap: 40px; }
 .feature-row.reverse .feature-text { order: 0; }
 .feature-row.reverse .feature-visual { order: 0; }
 .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 56px auto 0; }
 .stats-grid { grid-template-columns: repeat(2, 1fr); }
 .contact-grid { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
 .about-values-row { grid-template-columns: 1fr; }
 .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
 .testimonials-grid { grid-template-columns: 1fr; }
 .creators-grid { grid-template-columns: 1fr; }
 .stats-grid { grid-template-columns: 1fr 1fr; }
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .footer-brand { grid-column: 1 / -1; }
 .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
 .hero-stats { gap: 24px; }
 .case-card-metrics { gap: 12px; }
 .case-card-item { flex-basis: 82vw; width: 82vw; max-width: 340px; }
 .case-studies-track-wrapper {
 -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
 mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
 }
 .case-studies-track {
 animation: none;
 padding-left: calc((100% - min(82vw, 340px)) / 2);
 }
 .contact-form { padding: 24px; }
 .radio-group { flex-direction: column; }
}

@media (max-width: 576px) {
 .container { padding: 0 16px; }
 .hero-ctas { flex-direction: column; align-items: center; }
 .btn-primary-gradient, .btn-outline-light { width: 100%; justify-content: center; }
 .stats-grid { grid-template-columns: 1fr; gap: 24px; }
 .filter-chips { gap: 6px; }
 .filter-chip { padding: 6px 14px; font-size: 0.8rem; }
 .case-card { padding: 24px 18px; }
 .case-card-metrics { gap: 6px; }
 .case-metric-value { font-size: 1.25rem; }
 .case-metric-label { font-size: 0.62rem; letter-spacing: 0.02em; }
}

/* Hide the decorative scroll cue on short viewports so it never
 overlaps the hero stats row (e.g. laptops with browser chrome),
 and on narrow (mobile) viewports where the stats row wraps closer
 to the bottom of the hero regardless of viewport height. */
@media (max-height: 720px), (max-width: 767px) {
 .scroll-indicator { display: none; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
 *, *::before, *::after {
 animation-duration: 0.01ms !important;
 animation-iteration-count: 1 !important;
 transition-duration: 0.01ms !important;
 }
 html { scroll-behavior: auto; }
}

/* ---------- Focus styles ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
 outline: 2px solid var(--accent-1);
 outline-offset: 2px;
}

/* =========================================
   OFFCANVAS DEFENSIVE FIX
   Ensures offcanvas stays hidden on desktop and fixes any visibility glitches
   ========================================= */
@media (min-width: 992px) {
  /* Desktop: always show horizontal nav, always hide mobile menu */
  .nav-links {
    display: flex !important;
  }
  .navbar-toggler {
    display: none !important;
  }
  .offcanvas,
  .offcanvas-backdrop {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    overflow: hidden !important;
    width: 0 !important;
    position: fixed !important;
    left: -9999px !important;
  }
  .offcanvas .nav-links-mobile,
  .offcanvas .nav-links-mobile a {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  body.offcanvas-open {
    overflow: auto !important;
  }
}

/* When offcanvas is not open, keep everything hidden and reset link opacity */
.offcanvas:not(.show) {
  visibility: hidden !important;
  transform: translateX(-100%) !important;
  pointer-events: none !important;
}

.offcanvas:not(.show) .nav-links-mobile a {
  opacity: 0 !important;
  animation: none !important;
}
