/* ================================================
   KWID LANDING PAGE - MODERN MINIMALIST DESIGN
   ================================================ */

/* ===== CSS VARIABLES & THEME INTEGRATION ===== */
:root {
    /* Kwid Brand Colors */
    --kwid-purple: #7A00FF;
    --kwid-purple-dark: #5300B3;
    --kwid-blue: #3B82F6;
    --kwid-blue-dark: #2563EB;

    /* Semantic Colors */
    /* Semantic Colors */
    /* --success: #10B981; */
    /* --warning: #F59E0B; */
    /* --danger: #EF4444; */
    /* --info: #3B82F6; */

    /* Typography */
    /* --font-heading inherited from base */
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 40px 0;
    --container-max-width: 1200px;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: 10px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(122, 0, 255, 0.3);

    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dark Theme Adjustments */
[data-bs-theme="dark"] {
    --glass-bg: rgba(0, 0, 0, 0.3);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 40px rgba(122, 0, 255, 0.5);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.landing-page {
    font-family: var(--font-body);
    overflow-x: hidden;
}

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

/* Landing Content Container - Minimal margins for OnePage layout */
.landing-content {
    width: 100%;
}

.landing-content .container-fluid {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* Force EditorJS content to use full width in Landing Page */
.landing-content .editorjs-content {
    max-width: 100% !important;
    padding: 0;
}

/* EditorJS Content Wrapper - Allow sections to control their own margins */
.ce-block {
    max-width: 100% !important;
}

.ce-block__content {
    max-width: 100% !important;
    margin: 0 auto;
}

/* Responsive padding adjustments */
@media (max-width: 768px) {
    .landing-content .container-fluid {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(122, 0, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(122, 0, 255, 0.8);
    }
}

@keyframes float {

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.delay-1 {
    animation-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    animation-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    animation-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    animation-delay: 0.4s;
}

/* ===== NAVBAR ===== */
.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="dark"] .landing-navbar {
    background: #0d0d12;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.landing-navbar.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .landing-navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.navbar-brand {
    flex-shrink: 0;
}

.brand-logo-img {
    height: 63px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

/* Theme-aware logo visibility */
.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

[data-bs-theme="dark"] .logo-light {
    display: none;
}

[data-bs-theme="dark"] .logo-dark {
    display: block;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--bs-body-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-smooth);
    opacity: 0.8;
    position: relative;
}

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

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

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

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--bs-border-color);
    background: var(--bs-body-bg);
    color: var(--bs-body-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 16px;
}

.btn-theme-toggle:hover {
    background: var(--kwid-purple);
    color: white;
    border-color: var(--kwid-purple);
}

.btn-nav-secondary {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--bs-body-color);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-nav-secondary:hover {
    color: var(--kwid-purple);
    background: rgba(122, 0, 255, 0.1);
}

.btn-nav-primary {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: var(--kwid-purple);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-nav-primary:hover {
    background: var(--kwid-purple-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--bs-border-color);
    background: var(--bs-body-bg);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: var(--bs-body-color);
    transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
    background: var(--kwid-purple);
    color: white;
    border-color: var(--kwid-purple);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    margin-top: 16px;
    border-top: 1px solid var(--bs-border-color);
}

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

.mobile-menu-link {
    padding: 12px 16px;
    color: var(--bs-body-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.mobile-menu-link:hover {
    background: rgba(122, 0, 255, 0.1);
    color: var(--kwid-purple);
}

/* Mobile Navbar */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .navbar-actions {
        display: none;
    }

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

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--kwid-purple) 0%, var(--kwid-blue) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
    /* Increased top padding for navbar */
}

/* Animated background shapes */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-section::before {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-section::after {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 3s;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-illustration {
    max-width: 600px;
    margin: 60px auto 0;
    animation: fadeInUp 0.8s ease-out 0.8s both, float 6s ease-in-out 1s infinite;
}

.hero-illustration img {
    width: 100%;
    height: auto;
    filter: drop-shadow(var(--shadow-lg));
}

/* ===== BUTTONS ===== */
.btn-primary-landing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: var(--kwid-purple);
    border: 2px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.btn-primary-landing:hover {
    background: var(--kwid-purple-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    color: white;
}

.btn-primary-landing:active {
    transform: translateY(0);
}

.btn-secondary-landing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-secondary-landing:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: white;
}

/* ===== SECTIONS ===== */
.landing-section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(122, 0, 255, 0.1);
    color: var(--kwid-purple);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

[data-bs-theme="dark"] .section-badge {
    background: rgba(122, 0, 255, 0.2);
    color: #A78BFA;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 0;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

[data-bs-theme="light"] .feature-card {
    background: white;
    border: 1px solid #E5E7EB;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--kwid-purple), var(--kwid-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    padding: 16px;
    background: linear-gradient(135deg, var(--kwid-purple), var(--kwid-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.feature-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

/* ===== MODULES GRID (NEW 10-MODULE LAYOUT) ===== */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 0;
}

.module-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

[data-bs-theme="light"] .module-card {
    background: white;
    border: 1px solid #E5E7EB;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--kwid-purple), var(--kwid-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

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

.module-card:hover::before {
    transform: scaleX(1);
}

.module-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-icon i {
    font-size: 56px;
    background: linear-gradient(135deg, var(--kwid-purple), var(--kwid-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.module-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--bs-body-color);
}

.module-description {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.75;
    color: var(--bs-body-color);
}

/* Responsive breakpoints for modules grid */
@media (max-width: 1200px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }
    
    .module-card {
        padding: 20px;
    }
}

/* ===== ECOSYSTEM SECTION ===== */
.ecosystem-section {
    background: linear-gradient(180deg, transparent 0%, rgba(122, 0, 255, 0.03) 100%);
}

[data-bs-theme="dark"] .ecosystem-section {
    background: linear-gradient(180deg, transparent 0%, rgba(122, 0, 255, 0.08) 100%);
}

.ecosystem-flow {
    margin: 0 auto 50px;
    max-width: 900px;
}

.flow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    min-width: 120px;
    transition: var(--transition-smooth);
}

[data-bs-theme="light"] .flow-step {
    background: white;
    border: 1px solid #E5E7EB;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.flow-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.flow-icon {
    font-size: 32px;
    line-height: 1;
}

.flow-icon i {
    background: linear-gradient(135deg, var(--kwid-purple), var(--kwid-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flow-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--bs-body-color);
    text-align: center;
}

.flow-arrow {
    font-size: 24px;
    color: var(--kwid-purple);
    font-weight: bold;
    opacity: 0.6;
}

.flow-divider {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--kwid-purple) 50%, transparent 100%);
    margin: 32px auto;
    opacity: 0.3;
}

.ecosystem-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 0;
}

.ecosystem-benefit {
    text-align: center;
    padding: 24px;
}

.ecosystem-benefit i {
    font-size: 40px;
    background: linear-gradient(135deg, var(--kwid-purple), var(--kwid-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.ecosystem-benefit h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--bs-body-color);
}

.ecosystem-benefit p {
    font-size: 15px;
    opacity: 0.75;
    line-height: 1.5;
}

/* Responsive for ecosystem */
@media (max-width: 768px) {
    .flow-row {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .flow-step {
        min-width: 100px;
        padding: 12px;
    }
    
    .flow-icon {
        font-size: 24px;
    }
    
    .flow-label {
        font-size: 12px;
    }
    
    .flow-arrow {
        font-size: 18px;
    }
    
    .ecosystem-benefits {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ===== OPERATIONS CRM SECTION ===== */
.operations-crm-section {
    background: #F9FAFB;
}

[data-bs-theme="dark"] .operations-crm-section {
    background: #1a1a1f;
}

.operations-crm-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 0;
}

.operations-feature {
    padding: 24px;
}

.operations-feature-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--bs-body-color);
}

.operations-feature-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
    color: var(--bs-body-color);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background: var(--bs-body-bg);
}

/* ===== BENEFITS SECTION ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 0;
}

.benefit-card {
    text-align: center;
    padding: 32px;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--kwid-purple), var(--kwid-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

/* ===== ROADMAP SECTION ===== */
.roadmap-section {
    background: linear-gradient(180deg, transparent 0%, rgba(122, 0, 255, 0.05) 100%);
}

[data-bs-theme="dark"] .roadmap-section {
    background: linear-gradient(180deg, transparent 0%, rgba(122, 0, 255, 0.1) 100%);
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto 0;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--kwid-purple), var(--kwid-blue));
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-content {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-smooth);
}

[data-bs-theme="light"] .roadmap-content {
    background: white;
    border: 1px solid #E5E7EB;
    box-shadow: var(--shadow-sm);
}

.roadmap-content:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.roadmap-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--kwid-purple), var(--kwid-blue));
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.roadmap-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.roadmap-description {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 16px;
}

.roadmap-features {
    list-style: none;
    padding: 0;
}

.roadmap-features li {
    padding: 6px 0;
    font-size: 14px;
    opacity: 0.7;
}

.roadmap-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    margin-right: 8px;
}

.roadmap-dot {
    position: absolute;
    left: 50%;
    top: 24px;
    width: 20px;
    height: 20px;
    background: var(--kwid-purple);
    border: 4px solid var(--bs-body-bg);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof-section {
    background: var(--bs-body-bg);
}

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

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

[data-bs-theme="light"] .testimonial-card {
    background: white;
    border: 1px solid #E5E7EB;
    box-shadow: var(--shadow-sm);
}

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

.testimonial-quote {
    margin-bottom: 24px;
}

.testimonial-quote i {
    font-size: 40px;
    background: linear-gradient(135deg, var(--kwid-purple), var(--kwid-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: block;
}

.testimonial-quote p {
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    color: var(--bs-body-color);
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--kwid-purple);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--bs-body-color);
    margin-bottom: 4px;
}

.author-role {
    font-size: 13px;
    opacity: 0.75;
    margin-bottom: 2px;
}

.author-company {
    font-size: 13px;
    opacity: 0.6;
    font-style: italic;
}

/* Responsive for testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: var(--bs-body-bg);
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

[data-bs-theme="light"] .pricing-card {
    background: white;
    border: 1px solid #E5E7EB;
    box-shadow: var(--shadow-sm);
}

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

/* Featured pricing card */
.pricing-card-featured {
    border: 2px solid var(--kwid-purple);
    box-shadow: var(--shadow-md), 0 0 30px rgba(122, 0, 255, 0.2);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(122, 0, 255, 0.3);
}

.pricing-badge-featured {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--kwid-purple), var(--kwid-blue));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-plan {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--kwid-purple), var(--kwid-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price {
    margin-bottom: 32px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--kwid-purple), var(--kwid-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    opacity: 0.8;
}

.price-period {
    font-size: 18px;
    opacity: 0.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid var(--bs-border-color);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive pricing grid */
@media (max-width: 992px) {
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .pricing-card-featured:hover {
        transform: scale(1) translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-section .row {
        gap: 24px;
    }
    
    .pricing-card {
        margin-bottom: 24px;
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--kwid-purple), var(--kwid-blue));
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(122, 0, 255, 0.05) 100%);
}

[data-bs-theme="dark"] .cta-section {
    background: linear-gradient(180deg, transparent 0%, rgba(122, 0, 255, 0.1) 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

[data-bs-theme="light"] .cta-box {
    background: white;
    border: 1px solid #E5E7EB;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ===== LEAD FORM ===== */
.lead-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group-landing {
    margin-bottom: 20px;
    text-align: left;
}

.form-label-landing {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-input-landing {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--bs-input-bg);
    color: var(--bs-body-color);
    transition: var(--transition-smooth);
}

[data-bs-theme="light"] .form-input-landing {
    background: #F3F4F6;
    border-color: #E5E7EB;
}

.form-input-landing:focus {
    outline: none;
    border-color: var(--kwid-purple);
    box-shadow: 0 0 0 4px rgba(122, 0, 255, 0.1);
}

.form-error {
    color: var(--danger);
    font-size: 13px;
    margin-top: 4px;
    display: none;
}

.form-input-landing.error {
    border-color: var(--danger);
}

.form-input-landing.error+.form-error {
    display: block;
}

.form-success {
    padding: 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    border-radius: 10px;
    color: var(--success);
    text-align: center;
    margin-top: 16px;
    display: none;
}

.form-success.show {
    display: block;
    animation: scaleIn 0.4s ease-out;
}

/* ===== FOOTER ===== */
.landing-footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--bs-border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--kwid-purple), var(--kwid-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-links-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

.footer-links a {
    color: var(--bs-body-color);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition-smooth);
    font-size: 15px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--kwid-purple);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--bs-border-color);
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--bs-body-color);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 18px;
}

[data-bs-theme="light"] .social-link {
    background: #F3F4F6;
    border-color: #E5E7EB;
}

.social-link:hover {
    background: var(--kwid-purple);
    border-color: var(--kwid-purple);
    color: white;
    transform: translateY(-4px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-landing,
    .btn-secondary-landing {
        width: 100%;
        justify-content: center;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-item {
        flex-direction: column !important;
        padding-left: 50px;
    }

    .roadmap-dot {
        left: 20px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-box {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .landing-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

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

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--kwid-purple), var(--kwid-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

.no-decoration {
    text-decoration: none !important;
}
/* ===== GLASS CARD UTILITY ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

[data-bs-theme="light"] .glass-card {
    background: white;
    border: 1px solid #E5E7EB;
    box-shadow: var(--shadow-sm);
}

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