/* ====================================
   CSS Variables - Modern Palette
   ==================================== */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --accent-light: #f472b6;

    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-400);
    --bg-primary: #ffffff;
    --bg-secondary: var(--gray-50);
    --border-color: var(--gray-200);

    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.06);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.06);
    --shadow-glow: 0 0 30px rgba(99,102,241,0.3);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --rounded-sm: 6px;
    --rounded: 10px;
    --rounded-lg: 16px;
    --rounded-xl: 24px;
    --rounded-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================================
   Reset & Base
   ==================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font); line-height: 1.6; color: var(--text-primary); background: var(--bg-primary); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-light {
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section tag */
.section-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--rounded-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border: 1px solid var(--primary-100);
}

/* ====================================
   Header & Navigation
   ==================================== */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226,232,240,0.5);
    z-index: 1000;
    transition: var(--transition);
}
.header.scrolled { background: rgba(255,255,255,0.95); box-shadow: var(--shadow-md); }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 0.875rem 2rem; }
.nav-brand { display: flex; align-items: center; gap: 0.625rem; font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.nav-brand-icon {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white; border-radius: var(--rounded-sm); font-size: 0.95rem;
}
.nav-menu { display: flex; align-items: center; gap: 2.5rem; }
.nav-list { display: flex; gap: 1.75rem; }
.nav-link { color: var(--text-secondary); font-weight: 500; font-size: 0.925rem; transition: var(--transition-fast); position: relative; }
.nav-link:hover { color: var(--primary); }
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px; transition: var(--transition); transform: translateX(-50%);
}
.nav-link:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 0.75rem; align-items: center; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--gray-700); border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ====================================
   Buttons
   ==================================== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem;
    border-radius: var(--rounded); font-weight: 600; font-size: 0.925rem;
    cursor: pointer; transition: var(--transition); border: 2px solid transparent;
    text-align: center; white-space: nowrap; font-family: var(--font);
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white; border-color: transparent;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg), var(--shadow-glow); }
.btn-glow { box-shadow: 0 0 20px rgba(99, 102, 241, 0.25); }
.btn-glow:hover { box-shadow: 0 0 40px rgba(99, 102, 241, 0.4); }
.btn-outline {
    background: transparent; color: var(--primary); border: 2px solid var(--primary-light);
}
.btn-outline:hover { background: var(--primary-50); border-color: var(--primary); }
.btn-outline-light { background: rgba(255,255,255,0.1); color: white; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: rgba(255,255,255,0.2); border-color: white; }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-white { background: white; color: var(--primary); border-color: white; }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn-ghost { background: transparent; color: var(--text-secondary); border-color: transparent; }
.btn-ghost:hover { color: var(--primary); background: var(--primary-50); }
.btn-ghost-light { background: transparent; color: rgba(255,255,255,0.8); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.4); }
.btn-success { background: #25d366; color: white; border-color: #25d366; }
.btn-success:hover { background: #1fb855; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: var(--rounded-lg); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; border-radius: var(--rounded-sm); }
.btn-block { width: 100%; justify-content: center; }

/* ====================================
   Hero Section
   ==================================== */
.hero {
    padding: 7rem 0 0;
    background: var(--gray-900);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-bg { position: absolute; inset: 0; }
.hero-blob {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4;
    animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -100px; }
.hero-blob-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -100px; animation-delay: -3s; }
.hero-blob-3 { width: 300px; height: 300px; background: var(--accent); top: 50%; left: 50%; animation-delay: -5s; }
.hero-grid-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 32px 32px;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-content { padding: 2rem 0; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--rounded-full); font-size: 0.8rem; font-weight: 600;
    margin-bottom: 1.5rem; color: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
}
.hero-tag i { color: var(--warning); }
.hero-title {
    font-size: 3.25rem; font-weight: 900; line-height: 1.15; margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s 0.1s ease-out backwards;
}
.hero-subtitle {
    font-size: 1.125rem; color: rgba(255,255,255,0.75); line-height: 1.75;
    margin-bottom: 2rem; max-width: 540px;
    animation: fadeInUp 0.6s 0.2s ease-out backwards;
}
.hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s 0.3s ease-out backwards;
}
.hero-trust {
    display: flex; align-items: center; gap: 0.75rem;
    animation: fadeInUp 0.6s 0.4s ease-out backwards;
}
.hero-trust-avatars { display: flex; }
.trust-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; color: white;
    border: 2px solid var(--gray-900);
    margin-left: -8px;
}
.trust-avatar:first-child { margin-left: 0; }
.hero-trust p { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.hero-trust strong { color: white; }

/* Hero Visual */
.hero-visual { position: relative; animation: fadeInUp 0.8s 0.3s ease-out backwards; }
.hero-card-stack { position: relative; min-height: 420px; }

.hero-dashboard-mock {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--rounded-lg); overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.mock-header {
    display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mock-url { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-left: auto; font-family: monospace; }
.mock-body { display: flex; min-height: 260px; }
.mock-sidebar {
    width: 60px; padding: 1rem 0.75rem;
    background: rgba(255,255,255,0.03); border-right: 1px solid rgba(255,255,255,0.06);
    display: flex; flex-direction: column; gap: 0.75rem;
}
.mock-nav-item { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.mock-nav-item.active { background: var(--primary); opacity: 0.6; }
.mock-content { flex: 1; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mock-stat-row { display: flex; gap: 0.5rem; }
.mock-stat-box { flex: 1; height: 50px; border-radius: var(--rounded-sm); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); }
.mock-chart {
    flex: 1; border-radius: var(--rounded-sm); background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06); min-height: 80px;
    background-image: linear-gradient(
        to right,
        transparent 0%, rgba(99,102,241,0.15) 20%, rgba(139,92,246,0.2) 40%,
        rgba(99,102,241,0.15) 60%, rgba(236,72,153,0.1) 80%, transparent 100%
    );
}
.mock-table { display: flex; flex-direction: column; gap: 0.375rem; }
.mock-table-row { height: 12px; border-radius: 4px; background: rgba(255,255,255,0.04); }
.mock-table-row:nth-child(1) { width: 90%; }
.mock-table-row:nth-child(2) { width: 75%; }
.mock-table-row:nth-child(3) { width: 60%; }

.hero-float-card {
    position: absolute; display: flex; align-items: center; gap: 0.75rem;
    padding: 0.875rem 1.25rem; background: rgba(255,255,255,0.95);
    color: var(--gray-800); border-radius: var(--rounded-lg);
    box-shadow: var(--shadow-xl); z-index: 2;
    backdrop-filter: blur(10px);
    animation: floatCard 6s ease-in-out infinite;
}
.hero-float-card-1 { top: 10%; right: -20px; animation-delay: 0s; }
.hero-float-card-2 { top: 45%; left: -30px; animation-delay: -2s; }
.hero-float-card-3 { bottom: 15%; right: 10px; animation-delay: -4s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.float-card-icon {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--rounded); font-size: 1rem;
}
.float-card-label { display: block; font-size: 0.7rem; color: var(--gray-500); font-weight: 500; }
.float-card-value { display: block; font-size: 0.95rem; font-weight: 700; }

/* Marketplace Bar */
.marketplace-bar {
    position: relative; z-index: 1;
    padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 3rem;
}
.marketplace-bar-label { text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.marketplace-logos { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.marketplace-logo-item {
    display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem;
    color: rgba(255,255,255,0.5); font-weight: 500; transition: var(--transition-fast);
}
.marketplace-logo-item:hover { color: rgba(255,255,255,0.8); }
.marketplace-logo-item i { font-size: 1.1rem; }

/* ====================================
   Stats Bar
   ==================================== */
.stats-bar { padding: 3rem 0; background: var(--bg-primary); border-bottom: 1px solid var(--border-color); }
.stats-grid { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.stat-item { display: flex; align-items: center; gap: 1rem; }
.stat-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: var(--primary-50); color: var(--primary); border-radius: var(--rounded);
    font-size: 1.15rem;
}
.stat-info { display: flex; flex-direction: column; }
.stat-number { font-size: 1.5rem; font-weight: 800; color: var(--text-primary); line-height: 1.2; }
.stat-label { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border-color); }

/* ====================================
   Section Header
   ==================================== */
.section-header { text-align: center; margin-bottom: 3.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.75rem; color: var(--text-primary); line-height: 1.2; letter-spacing: -0.02em; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7; }

/* ====================================
   Features Section
   ==================================== */
.features { padding: 5rem 0; background: var(--bg-secondary); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.feature-card {
    background: white; padding: 2rem; border-radius: var(--rounded-lg);
    border: 1px solid var(--border-color); transition: var(--transition);
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0; transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-100); }
.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap { margin-bottom: 1.25rem; }
.feature-icon {
    width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    color: var(--primary); border-radius: var(--rounded); font-size: 1.25rem;
}
.feature-icon-green { background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%); color: #059669; }
.feature-icon-orange { background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%); color: #d97706; }
.feature-icon-pink { background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%); color: #db2777; }
.feature-icon-cyan { background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%); color: #0891b2; }
.feature-icon-indigo { background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%); color: #4f46e5; }

.feature-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.625rem; color: var(--text-primary); }
.feature-description { color: var(--text-secondary); margin-bottom: 1.25rem; line-height: 1.65; font-size: 0.925rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.5rem; }
.feature-list li { display: flex; align-items: center; gap: 0.5rem; color: var(--text-secondary); font-size: 0.85rem; }
.feature-list i { color: var(--success); font-size: 0.75rem; }

/* ====================================
   How It Works
   ==================================== */
.how-it-works { padding: 5rem 0; background: var(--bg-primary); }
.steps { display: flex; justify-content: center; gap: 2rem; position: relative; max-width: 900px; margin: 0 auto; }
.step { flex: 1; text-align: center; position: relative; }
.step-connector {
    position: absolute; top: 32px; left: 60%; right: -40%; height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary));
    opacity: 0.3; z-index: 0;
}
.step:last-child .step-connector { display: none; }
.step-number {
    width: 64px; height: 64px; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white; font-size: 1.25rem; font-weight: 800; border-radius: 50%;
    box-shadow: 0 0 0 6px var(--primary-50), var(--shadow-md); position: relative; z-index: 1;
}
.step-icon { margin-bottom: 0.75rem; font-size: 1.5rem; color: var(--primary); }
.step-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-primary); }
.step-description { color: var(--text-secondary); line-height: 1.65; font-size: 0.925rem; }
.steps-cta { text-align: center; margin-top: 3rem; }

/* ====================================
   Comparison
   ==================================== */
.comparison { padding: 5rem 0; background: var(--bg-secondary); }
.comparison-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; max-width: 850px; margin: 0 auto; align-items: stretch; }
.comparison-col { background: white; border-radius: var(--rounded-lg); overflow: hidden; border: 1px solid var(--border-color); transition: var(--transition); }
.comparison-col:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.comparison-header-bar { display: flex; align-items: center; gap: 0.75rem; padding: 1.25rem 1.5rem; font-weight: 700; }
.comparison-header-bar h3 { font-size: 1.1rem; margin: 0; }
.comparison-header-bar i { font-size: 1.25rem; }
.comparison-header-red { background: #fef2f2; color: #dc2626; border-bottom: 2px solid #fecaca; }
.comparison-header-green { background: #f0fdf4; color: #16a34a; border-bottom: 2px solid #bbf7d0; }
.comparison-vs {
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; background: var(--gray-100); color: var(--gray-500);
    border-radius: 50%; font-weight: 800; font-size: 0.85rem;
    align-self: center; flex-shrink: 0; border: 2px solid var(--border-color);
}
.comparison-list { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.875rem; }
.comparison-list li { display: flex; align-items: flex-start; gap: 0.625rem; color: var(--text-secondary); line-height: 1.6; font-size: 0.925rem; }
.comparison-without .comparison-list i { color: #ef4444; margin-top: 3px; font-size: 0.8rem; }
.comparison-with .comparison-list i { color: #22c55e; margin-top: 3px; font-size: 0.8rem; }

/* ====================================
   Pricing
   ==================================== */
.pricing { padding: 5rem 0; background: var(--bg-primary); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }

.pricing-card {
    background: white; border-radius: var(--rounded-lg); overflow: hidden;
    border: 1px solid var(--border-color); transition: var(--transition);
    display: flex; flex-direction: column; position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pricing-card-featured {
    border: 2px solid var(--primary); box-shadow: var(--shadow-glow);
    transform: scale(1.03);
}
.pricing-card-featured:hover { transform: scale(1.03) translateY(-6px); }
.pricing-badge {
    position: absolute; top: 0; right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white; padding: 0.4rem 1.25rem; border-radius: 0 0 0 var(--rounded);
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.pricing-header { padding: 2rem 2rem 1.5rem; text-align: center; border-bottom: 1px solid var(--border-color); }
.pricing-plan-icon {
    width: 48px; height: 48px; margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-50); color: var(--primary);
    border-radius: var(--rounded); font-size: 1.25rem;
}
.pricing-card-featured .pricing-plan-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white;
}
.pricing-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text-primary); }
.pricing-price { display: flex; align-items: baseline; justify-content: center; gap: 0.15rem; margin-bottom: 0.5rem; }
.price-currency { font-size: 1.1rem; font-weight: 600; color: var(--text-secondary); }
.price-amount { font-size: 3rem; font-weight: 900; color: var(--text-primary); line-height: 1; }
.price-cents { font-size: 1.5rem; }
.price-period { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.pricing-description { color: var(--text-secondary); font-size: 0.875rem; }
.pricing-trial { display: inline-flex; align-items: center; gap: 0.375rem; margin-top: 0.75rem; padding: 0.35rem 0.875rem; background: linear-gradient(135deg, rgba(72,187,120,0.1), rgba(56,178,172,0.1)); color: #38a169; font-size: 0.8rem; font-weight: 600; border-radius: 2rem; border: 1px solid rgba(72,187,120,0.2); }
.pricing-trial i { font-size: 0.75rem; }
.pricing-features { padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.pricing-features li { display: flex; align-items: center; gap: 0.625rem; color: var(--text-secondary); font-size: 0.9rem; }
.pricing-features i { color: var(--success); font-size: 0.8rem; }
.pricing-card > .btn { margin: 0 2rem 2rem; }

/* ====================================
   Suppliers
   ==================================== */
.suppliers { padding: 5rem 0; background: var(--bg-secondary); }
.suppliers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 700px; margin: 0 auto; }
.supplier-card {
    background: white; border-radius: var(--rounded-lg); padding: 2rem; text-align: center;
    border: 1px solid var(--border-color); transition: var(--transition);
}
.supplier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-100); }
.supplier-icon-wrap {
    width: 72px; height: 72px; margin: 0 auto 1.25rem;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white; border-radius: 50%; font-size: 1.75rem;
    box-shadow: var(--shadow-md);
}
.supplier-logo-wrap {
    width: 88px; height: 88px; margin: 0 auto 1.25rem;
    display: flex; align-items: center; justify-content: center;
    background: white; border-radius: var(--rounded-lg); overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.supplier-logo-wrap img {
    max-width: 80px; max-height: 80px; object-fit: contain;
}
.supplier-name { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.375rem; }
.supplier-category { color: var(--text-secondary); font-size: 0.85rem; }
.supplier-card-soon {
    border: 2px dashed var(--border-color); background: var(--bg-secondary); opacity: 0.8;
}
.supplier-card-soon .supplier-icon-wrap {
    background: linear-gradient(135deg, var(--primary-50), rgba(139,92,246,0.1));
    color: var(--primary); font-size: 1.5rem;
}
.suppliers-cta { text-align: center; margin-top: 2.5rem; }
.suppliers-note { font-size: 1rem; color: var(--text-secondary); margin-bottom: 1rem; }
.suppliers-note i { color: var(--primary); margin-right: 0.375rem; }

/* ====================================
   Partners
   ==================================== */
.partners { padding: 5rem 0; background: var(--bg-primary); }

/* Integration Highlight - Mercado Livre Direct */
.integration-highlight {
    background: linear-gradient(135deg, #fff159 0%, #ffe600 100%);
    border-radius: var(--rounded-lg); padding: 2rem 2.5rem; margin-bottom: 3rem;
    position: relative; overflow: hidden;
    border: 2px solid #ffe600;
    box-shadow: 0 4px 24px rgba(255, 230, 0, 0.2);
}
.integration-highlight-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(0,0,0,0.85); color: #fff159; padding: 0.375rem 1rem;
    border-radius: var(--rounded-full); font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; margin-bottom: 1.25rem;
}
.integration-highlight-content {
    display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.integration-highlight-logo {
    width: 100px; height: 100px; background: white; border-radius: var(--rounded-lg);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); flex-shrink: 0;
}
.integration-highlight-logo img { max-width: 80px; max-height: 80px; object-fit: contain; }
.integration-highlight-info { flex: 1; min-width: 240px; }
.integration-highlight-info h3 { font-size: 1.5rem; font-weight: 800; color: #333; margin-bottom: 0.5rem; }
.integration-highlight-info p { color: #555; font-size: 0.95rem; line-height: 1.6; margin-bottom: 0.75rem; }
.integration-highlight-features {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
}
.integration-highlight-features span {
    display: inline-flex; align-items: center; gap: 0.375rem;
    font-size: 0.85rem; font-weight: 600; color: #333;
    background: rgba(255,255,255,0.7); padding: 0.3rem 0.75rem;
    border-radius: var(--rounded-full);
}
.integration-highlight-features span i { color: #059669; }

/* Integration Sections */
.integration-section { margin-bottom: 2.5rem; }
.integration-section-title {
    font-size: 1.15rem; font-weight: 700; color: var(--text-primary);
    margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.integration-section-title i { color: var(--primary); }
.integration-section-subtitle {
    text-align: center; color: var(--text-secondary); font-size: 0.95rem;
    margin-bottom: 1.5rem; margin-top: -0.5rem;
}
.badge-inline {
    display: inline-block; padding: 0.15rem 0.5rem;
    border-radius: var(--rounded-full); font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; vertical-align: middle;
}
.badge-coming { background: #f59e0b; color: white; }
.badge-marketplace { background: #3b82f6; }
.partners-grid-centered { justify-content: center; max-width: 500px; margin: 0 auto; }

/* Partner Logo Image */
.partner-logo-img {
    width: 64px; height: 64px; background: white; border-radius: var(--rounded);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm); overflow: hidden; padding: 6px;
}
.partner-logo-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.partner-card-soon { opacity: 0.75; border: 1.5px dashed var(--border-color); }

.partners-filter { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.filter-btn {
    padding: 0.625rem 1.25rem; background: transparent; border: 1.5px solid var(--border-color);
    border-radius: var(--rounded-full); color: var(--text-secondary); font-size: 0.875rem;
    font-weight: 600; cursor: pointer; transition: var(--transition); font-family: var(--font);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white; border-color: transparent;
}
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.partner-card {
    background: var(--bg-secondary); border-radius: var(--rounded-lg); padding: 1.5rem;
    text-align: center; transition: var(--transition); border: 1.5px solid transparent;
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.partner-card:hover { background: white; border-color: var(--primary-100); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.partner-logo {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    background: white; border-radius: var(--rounded); box-shadow: var(--shadow-sm); font-size: 1.5rem; color: var(--primary);
}
.partner-logo-coming { background: var(--primary-50); animation: pulse 2s infinite; }
.partner-name { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); }
.partner-badge {
    display: inline-block; padding: 0.2rem 0.625rem; background: var(--primary); color: white;
    border-radius: var(--rounded-full); font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
}
.partner-badge.badge-hub { background: #059669; }
.partner-coming-soon {
    grid-column: 1 / -1; padding: 2.5rem; text-align: center;
    background: linear-gradient(135deg, var(--primary-50), rgba(139,92,246,0.05));
    border: 2px dashed var(--primary-light);
}
.partner-coming-text { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }
.partner-coming-note { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.5rem; }
.partners-cta { text-align: center; margin-top: 2.5rem; }
.partners-note { font-size: 0.925rem; color: var(--text-secondary); }
.partners-note i { color: var(--primary); margin-right: 0.375rem; }

/* ====================================
   Testimonials
   ==================================== */
.testimonials { padding: 5rem 0; background: var(--bg-secondary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
    background: white; padding: 2rem; border-radius: var(--rounded-lg);
    border: 1px solid var(--border-color); transition: var(--transition); position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-quote {
    position: absolute; top: 1.25rem; right: 1.5rem;
    font-size: 1.5rem; color: var(--primary-100);
}
.testimonial-stars { color: #fbbf24; font-size: 0.8rem; margin-bottom: 1rem; display: flex; gap: 2px; }
.testimonial-text { color: var(--text-secondary); font-style: italic; line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.925rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
    width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700; color: white; flex-shrink: 0;
}
.testimonial-info { display: flex; flex-direction: column; }
.testimonial-info strong { font-size: 0.9rem; color: var(--text-primary); }
.testimonial-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ====================================
   FAQ
   ==================================== */
.faq { padding: 5rem 0; background: var(--bg-primary); }
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
    background: white; border-radius: var(--rounded-lg); margin-bottom: 0.75rem;
    border: 1px solid var(--border-color); overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary-100); }
.faq-item.active { border-color: var(--primary-light); box-shadow: 0 0 0 3px var(--primary-50); }
.faq-question {
    padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; user-select: none; gap: 1rem;
}
.faq-question h4 { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin: 0; line-height: 1.5; }
.faq-toggle {
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    background: var(--gray-100); border-radius: 50%; flex-shrink: 0;
    color: var(--text-secondary); font-size: 0.8rem; transition: var(--transition);
}
.faq-item.active .faq-toggle { background: var(--primary); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 1.5rem 1.25rem; color: var(--text-secondary); line-height: 1.7; font-size: 0.925rem; }

/* ====================================
   CTA Section
   ==================================== */
.cta {
    padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1e1b4b 50%, var(--gray-900) 100%);
    color: white;
}
.cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99,102,241,0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139,92,246,0.15) 0%, transparent 50%);
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: 2.75rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.cta-subtitle { font-size: 1.15rem; margin-bottom: 2.5rem; opacity: 0.8; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ====================================
   Contact
   ==================================== */
.contact { padding: 5rem 0; background: var(--bg-secondary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white; border-radius: var(--rounded); font-size: 1.1rem; flex-shrink: 0;
}
.contact-details h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--text-primary); }
.contact-details p { color: var(--text-secondary); font-size: 0.925rem; }
.contact-whatsapp { margin-top: 0.5rem; }
.contact-form-wrap {
    background: white; padding: 2rem; border-radius: var(--rounded-lg);
    border: 1px solid var(--border-color); box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.375rem; }
.form-control {
    width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--border-color);
    border-radius: var(--rounded); font-size: 0.925rem; font-family: var(--font);
    transition: var(--transition); background: var(--gray-50); color: var(--text-primary);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-50); background: white; }
textarea.form-control { resize: vertical; }

/* ====================================
   Footer
   ==================================== */
.footer { background: var(--gray-900); color: white; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-col-brand { }
.footer-brand { display: flex; align-items: center; gap: 0.625rem; font-size: 1.25rem; font-weight: 800; margin-bottom: 1rem; }
.footer-brand-icon {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white; border-radius: var(--rounded-sm); font-size: 0.95rem;
}
.footer-description { color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; line-height: 1.7; font-size: 0.875rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08); border-radius: var(--rounded-sm);
    transition: var(--transition); font-size: 0.9rem; color: rgba(255,255,255,0.6);
}
.social-link:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.footer-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; color: rgba(255,255,255,0.9); }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { color: rgba(255,255,255,0.5); transition: var(--transition-fast); font-size: 0.875rem; }
.footer-links a:hover { color: white; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ====================================
   Floating WhatsApp
   ==================================== */
.whatsapp-float {
    position: fixed; bottom: 24px; left: 24px; z-index: 999;
    display: flex; align-items: center; gap: 0.5rem;
    background: #25d366; color: white; padding: 0.875rem 1.25rem;
    border-radius: var(--rounded-full); font-size: 0.9rem; font-weight: 600;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: var(--transition);
}
.whatsapp-float i { font-size: 1.25rem; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37,211,102,0.5); }
.whatsapp-float-label { display: inline; }

/* ====================================
   Scroll to Top
   ==================================== */
.scroll-top {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    background: var(--gray-800); color: white; border: none; border-radius: 50%;
    font-size: 1rem; cursor: pointer; box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ====================================
   Cookie Banner
   ==================================== */
.cookie-banner {
    position: fixed; bottom: -100%; left: 0; right: 0; z-index: 10000;
    background: rgba(15,23,42,0.97); backdrop-filter: blur(20px);
    padding: 1.25rem 2rem; box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden; opacity: 0;
}
.cookie-banner.show { bottom: 0; visibility: visible; opacity: 1; }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; }
.cookie-icon { font-size: 2.25rem; color: #fbbf24; flex-shrink: 0; }
.cookie-text { flex: 1; }
.cookie-text h4 { color: white; font-size: 1rem; margin-bottom: 0.25rem; }
.cookie-text p { color: rgba(255,255,255,0.7); font-size: 0.8rem; line-height: 1.6; }
.cookie-link { color: var(--primary-light); text-decoration: underline; }
.cookie-link:hover { color: white; }
.cookie-actions { display: flex; gap: 0.625rem; flex-shrink: 0; }

/* ====================================
   Animations
   ==================================== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* Animate on scroll targets */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* ====================================
   Responsive
   ==================================== */
@media (max-width: 1024px) {
    .hero-layout { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-content { order: 1; }
    .hero-visual { order: 2; }
    .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-card-stack { min-height: 320px; max-width: 500px; margin: 0 auto; }
    .hero-float-card-2 { left: 0; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { max-width: 100%; }
}

@media (max-width: 768px) {
    .section-title { font-size: 1.875rem; }
    .section-subtitle { font-size: 1rem; }
    .nav-menu {
        position: fixed; top: 0; left: -100%; width: 100%; height: 100vh;
        background: white; flex-direction: column; justify-content: center;
        padding: 2rem; transition: var(--transition); z-index: 1000;
    }
    .nav-menu.active { left: 0; }
    .nav-list { flex-direction: column; gap: 1.25rem; align-items: center; }
    .nav-link { font-size: 1.15rem; }
    .nav-actions { width: 100%; flex-direction: column; align-items: center; gap: 0.75rem; }
    .nav-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
    .nav-toggle { display: flex; }
    .hero { padding: 6rem 0 0; min-height: auto; }
    .hero-title { font-size: 2.25rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 320px; }
    .hero-card-stack { min-height: 280px; }
    .hero-float-card { padding: 0.625rem 0.875rem; font-size: 0.85rem; }
    .hero-float-card-1 { right: -5px; }
    .hero-float-card-2 { left: -5px; }
    .hero-float-card-3 { right: 0; }
    .marketplace-logos { gap: 1.25rem; }
    .marketplace-logo-item { font-size: 0.8rem; }
    .stats-grid { gap: 1.5rem; }
    .stat-divider { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .suppliers-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { flex-direction: column; gap: 1.5rem; }
    .step-connector { display: none; }
    .comparison-grid { grid-template-columns: 1fr; }
    .comparison-vs { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card-featured { transform: scale(1); }
    .pricing-card-featured:hover { transform: translateY(-6px); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .integration-highlight-content { flex-direction: column; text-align: center; gap: 1.25rem; }
    .integration-highlight-logo { margin: 0 auto; }
    .integration-highlight-features { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .cta-title { font-size: 2rem; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 320px; }
    .whatsapp-float-label { display: none; }
    .whatsapp-float { padding: 0.875rem; border-radius: 50%; }
    .cookie-content { flex-direction: column; text-align: center; gap: 1rem; }
    .cookie-actions { width: 100%; flex-direction: column; gap: 0.5rem; }
    .cookie-actions .btn { width: 100%; padding: 0.75rem 1rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-title { font-size: 1.875rem; }
    .btn-lg { padding: 0.875rem 1.5rem; font-size: 0.925rem; }
    .section-header { margin-bottom: 2.5rem; }
    .stats-grid { flex-direction: column; gap: 1.25rem; align-items: center; }
    .stat-item { justify-content: flex-start; width: 240px; }
    .stat-divider { display: none; }
    .suppliers-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .partners-grid-centered { max-width: 100%; }
    .partners-filter { gap: 0.5rem; }
    .filter-btn { padding: 0.5rem 0.875rem; font-size: 0.8rem; }
    .integration-highlight { padding: 1.5rem; }
    .integration-highlight-content { flex-direction: column; text-align: center; gap: 1rem; }
    .integration-highlight-features { justify-content: center; }
    .integration-highlight-logo { margin: 0 auto; }
}

/* ============================
   SUPPLIER BENEFITS SECTION
   ============================ */

.supplier-benefits {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a1a 0%, #111827 50%, #0a0a1a 100%);
    position: relative;
    overflow: hidden;
}

.supplier-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.supplier-benefits .section-title {
    color: #fff;
}

.supplier-benefits .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.supplier-benefits .section-tag {
    color: #a78bfa;
    border-color: rgba(167, 139, 250, 0.3);
    background: rgba(167, 139, 250, 0.08);
}

.supplier-benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

/* Problema */
.supplier-problem {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.supplier-problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f87171);
}

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

.supplier-problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f87171;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.supplier-problem-header h3 {
    color: #f87171;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.supplier-problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.supplier-problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.supplier-problem-list li i {
    color: #ef4444;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Solução */
.supplier-solution {
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.supplier-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.supplier-solution-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.supplier-solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.supplier-solution-header h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.supplier-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.supplier-benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.supplier-benefit-item:hover {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.supplier-benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    font-size: 1rem;
    flex-shrink: 0;
}

.supplier-benefit-info h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.supplier-benefit-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Fluxo visual */
.supplier-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.supplier-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 1;
    max-width: 180px;
    position: relative;
}

.supplier-flow-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.supplier-flow-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.3rem;
}

.supplier-flow-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.supplier-flow-arrow {
    color: rgba(102, 126, 234, 0.4);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* CTA do fornecedor */
.supplier-benefits-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Supplier Benefits - Responsivo */
@media (max-width: 992px) {
    .supplier-benefits-layout {
        grid-template-columns: 1fr;
    }
    .supplier-solution-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .supplier-benefits {
        padding: 70px 0;
    }
    .supplier-flow {
        flex-direction: column;
        gap: 12px;
        padding: 30px 20px;
    }
    .supplier-flow-arrow {
        transform: rotate(90deg);
        margin: -4px 0;
    }
    .supplier-flow-step {
        max-width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 14px;
        align-items: center;
    }
    .supplier-flow-step p {
        flex: 1;
        font-size: 0.9rem;
    }
    .supplier-flow-number {
        position: static;
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    .supplier-flow-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        font-size: 1.1rem;
    }
    .supplier-benefits-cta {
        flex-direction: column;
        align-items: center;
    }
    .supplier-benefits-cta .btn {
        width: 100%;
        max-width: 360px;
    }
    .supplier-problem,
    .supplier-solution {
        padding: 24px;
    }
}
