/* ===========================================
   ALTIBIX LANDING PAGE - Premium Styles
   =========================================== */

/* ===========================================
   NAVIGATION
   =========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: var(--color-white);
    box-shadow: var(--glass-shadow);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-600);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--color-purple);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-login {
    padding: var(--space-sm) var(--space-md);
}

.nav-cta {
    padding: var(--space-sm) var(--space-lg) !important;
    font-size: 0.875rem !important;
}

.nav-cta svg {
    width: 16px;
    height: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-gray-700);
    transition: all var(--transition-fast);
}

/* ===========================================
   HERO SECTION
   =========================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(80px + var(--space-2xl)) var(--space-lg) var(--space-2xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-badge span:last-child {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.hero-headline span {
    display: block;
}

.hero-subheadline {
    font-size: 1.125rem;
    color: var(--color-gray-500);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl) !important;
    font-size: 1rem !important;
}

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

.btn-ghost:hover {
    border-color: var(--color-purple);
    color: var(--color-purple);
    background: rgba(102, 126, 234, 0.05);
}

.btn-ghost svg {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gray-800);
}

.stat-plus {
    font-size: 1.25rem;
    color: var(--color-purple);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray-400);
    margin-top: var(--space-xs);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-gray-200);
}

/* Hero Visual / Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.mockup-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: var(--gradient-aurora);
    filter: blur(80px);
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: mockup-glow 8s ease-in-out infinite;
}

@keyframes mockup-glow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.mockup-frame {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    animation: float-mockup 6s ease-in-out infinite;
}

@keyframes float-mockup {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-gray-50);
    border-bottom: 1px solid var(--color-gray-100);
}

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

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gray-200);
}

.mockup-dots span:first-child {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #febc2e;
}

.mockup-dots span:last-child {
    background: #28c840;
}

.mockup-title {
    font-size: 0.75rem;
    color: var(--color-gray-400);
    font-weight: 500;
}

.mockup-content {
    display: flex;
    padding: var(--space-md);
    min-height: 300px;
    gap: var(--space-md);
}

.mockup-sidebar {
    width: 60px;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mock-nav-item {
    height: 40px;
    background: var(--color-gray-100);
    border-radius: var(--radius-sm);
}

.mock-nav-item.active {
    background: var(--gradient-primary);
}

.mockup-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mock-card {
    height: 60px;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
}

.mock-card.wide {
    height: 100px;
}

.mock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.mock-card.small {
    height: 80px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-gray-400);
    animation: bounce-scroll 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
}

@keyframes bounce-scroll {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ===========================================
   SECTIONS COMMON
   =========================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* ===========================================
   ROLE SELECTION SECTION
   =========================================== */

.role-section {
    padding: var(--space-3xl) 0;
    background: var(--color-gray-50);
}

.role-cards-landing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.role-card-landing {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.role-card-landing:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow), 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: var(--color-purple);
}

.role-card-landing .card-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    background: var(--gradient-aurora);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    filter: blur(80px);
    transition: all var(--transition-slow);
    pointer-events: none;
}

.role-card-landing:hover .card-glow {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
}

.role-icon-wrapper {
    margin-bottom: var(--space-lg);
}

.role-icon {
    width: 88px;
    height: 88px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    transition: all var(--transition-base);
}

.role-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-purple);
}

.role-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.role-card-landing:hover .role-icon {
    background: var(--gradient-primary);
}

.role-card-landing:hover .role-icon svg {
    color: white;
}

.role-card-landing h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gray-800);
    margin-bottom: var(--space-sm);
}

.role-card-landing>p {
    font-size: 1rem;
    color: var(--color-gray-500);
    margin-bottom: var(--space-lg);
}

.role-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
}

.role-benefits li {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-gray-100);
}

.role-benefits li:last-child {
    border-bottom: none;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-purple);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.card-cta svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.role-card-landing:hover .card-cta svg {
    transform: translateX(4px);
}

/* ===========================================
   FEATURES SECTION
   =========================================== */

.features-section {
    padding: var(--space-3xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    padding: var(--space-xl);
    background: var(--glass-bg);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: var(--color-purple);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-purple);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
}

.feature-card:hover .feature-icon svg {
    color: white;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-800);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* ===========================================
   HOW IT WORKS SECTION
   =========================================== */

.how-it-works-section {
    padding: var(--space-3xl) 0;
    background: var(--color-gray-50);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-md);
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: var(--space-xl);
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-gray-100);
    position: relative;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: var(--space-md) auto var(--space-lg);
    color: var(--color-purple);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-800);
    margin-bottom: var(--space-sm);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

.step-connector {
    width: 80px;
    color: var(--color-gray-300);
    margin-top: 60px;
}

.step-connector svg {
    width: 100%;
    height: auto;
}

/* ===========================================
   BENEFITS SECTIONS (Brands & Creators)
   =========================================== */

.benefits-section {
    padding: var(--space-3xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.benefits-grid.reverse {
    direction: rtl;
}

.benefits-grid.reverse>* {
    direction: ltr;
}

.benefits-content {
    max-width: 500px;
}

.benefits-content .section-title {
    text-align: left;
    margin-bottom: var(--space-md);
}

.benefits-content .section-subtitle {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
}

.benefits-list li {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-gray-100);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-800);
    margin-bottom: var(--space-xs);
}

.benefit-text p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
}

/* Visual Cards */
.benefits-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 100%;
    max-width: 400px;
    padding: var(--space-xl);
}

.visual-header {
    margin-bottom: var(--space-lg);
}

.visual-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.visual-stat {
    text-align: center;
    padding: var(--space-md);
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
}

.vs-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-800);
}

.vs-label {
    font-size: 0.7rem;
    color: var(--color-gray-400);
}

.visual-chart {
    display: flex;
    align-items: flex-end;
    gap: var(--space-sm);
    height: 100px;
    padding: var(--space-md);
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    min-height: 20px;
}

/* Creator Visual */
.creator-visual {
    text-align: center;
}

.creator-profile-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-gray-100);
    margin-bottom: var(--space-lg);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.profile-name {
    width: 120px;
    height: 16px;
    background: var(--color-gray-200);
    border-radius: var(--radius-sm);
}

.profile-handle {
    width: 80px;
    height: 12px;
    background: var(--color-gray-100);
    border-radius: var(--radius-sm);
}

.profile-badge {
    padding: var(--space-xs) var(--space-sm);
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.creator-stats-mock {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

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

.cs-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-800);
}

.cs-label {
    font-size: 0.7rem;
    color: var(--color-gray-400);
}

.creator-tags-mock {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.tag {
    padding: var(--space-xs) var(--space-md);
    background: var(--color-gray-100);
    color: var(--color-gray-600);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius-full);
}

/* Creators section with different background */
.creators-section {
    background: var(--color-gray-50);
}

/* ===========================================
   TRUST SECTION
   =========================================== */

.trust-section {
    padding: var(--space-3xl) 0;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

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

.ts-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-gray-800);
}

.ts-suffix {
    font-size: 1.5rem;
    color: var(--color-purple);
}

.ts-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray-500);
    margin-top: var(--space-xs);
}

.testimonials-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    padding: var(--space-xl);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-gray-800);
    font-size: 0.9rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--color-gray-400);
}

[data-theme="dark"] .faq-question {
    color: var(--color-gray-200);
}

[data-theme="dark"] .faq-answer {
    color: var(--color-gray-400);
}

/* ===========================================
   FAQ SECTION
   =========================================== */

.faq-section {
    padding: var(--space-3xl) 0;
    background: var(--color-gray-50);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: white;
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-800);
    font-family: var(--font-primary);
    cursor: pointer;
    text-align: left;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--color-gray-400);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

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

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.95rem;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* ===========================================
   FINAL CTA SECTION
   =========================================== */

.final-cta-section {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    background: var(--color-gray-800);
}

[data-theme="dark"] .final-cta-section {
    background: var(--color-gray-50);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.btn-white {
    background: white !important;
    color: var(--color-gray-800) !important;
}

[data-theme="dark"] .btn-white {
    color: #0f172a !important;
}

.btn-white:hover {
    background: var(--color-gray-100) !important;
    transform: translateY(-2px);
}

/* ===========================================
   FOOTER
   =========================================== */

.footer {
    background: var(--color-gray-900);
    color: white;
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand img {
    margin-bottom: var(--space-md);
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gradient-primary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .benefits-grid.reverse {
        direction: ltr;
    }

    .benefits-content {
        max-width: 100%;
        text-align: center;
    }

    .benefits-content .section-title,
    .benefits-content .section-subtitle {
        text-align: center;
    }

    .benefits-list li {
        text-align: left;
    }

    .benefits-content .btn {
        display: inline-flex;
    }

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

    .testimonials-section {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--space-lg);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-login {
        display: none;
    }

    .role-cards-landing {
        grid-template-columns: 1fr;
    }

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

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: var(--space-md) 0;
    }

    .step-card {
        max-width: 100%;
    }

    .trust-stats {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

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

/* ===========================================
   IMAGE PLACEHOLDERS
   =========================================== */

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Hide image if it fails to load (handled by JS onerror adding class) */
.image-placeholder.placeholder-visible img {
    opacity: 0;
    pointer-events: none;
}

.placeholder-info {
    z-index: 2;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    backdrop-filter: blur(4px);
    opacity: 0;
    /* Hidden by default if image loads */
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Show info if image missing or on hover for dev purposes */
.image-placeholder.placeholder-visible .placeholder-info,
.image-placeholder:hover .placeholder-info {
    opacity: 1;
}

.placeholder-size {
    font-family: monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-400);
    display: block;
}

.placeholder-desc {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    font-weight: 500;
}

/* Specific adjustments for hero visual */
.hero-visual .image-placeholder {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: none;
}

/* ===========================================
   INTEGRATIONS STRIP
   =========================================== */
.integrations-section {
    padding: var(--space-xl) 0;
    text-align: center;
    border-bottom: 1px solid var(--color-gray-100);
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0));
    overflow: hidden;
}

[data-theme="dark"] .integrations-section {
    background: linear-gradient(to right,
            rgba(15, 23, 42, 0),
            rgba(30, 41, 59, 0.8),
            rgba(15, 23, 42, 0));
    border-bottom-color: var(--color-gray-800);
}

.integrations-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray-400);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.integrations-scroll {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroll-track {
    display: flex;
    gap: var(--space-3xl);
    animation: scroll 30s linear infinite;
    white-space: nowrap;
    width: max-content;
    padding: var(--space-sm) 0;
}

.scroll-track span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-gray-300);
    transition: color 0.3s ease;
    cursor: default;
}

.scroll-track span:hover {
    color: var(--color-purple);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===========================================
   COMPARISON SECTION
   =========================================== */
.comparison-section {
    padding: var(--space-3xl) 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-lg);
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-gray-500);
    font-weight: 600;
}

.comparison-table td {
    color: var(--color-gray-600);
    font-size: 1rem;
}

/* Highlight Column */
.comparison-table th.highlight,
.comparison-table td.highlight {
    color: var(--color-purple);
    font-weight: 600;
    background: linear-gradient(to right, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: var(--radius-md);
}

.comparison-table td.highlight {
    position: relative;
}

.comparison-table td.highlight::before {
    content: '✓';
    display: inline-block;
    margin-right: 8px;
    color: var(--color-success);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {

    .comparison-table th,
    .comparison-table td {
        padding: var(--space-md);
        font-size: 0.9rem;
    }
}

/* ===========================================
   THEME TOGGLE
   =========================================== */
.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    color: var(--color-gray-600);
    border-radius: 50%;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-xs);
}

.theme-toggle:hover {
    background: var(--color-gray-100);
    color: var(--color-purple);
}

/* Show sun when light (default), moon when dark */
[data-theme="dark"] .icon-sun {
    display: none;
}

[data-theme="dark"] .icon-moon {
    display: block !important;
}

/* ===========================================
   SOCIAL PROOF TOASTS
   =========================================== */
.social-proof-container {
    position: fixed;
    bottom: var(--space-lg);
    left: var(--space-lg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    pointer-events: none;
}

.social-toast {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    width: 320px;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: auto;
}

[data-theme="dark"] .social-toast {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.social-toast.visible {
    transform: translateX(0);
    opacity: 1;
}

.toast-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toast-content {
    flex: 1;
}

.toast-text {
    font-size: 0.9rem;
    color: var(--color-gray-800);
    font-weight: 600;
    line-height: 1.3;
}

.toast-subtext {
    font-size: 0.8rem;
    color: var(--color-gray-500);
    margin-top: 2px;
}

/* ===========================================
   ROI CALCULATOR
   =========================================== */
.roi-section {
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 2;
}

.roi-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.roi-header {
    margin-bottom: var(--space-xl);
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    text-align: left;
}

.roi-input label {
    display: block;
    font-weight: 600;
    color: var(--color-gray-500);
    margin-bottom: var(--space-sm);
}

.range-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-purple);
    margin-bottom: var(--space-md);
    font-family: var(--font-display);
}

input[type=range] {
    width: 100%;
    height: 6px;
    background: var(--color-gray-200);
    border-radius: 4px;
    outline: none;
    appearance: none;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--color-purple);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.2);
    transition: all 0.2s;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(147, 51, 234, 0.3);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-sm);
    color: var(--color-gray-400);
    font-size: 0.85rem;
}

.roi-output {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(219, 39, 119, 0.05));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.output-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray-500);
    margin-bottom: var(--space-sm);
}

.output-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--space-sm);
}

.output-note {
    font-size: 0.8rem;
    color: var(--color-gray-400);
    margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
    .roi-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .roi-card {
        padding: var(--space-lg);
    }
}


/* ===========================================
   FINAL ENHANCEMENTS
   =========================================== */
/* Hero Timer */
.hero-timer {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timer-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gray-800);
}

.timer-digits {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-purple);
    font-variant-numeric: tabular-nums;
}

[data-theme="dark"] .timer-label {
    color: var(--color-gray-200);
}

[data-theme="dark"] .timer-digits {
    color: var(--color-cyan);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-10deg);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ===========================================
   EXIT INTENT MODAL
   =========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--color-white);
    padding: var(--space-xl);
    max-width: 450px;
    width: 90%;
    border-radius: var(--radius-xl);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

[data-theme="dark"] .modal-content {
    background: var(--color-gray-50);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-gray-400);
}

.modal-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.modal-body h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--color-gray-800);
}

.modal-body p {
    color: var(--color-gray-500);
    margin-bottom: var(--space-lg);
}

.btn-block {
    width: 100%;
    justify-content: center;
    display: flex;
}

.modal-footer {
    font-size: 0.8rem;
    margin-top: var(--space-md);
    margin-bottom: 0px !important;
}

/* Footer Dark Mode */
[data-theme='dark'] .footer-section {
    background: var(--color-gray-900);
    border-top-color: var(--color-gray-800);
}

[data-theme='dark'] .footer-brand p {
    color: var(--color-gray-400);
}

[data-theme='dark'] .footer-links h4 {
    color: var(--color-gray-200);
}

[data-theme='dark'] .footer-links ul li a {
    color: var(--color-gray-400);
}

[data-theme='dark'] .footer-links ul li a:hover {
    color: var(--color-purple);
}

/* ===========================================
   INTEGRATION LOGOS ANIMATION
   =========================================== */
.scroll-track span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-xl);
}

.scroll-track svg {
    height: 48px;
    width: auto;
    color: var(--color-gray-400);
    transition: all var(--transition-base);
}

.scroll-track span:hover svg {
    color: var(--color-purple);
    transform: scale(1.1);
}

/* ===========================================
   SCROLL TO TOP BUTTON
   =========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 90px;
    /* To left of WhatsApp button */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-600);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--color-purple);
    color: white;
    border-color: var(--color-purple);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

[data-theme='dark'] .scroll-to-top {
    color: var(--color-gray-300);
    background: rgba(30, 41, 59, 0.8);
}