/* ===== CSS Variables ===== */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-subtle: linear-gradient(135deg, #eef2ff 0%, #faf5ff 50%, #fdf2f8 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 1px solid var(--gray-200);
}

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

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-200);
}

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

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
}

.btn-ghost:hover { color: var(--primary); }

.btn-white {
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-xl {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-block { width: 100%; }

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img { height: 50px; }

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

.nav-links a {
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

.nav-buttons { display: flex; gap: 12px; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 60px;
    background: var(--gradient-subtle);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Animated Swirl Background */
.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
}

.blob-1 {
    width: 800px;
    height: 800px;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(99, 102, 241, 0.4) 0deg,
        rgba(139, 92, 246, 0.3) 60deg,
        rgba(236, 72, 153, 0.3) 120deg,
        rgba(99, 102, 241, 0.2) 180deg,
        rgba(139, 92, 246, 0.4) 240deg,
        rgba(236, 72, 153, 0.2) 300deg,
        rgba(99, 102, 241, 0.4) 360deg
    );
    top: -30%;
    right: -20%;
    animation: swirl1 25s linear infinite;
}

.blob-2 {
    width: 700px;
    height: 700px;
    background: conic-gradient(
        from 180deg at 50% 50%,
        rgba(236, 72, 153, 0.3) 0deg,
        rgba(139, 92, 246, 0.4) 90deg,
        rgba(99, 102, 241, 0.3) 180deg,
        rgba(16, 185, 129, 0.2) 270deg,
        rgba(236, 72, 153, 0.3) 360deg
    );
    bottom: -20%;
    left: -15%;
    animation: swirl2 30s linear infinite reverse;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: conic-gradient(
        from 90deg at 50% 50%,
        rgba(139, 92, 246, 0.3) 0deg,
        rgba(99, 102, 241, 0.4) 120deg,
        rgba(236, 72, 153, 0.3) 240deg,
        rgba(139, 92, 246, 0.3) 360deg
    );
    top: 30%;
    left: 20%;
    animation: swirl3 20s linear infinite;
}

@keyframes swirl1 {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes swirl2 {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes swirl3 {
    0% { transform: rotate(0deg) scale(1) translate(0, 0); }
    33% { transform: rotate(120deg) scale(1.1) translate(20px, -20px); }
    66% { transform: rotate(240deg) scale(0.95) translate(-20px, 20px); }
    100% { transform: rotate(360deg) scale(1) translate(0, 0); }
}

/* SVG Swirl Lines */
.swirl-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.8;
}

.swirl-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawSwirl 8s ease-in-out infinite;
}

.swirl-1 { animation-delay: 0s; }
.swirl-2 { animation-delay: -2s; }
.swirl-3 { animation-delay: -4s; }

@keyframes drawSwirl {
    0% { stroke-dashoffset: 2000; opacity: 0; }
    20% { opacity: 1; }
    50% { stroke-dashoffset: 0; opacity: 1; }
    80% { opacity: 1; }
    100% { stroke-dashoffset: -2000; opacity: 0; }
}

/* Grid Pattern */
.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 32px;
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-badge:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.8) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: titleReveal 0.8s ease 0.2s both;
}

.hero-title .gradient-text {
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes titleReveal {
    0% { 
        opacity: 0; 
        transform: translateY(40px);
        filter: blur(10px);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-cta .btn {
    position: relative;
    overflow: hidden;
}

.hero-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.hero-cta .btn:hover {
    animation: btnPulse 0.4s ease;
}

@keyframes btnPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Trust Section */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    object-fit: cover;
    transition: transform 0.3s ease;
    animation: avatarPop 0.4s ease both;
}

.avatar:nth-child(1) { animation-delay: 0.7s; }
.avatar:nth-child(2) { animation-delay: 0.8s; }
.avatar:nth-child(3) { animation-delay: 0.9s; }
.avatar:nth-child(4) { animation-delay: 1s; }
.avatar:nth-child(5) { animation-delay: 1.1s; }

@keyframes avatarPop {
    0% { opacity: 0; transform: scale(0) translateX(-20px); }
    100% { opacity: 1; transform: scale(1) translateX(0); }
}

.avatar:hover {
    transform: scale(1.15) translateY(-4px);
    z-index: 10;
}

.avatar:first-child { margin-left: 0; }

.avatar-count {
    background: var(--gradient);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-info { text-align: left; }

.trust-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fbbf24;
    font-size: 14px;
}

.trust-stars i {
    animation: starPop 0.3s ease both;
}

.trust-stars i:nth-child(1) { animation-delay: 1.2s; }
.trust-stars i:nth-child(2) { animation-delay: 1.3s; }
.trust-stars i:nth-child(3) { animation-delay: 1.4s; }
.trust-stars i:nth-child(4) { animation-delay: 1.5s; }
.trust-stars i:nth-child(5) { animation-delay: 1.6s; }

@keyframes starPop {
    0% { opacity: 0; transform: scale(0) rotate(-180deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.trust-stars span {
    color: var(--dark);
    font-weight: 700;
    margin-left: 4px;
}

.trust-label {
    font-size: 13px;
    color: var(--gray-500);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
    animation: heroVisualFloat 6s ease-in-out infinite;
    animation-delay: 1s;
}

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

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: mockupReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dashboard-mockup:hover {
    transform: scale(1.02);
    box-shadow: 0 50px 100px -25px rgba(0, 0, 0, 0.2);
}

@keyframes mockupReveal {
    0% { 
        opacity: 0; 
        transform: translateY(60px) scale(0.95);
        filter: blur(10px);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.bar-dots {
    display: flex;
    gap: 6px;
}

.bar-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.bar-dots span:nth-child(1) { background: #ff5f57; }
.bar-dots span:nth-child(2) { background: #febc2e; }
.bar-dots span:nth-child(3) { background: #28c840; }

.bar-title {
    font-size: 13px;
    color: var(--gray-500);
}

.mockup-body {
    display: flex;
    min-height: 320px;
}

.mockup-sidebar {
    width: 60px;
    background: var(--gray-50);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-right: 1px solid var(--gray-100);
}

.sidebar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--gray-400);
    font-size: 16px;
    transition: all 0.2s;
}

.sidebar-icon.active {
    background: var(--gradient);
    color: var(--white);
}

.mockup-main {
    flex: 1;
    padding: 24px;
}

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

.content-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    overflow: hidden;
    animation: cardPulse 3s ease-in-out infinite;
}

.content-card:nth-child(2) { animation-delay: 0.5s; }
.content-card:nth-child(3) { animation-delay: 1s; }
.content-card:nth-child(4) { animation-delay: 1.5s; }

@keyframes cardPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.card-image {
    height: 100px;
    position: relative;
    overflow: hidden;
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.grad-1 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.grad-2 { background: linear-gradient(135deg, #ec4899, #f472b6); }
.grad-3 { background: linear-gradient(135deg, #10b981, #34d399); }
.grad-4 { background: linear-gradient(135deg, #f59e0b, #fbbf24); }

.card-text {
    padding: 12px;
}

.card-text::before,
.card-text::after {
    content: '';
    display: block;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
}

.card-text::after {
    width: 60%;
    margin-top: 8px;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-card:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.float-ai {
    animation: floatCardIn 0.6s ease 1s both, floatAI 5s ease-in-out 1.6s infinite;
}

.float-stats {
    animation: floatCardIn 0.6s ease 1.2s both, floatStats 6s ease-in-out 1.8s infinite;
}

.float-platforms {
    animation: floatCardIn 0.6s ease 1.4s both, floatPlatforms 7s ease-in-out 2s infinite;
}

@keyframes floatCardIn {
    0% { 
        opacity: 0; 
        transform: scale(0.5) translateY(30px);
    }
    100% { 
        opacity: 1; 
        transform: scale(1) translateY(0);
    }
}

@keyframes floatAI {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(1deg); }
    75% { transform: translateY(8px) rotate(-1deg); }
}

@keyframes floatStats {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(-1deg); }
    66% { transform: translateY(10px) rotate(1deg); }
}

@keyframes floatPlatforms {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(2deg); }
}

.float-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: var(--gradient);
    color: var(--white);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
}

.float-icon.green {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.float-text strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
}

.float-text span {
    font-size: 12px;
    color: var(--gray-500);
}

.float-ai {
    top: 20%;
    left: -5%;
    animation-delay: 0s;
}

.float-loader {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.float-stats {
    top: 60%;
    left: -8%;
    animation-delay: -2s;
}

.float-platforms {
    top: 30%;
    right: -5%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    animation-delay: -4s;
}

.platform-label {
    font-size: 12px;
    color: var(--gray-500);
}

.platform-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.platform-icons i {
    font-size: 20px;
    color: var(--gray-600);
}

.platform-icons .more {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

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

/* ===== Logos Section ===== */
.logos-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.logos-title {
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.logos-track {
    overflow: hidden;
}

.logos-slide {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    transition: all 0.3s;
}

.platform-item i,
.platform-item svg { font-size: 28px; }
.platform-item span { font-size: 12px; }

.x-icon, .threads-icon {
    width: 28px;
    height: 28px;
}

.platform-item:hover {
    color: var(--primary);
    transform: translateY(-4px);
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-subtle);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-top: 16px;
}

/* ===== Features Section ===== */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

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

.feature-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-icon.purple { background: linear-gradient(135deg, #eef2ff, #e0e7ff); color: #6366f1; }
.feature-icon.blue { background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #3b82f6; }
.feature-icon.pink { background: linear-gradient(135deg, #fdf2f8, #fce7f3); color: #ec4899; }
.feature-icon.orange { background: linear-gradient(135deg, #fff7ed, #ffedd5); color: #f97316; }
.feature-icon.green { background: linear-gradient(135deg, #ecfdf5, #d1fae5); color: #10b981; }
.feature-icon.cyan { background: linear-gradient(135deg, #ecfeff, #cffafe); color: #06b6d4; }

.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--gray-600); font-size: 15px; line-height: 1.6; }

/* ===== How It Works ===== */
.how-section {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
}

.steps-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-item {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step-visual {
    margin-bottom: 24px;
}

.step-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prompt-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--gray-600);
}

.prompt-box i { color: var(--primary); }

.step-mockup.generating .gen-preview {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.step-mockup.generating .gen-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.5s infinite;
}

.gen-loader {
    display: flex;
    gap: 4px;
    margin-left: 16px;
}

.gen-loader span {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite;
}

.gen-loader span:nth-child(2) { animation-delay: 0.2s; }
.gen-loader span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.step-mockup.publish {
    flex-direction: column;
    gap: 12px;
}

.publish-icons {
    display: flex;
    gap: 12px;
    font-size: 24px;
    color: var(--gray-400);
}

.publish-check {
    width: 32px;
    height: 32px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.step-connector {
    width: 80px;
    margin-top: 80px;
    opacity: 0.5;
}

.step-item h3 { margin-bottom: 8px; }
.step-item p { font-size: 14px; color: var(--gray-600); }

/* ===== Stats Banner ===== */
.stats-banner {
    padding: 60px 0;
    background: var(--dark);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.stat-item { text-align: center; }

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--gray-700);
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 100px 0;
    background: var(--white);
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
}

.price .period {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-header p {
    font-size: 14px;
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-600);
}

.pricing-features li i {
    color: var(--success);
    font-size: 14px;
}

.pricing-features li strong {
    color: var(--dark);
}

/* ===== Testimonials ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-50);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 16px;
}

.testimonial-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-100);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.2s;
}

.faq-question:hover { color: var(--primary); }

.faq-question i {
    font-size: 14px;
    color: var(--gray-400);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 32px;
}

.cta-buttons { margin-bottom: 16px; }

.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 44px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 14px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--gray-400);
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--dark-light);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .step-connector {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .stats-grid { gap: 40px; }
    
    .float-card { display: none; }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-buttons { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero { padding: 100px 0 40px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; }
    
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .stats-grid {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-divider { display: none; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    
    .hero-title { font-size: 2rem; }
    
    .btn-xl {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Ad Showcase Section ===== */
.showcase-section {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.showcase-wrapper {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.showcase-track {
    overflow: hidden;
    position: relative;
}

.showcase-slide {
    display: flex;
    gap: 24px;
    width: max-content;
}

/* Infinite scroll animations */
.track-left .showcase-slide {
    animation: scrollLeft 40s linear infinite;
}

.track-right .showcase-slide {
    animation: scrollRight 40s linear infinite;
}

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

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

/* Pause on hover */
.showcase-track:hover .showcase-slide {
    animation-play-state: paused;
}

/* Ad Cards */
.ad-showcase-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.ad-showcase-card.wide {
    width: 400px;
    height: 260px;
}

.ad-showcase-card.tall {
    width: 240px;
    height: 360px;
}

.ad-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ad-showcase-card:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.ad-showcase-card:hover img {
    transform: scale(1.1);
}

/* Overlay */
.ad-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ad-showcase-card:hover .ad-overlay {
    opacity: 1;
}

.ad-tag {
    background: var(--white);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ad-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gradient);
    border-radius: 50%;
}

/* Fade overlays on sides */
.showcase-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    pointer-events: none;
    z-index: 5;
}

.showcase-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--gray-50) 0%, transparent 100%);
}

.showcase-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--gray-50) 0%, transparent 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .showcase-section {
        padding: 60px 0;
    }
    
    .ad-showcase-card {
        width: 200px;
        height: 200px;
    }
    
    .ad-showcase-card.wide {
        width: 280px;
        height: 180px;
    }
    
    .ad-showcase-card.tall {
        width: 160px;
        height: 240px;
    }
    
    .showcase-slide {
        gap: 16px;
    }
    
    .showcase-fade {
        width: 60px;
    }
}

/* ===== Sub-Page Styles ===== */

/* Page Header */
.page-header {
    position: relative;
    padding: 140px 0 80px;
    background: var(--gradient-subtle);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-header-bg .gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.page-header-bg .blob-1 {
    width: 600px;
    height: 600px;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(99, 102, 241, 0.4) 0deg,
        rgba(139, 92, 246, 0.3) 60deg,
        rgba(236, 72, 153, 0.3) 120deg,
        rgba(99, 102, 241, 0.2) 180deg,
        rgba(139, 92, 246, 0.4) 240deg,
        rgba(236, 72, 153, 0.2) 300deg,
        rgba(99, 102, 241, 0.4) 360deg
    );
    top: -40%;
    right: -15%;
    animation: swirl1 25s linear infinite;
}

.page-header-bg .blob-2 {
    width: 500px;
    height: 500px;
    background: conic-gradient(
        from 180deg at 50% 50%,
        rgba(236, 72, 153, 0.3) 0deg,
        rgba(139, 92, 246, 0.4) 90deg,
        rgba(99, 102, 241, 0.3) 180deg,
        rgba(16, 185, 129, 0.2) 270deg,
        rgba(236, 72, 153, 0.3) 360deg
    );
    bottom: -30%;
    left: -10%;
    animation: swirl2 30s linear infinite reverse;
}

.page-header-bg .blob-3 {
    width: 350px;
    height: 350px;
    background: conic-gradient(
        from 90deg at 50% 50%,
        rgba(139, 92, 246, 0.3) 0deg,
        rgba(99, 102, 241, 0.4) 120deg,
        rgba(236, 72, 153, 0.3) 240deg,
        rgba(139, 92, 246, 0.3) 360deg
    );
    top: 20%;
    left: 30%;
    animation: swirl3 20s linear infinite;
}

.page-header-bg .swirl-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.8;
}

.page-header-bg .grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary);
    transition: opacity 0.2s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb i {
    font-size: 10px;
    color: var(--gray-400);
}

.breadcrumb span {
    color: var(--gray-500);
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease both;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    animation: fadeInUp 0.6s ease 0.1s both;
}

/* Page Content */
.page-content {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--dark);
}

.content-wrapper h3 {
    font-size: 1.5rem;
    margin: 40px 0 16px;
    color: var(--dark);
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 24px 0;
    padding-left: 24px;
}

.content-wrapper li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.content-block {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 40px 0;
}

.content-block h3 {
    margin-top: 0;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
}

/* Card Grid for Sub-pages */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.info-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.info-card p {
    font-size: 1rem;
    margin-bottom: 0;
}
