/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-dark: #070709;
    --bg-darker: #020203;
    --card-bg: rgba(13, 14, 18, 0.6);
    --card-bg-solid: #0d0e12;
    --card-border: rgba(255, 255, 255, 0.07);
    --text-primary: #fafafa;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    /* Accents */
    --accent-purple: #9d4edd;
    --accent-purple-glow: rgba(157, 78, 221, 0.35);
    --accent-cyan: #00f0ff;
    --accent-cyan-glow: rgba(0, 240, 255, 0.3);
    --accent-orange: #ff6b0a;
    --accent-orange-glow: rgba(255, 107, 10, 0.35);
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
    --grad-orange: linear-gradient(135deg, #ff8c00 0%, var(--accent-orange) 100%);
    --grad-purple-orange: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-orange) 100%);
    --grad-dark: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    
    /* Typography */
    --font-headings: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout & Transitions */
    --container-max-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    
    /* Header height */
    --header-height: 80px;
}

/* ==========================================================================
   RESET & GLOBAL BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--grad-dark);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

ul {
    list-style: none;
}

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   UTILITY & COMPONENT STYLES
   ========================================================================== */
.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }
.text-purple { color: #c084fc; }
.text-cyan { color: #22d3ee; }
.text-orange { color: #fb923c; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-headings);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-darker);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-gradient {
    background: var(--grad-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px var(--accent-purple-glow);
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-gradient:hover::before {
    opacity: 1;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(157, 78, 221, 0.5);
}

.btn-gradient > * {
    position: relative;
    z-index: 2;
}

.btn-outline {
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.full-width {
    width: 100%;
}

/* Glassmorphism Card base */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Section Common Headers */
.section-header {
    margin-bottom: 60px;
}

.section-tagline {
    font-family: var(--font-headings);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */
.site-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(2, 2, 3, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    height: 70px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    position: relative;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent-purple);
}

.logo-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--accent-purple);
    filter: blur(25px);
    opacity: 0.5;
    pointer-events: none;
    left: -10px;
    z-index: -1;
}

.main-nav ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: var(--transition-quick);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-quick);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.hero-bg-glows .glow-1 {
    position: absolute;
    top: -10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
    filter: blur(80px);
}

.hero-bg-glows .glow-2 {
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-cyan-glow) 0%, transparent 70%);
    filter: blur(90px);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 850px;
    margin: 0 auto;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #e0aaff;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ==========================================================================
   BRAND LOGOS SECTION
   ========================================================================== */
.brand-logos-section {
    padding: 30px 0 50px 0;
    position: relative;
    z-index: 5;
}

.brand-logos-wrapper {
    padding: 30px 40px;
    text-align: center;
    border-radius: 20px;
    background: rgba(13, 14, 18, 0.4);
    border: 1px solid var(--card-border);
}

.brand-logos-label {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.brand-logos-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px 40px;
    flex-wrap: wrap;
}

.brand-logo-item {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-secondary);
    filter: grayscale(100%) opacity(45%);
    transition: var(--transition-smooth);
    cursor: default;
    user-select: none;
}

.brand-logo-item:hover {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.08);
}

/* Specific Typographic brand identity on hover */
.brand-logo-item[data-brand="cred"] {
    font-family: var(--font-headings);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
.brand-logo-item[data-brand="cred"]:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.brand-logo-item[data-brand="zomato"] {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-transform: lowercase;
}
.brand-logo-item[data-brand="zomato"]:hover {
    color: #cb202d;
    text-shadow: 0 0 15px rgba(203, 32, 45, 0.4);
}

.brand-logo-item[data-brand="swiggy"] {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-style: italic;
}
.brand-logo-item[data-brand="swiggy"]:hover {
    color: #fc8019;
    text-shadow: 0 0 15px rgba(252, 128, 25, 0.4);
}

.brand-logo-item[data-brand="boat"] {
    font-family: var(--font-headings);
    font-weight: 800;
    letter-spacing: -0.03em;
}
.brand-logo-item[data-brand="boat"]:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.brand-logo-item[data-brand="zepto"] {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: lowercase;
}
.brand-logo-item[data-brand="zepto"]:hover {
    color: #ff3f6c;
    text-shadow: 0 0 15px rgba(255, 63, 108, 0.4);
}

.brand-logo-item[data-brand="groww"] {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.brand-logo-item[data-brand="groww"]:hover {
    color: #00d09c;
    text-shadow: 0 0 15px rgba(0, 208, 156, 0.4);
}

/* ==========================================================================
   TRUST STATS SECTION
   ========================================================================== */
.stats-section {
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px;
    gap: 30px;
}

.stat-counter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stat-icon-wrapper svg {
    stroke: #fff;
    width: 22px;
    height: 22px;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: var(--font-headings);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-suffix {
    font-size: 2rem;
    color: var(--accent-purple);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==========================================================================
   FOR BRANDS SECTION
   ========================================================================== */
.brands-section {
    padding: 100px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px;
    transition: var(--transition-smooth);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-quick);
}

.service-icon-wrapper svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-cyan);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 240, 255, 0.08);
}

.service-card:hover .service-icon-wrapper {
    background: var(--accent-cyan);
}

.service-card:hover .service-icon-wrapper svg {
    stroke: #000;
}

/* ==========================================================================
   FOR INFLUENCERS SECTION
   ========================================================================== */
.influencers-section {
    padding: 100px 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.section-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefits-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 22px;
    height: 22px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #fff;
    flex-shrink: 0;
    margin-top: 3px;
    box-shadow: 0 0 10px var(--accent-purple-glow);
}

.benefits-list li strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 2px;
}

.benefits-list li div {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.split-visual {
    display: flex;
    justify-content: center;
}

.creators-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.dashboard-mock {
    padding: 0;
    overflow: hidden;
    background: rgba(13, 14, 18, 0.85);
}

.mock-header {
    background: #020203;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--card-border);
}

.mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mock-dot.red { background: #ff5f56; }
.mock-dot.yellow { background: #ffbd2e; }
.mock-dot.green { background: #27c93f; }

.mock-title {
    font-size: 0.75rem;
    font-family: var(--font-headings);
    color: var(--text-secondary);
    margin-left: auto;
    font-weight: 500;
}

.mock-body {
    padding: 24px;
}

.mock-earnings {
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 20px;
}

.earnings-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.earnings-value {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-headings);
}

.up-trend {
    font-size: 0.85rem;
    color: #27c93f;
    background: rgba(39, 201, 63, 0.1);
    padding: 2px 8px;
    border-radius: 50px;
    vertical-align: middle;
    margin-left: 10px;
}

.deal-header {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.deal-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 10px;
}

.deal-brand {
    font-size: 0.85rem;
    font-weight: 500;
}

.deal-status {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 600;
}

.status-live { background: rgba(34, 211, 238, 0.15); color: #22d3ee; }
.status-review { background: rgba(249, 115, 22, 0.15); color: #f97316; }
.status-completed { background: rgba(168, 85, 247, 0.15); color: #a855f7; }

/* ==========================================================================
   MEME MARKETING SECTION
   ========================================================================== */
.meme-marketing-section {
    padding: 100px 0;
}

.meme-campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.meme-card {
    padding: 30px;
    transition: var(--transition-smooth);
}

.meme-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.meme-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-orange);
    font-family: var(--font-headings);
}

.meme-icon {
    font-size: 1.5rem;
}

.meme-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.meme-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.meme-card:hover {
    transform: scale(1.03);
    border-color: rgba(255, 107, 10, 0.25);
    box-shadow: 0 10px 30px rgba(255, 107, 10, 0.08);
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.03) 0%, transparent 60%);
}

.steps-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.step-card {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.step-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    font-family: var(--font-headings);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================================================
   INFLUENCER CATEGORIES SECTION
   ========================================================================== */
.categories-section {
    padding: 100px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    perspective: 1000px;
}

.category-inner {
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
    cursor: default;
}

.cat-icon {
    font-size: 1.8rem;
}

.cat-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.category-inner:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ==========================================================================
   CREATOR SHOWCASE SECTION
   ========================================================================== */
.creator-showcase-section {
    padding: 100px 0;
    position: relative;
}

.showcase-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.showcase-filters .filter-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-headings);
}

.showcase-filters .filter-btn:hover,
.showcase-filters .filter-btn.active {
    background: var(--text-primary);
    color: var(--bg-darker);
    border-color: var(--text-primary);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    min-height: 400px;
}

.creator-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.creator-card.filtered-out {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.creator-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 35px var(--accent-purple-glow);
}

.creator-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.creator-header .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-headings);
}

.creator-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.creator-handle {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.creator-niche {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.platform-badge {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.platform-badge.ig {
    background: rgba(225, 48, 108, 0.15);
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.25);
}

.platform-badge.yt {
    background: rgba(255, 0, 0, 0.15);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.25);
}

.creator-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 0;
    margin-bottom: 24px;
}

.creator-stat {
    display: flex;
    flex-direction: column;
}

.creator-stat .stat-num {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-headings);
    color: var(--text-primary);
}

.creator-stat .stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.creator-brands {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.brand-tag {
    padding: 4px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ==========================================================================
   FEATURED CAMPAIGN TYPES
   ========================================================================== */
.campaign-types-section {
    padding: 100px 0;
}

.campaign-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.campaign-type-card {
    padding: 28px;
    transition: var(--transition-smooth);
}

.type-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--card-border);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.campaign-type-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.campaign-type-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.campaign-type-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* ==========================================================================
   PRICING PLAN SECTION
   ========================================================================== */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.recommended {
    border-color: var(--accent-purple);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.15);
    background: rgba(157, 78, 221, 0.05);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.pricing-header .desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-body {
    margin-bottom: 40px;
}

.pricing-body ul li {
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-footer {
    margin-top: auto;
}

/* ==========================================================================
   LEAD GENERATION FORMS
   ========================================================================== */
.forms-section {
    padding: 100px 0;
    position: relative;
}

.form-container-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.form-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid var(--card-border);
    margin-bottom: 40px;
}

.form-tab-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-headings);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.form-tab-btn.active {
    background: var(--text-primary);
    color: var(--bg-darker);
}

.form-contents form {
    display: none;
}

.form-contents form.active-form {
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group label .required {
    color: var(--accent-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    font-family: var(--font-body);
    transition: var(--transition-quick);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.15);
}

.form-group select option {
    background: var(--card-bg-solid);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
}

/* Form validation errors */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(255, 107, 10, 0.15);
}

.error-message {
    font-size: 0.75rem;
    color: var(--accent-orange);
    display: none;
    margin-top: 4px;
}

.form-group.error .error-message {
    display: block;
}

/* Success Message Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 7, 9, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 10;
}

.form-success-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.success-box {
    text-align: center;
    padding: 50px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.form-success-overlay.show .success-box {
    transform: scale(1);
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #27c93f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(39, 201, 63, 0.4);
}

.success-box h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.success-box p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent-purple);
    font-family: var(--font-headings);
    line-height: 1;
    margin-bottom: -15px;
    opacity: 0.3;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.author-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
    padding: 100px 0;
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-quick);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-icon-plus {
    font-size: 1.4rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 30px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: rgba(255,255,255,0.12);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item.active .faq-icon-plus {
    transform: rotate(45deg);
    color: var(--accent-purple);
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.contact-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.contact-glows .cg-1 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-orange-glow) 0%, transparent 70%);
    filter: blur(60px);
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.detail-item .label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.detail-item .value {
    font-weight: 600;
    font-size: 1.1rem;
}

.detail-item a.value:hover {
    color: var(--accent-cyan);
}

.contact-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-direct-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 380px;
}

.cta-direct-box h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.cta-direct-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--card-border);
    padding: 80px 0 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-left {
    max-width: 320px;
}

.footer-left .logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-right {
    display: flex;
    gap: 80px;
}

.footer-links-group h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.footer-links-group ul li {
    margin-bottom: 12px;
}

.footer-links-group ul li a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links-group ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.made-in {
    color: var(--text-secondary);
}

/* ==========================================================================
   SCROLL REVEAL CLASS
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Up to 1024px (Tablets / Laptops) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    


    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .split-visual {
        order: -1;
    }

    .meme-campaigns-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-flow {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .campaign-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card.recommended {
        transform: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px;
    }
}

/* Up to 768px (Mobile & Tablet) */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }


    
    .mobile-nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-darker);
        border-top: 1px solid var(--card-border);
        transition: var(--transition-smooth);
        padding: 40px 24px;
        z-index: 99;
    }
    
    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .main-nav ul li a {
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
        gap: 20px;
    }

    .stat-number-wrapper {
        font-size: 2.5rem;
    }
    
    .stat-suffix {
        font-size: 1.5rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        gap: 40px;
        justify-content: space-between;
    }
}

/* Up to 480px (Narrow Mobile) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .meme-campaigns-grid {
        grid-template-columns: 1fr;
    }

    .steps-flow {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .campaign-types-grid {
        grid-template-columns: 1fr;
    }

    .form-container-card {
        padding: 20px;
    }

    .form-tabs {
        grid-template-columns: 1fr;
        border-radius: 12px;
        gap: 4px;
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
    }

    .bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}


