/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --secondary: #6366F1;
    --accent: #EC4899;
    --dark: #0F172A;
    --dark-light: #1E293B;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    --gradient-hover: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Theme colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #FFFFFF;
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --text-tertiary: #94A3B8;
    --border-color: rgba(0, 0, 0, 0.05);
    --card-bg: #FFFFFF;
    --navbar-bg: rgba(255, 255, 255, 0.8);
    --navbar-bg-scrolled: rgba(255, 255, 255, 0.95);
}

/* Dark Mode */
[data-theme="dark"] {
    --primary: #A78BFA;
    --primary-dark: #8B5CF6;
    --primary-light: #C4B5FD;
    --secondary: #818CF8;
    --dark: #F8FAFC;
    --dark-light: #E2E8F0;
    --gray: #94A3B8;
    --gray-light: #64748B;
    --light: #1E293B;
    --white: #0F172A;
    --gradient: linear-gradient(135deg, #A78BFA 0%, #818CF8 100%);
    --gradient-hover: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    
    /* Dark theme colors */
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --bg-tertiary: #334155;
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-tertiary: #94A3B8;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: #1E293B;
    --navbar-bg: rgba(15, 23, 42, 0.8);
    --navbar-bg-scrolled: rgba(15, 23, 42, 0.95);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--navbar-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--navbar-bg-scrolled);
    box-shadow: var(--shadow);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
}

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

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

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

.nav-link-text {
    padding: 10px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1.5px solid rgba(139, 92, 246, 0.3);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.nav-link-text:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    border-color: rgba(139, 92, 246, 0.5);
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
}

.nav-text-full {
    display: inline;
}

.nav-text-mobile {
    display: none;
}

/* Mobile Menu Link */
.mobile-menu-link {
    display: block;
    padding: 14px 20px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1.5px solid rgba(139, 92, 246, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    border-color: rgba(139, 92, 246, 0.5);
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
}

/* Theme Toggle Button */
.theme-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.theme-toggle:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    transform: scale(1.05);
}

.theme-toggle svg {
    position: absolute;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

[data-theme="dark"] .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

[data-theme="dark"] .theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-toggle.mobile {
    width: 100%;
    height: auto;
    padding: 12px 16px;
    justify-content: flex-start;
    gap: 12px;
    border-radius: 8px;
}

.theme-toggle.mobile svg {
    position: relative;
    flex-shrink: 0;
}

.theme-toggle-text {
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

[data-theme="dark"] .theme-toggle-text::before {
    content: 'Light Mode';
}

.theme-toggle-text::before {
    content: 'Dark Mode';
}

.cta-button {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* CTA Button Text Variants */
.cta-text-full {
    display: inline;
}

.cta-text-mobile {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

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

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, rgba(236, 72, 153, 0.05) 50%, rgba(255, 255, 255, 0.95) 100%);
    overflow: hidden;
}

[data-theme="dark"] .hero {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.1) 50%, rgba(15, 23, 42, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .hero-badge {
    background: rgba(167, 139, 250, 0.2);
    border-color: rgba(167, 139, 250, 0.3);
    color: var(--primary-light);
}

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

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

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

.rotating-text {
    display: inline-block;
    min-width: 280px;
    text-align: left;
    position: relative;
}

.rotating-text::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--primary);
    margin-left: 4px;
    animation: blink 1s infinite;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.rotating-text.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

.rotating-text.fade-in {
    animation: fadeIn 0.5s ease-in forwards;
}

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

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

.hero-subtitle {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.5);
}

.primary-button:hover {
    background: var(--gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(139, 92, 246, 0.6);
}

[data-theme="dark"] .primary-button {
    box-shadow: 0 10px 30px -10px rgba(167, 139, 250, 0.4);
}

[data-theme="dark"] .primary-button:hover {
    box-shadow: 0 15px 40px -10px rgba(167, 139, 250, 0.5);
}

.primary-button.large {
    padding: 20px 40px;
    font-size: 18px;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border: 2px solid var(--text-primary);
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 650px;
    margin: 0 auto;
}

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

.stat-value {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

.hero-visual {
    display: none;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
    border: 1px solid var(--border-color);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: 30%;
    animation-delay: 0.5s;
}

.card-3 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.card-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

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

.card-icon {
    font-size: 24px;
}

.card-text {
    font-weight: 600;
    color: var(--text-primary);
}

.hero-shape {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

[data-theme="dark"] .hero-shape {
    background: radial-gradient(circle, rgba(167, 139, 250, 0.2) 0%, rgba(99, 102, 241, 0.1) 50%, transparent 100%);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* What We Do Section */
.what-we-do {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Featured Card */
.what-we-do-featured {
    margin: 60px 0;
    position: relative;
}

.featured-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.featured-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 60px -10px rgba(139, 92, 246, 0.3);
}

.featured-icon {
    flex-shrink: 0;
}

.featured-content {
    flex: 1;
}

.featured-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* New Features Grid */
.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.feature-card-new {
    background: var(--card-bg);
    padding: 36px 28px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-number {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
}

.feature-icon-new {
    margin-bottom: 24px;
}

.feature-title-new {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.feature-card-new:hover .feature-title-new {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-description-new {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Engagement Models Section */
.engagement-models {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.engagement-models::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.engagement-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.engagement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.engagement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
}

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

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

.engagement-icon {
    flex-shrink: 0;
}

.engagement-icon svg {
    display: block;
}

.engagement-content {
    flex: 1;
    margin-bottom: 24px;
}

.engagement-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.engagement-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.engagement-ideal {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.engagement-ideal strong {
    color: var(--text-primary);
    font-weight: 600;
}

.engagement-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6366F1;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.engagement-link:hover {
    gap: 12px;
    color: #4F46E5;
}

.engagement-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.engagement-link:hover svg {
    transform: translateX(4px);
}

/* Old styles for backward compatibility */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Use Cases Section - Lyzr Style */
.use-cases-lyzr {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.use-case-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    background: var(--bg-primary);
    padding: 12px;
    border-radius: 50px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.use-case-tab {
    background: transparent;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.use-case-tab:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-primary);
}

.use-case-tab.active {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.use-case-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.use-case-left {
    position: sticky;
    top: 120px;
}

.use-case-main-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.use-case-main-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.use-case-right {
    position: relative;
}

.use-case-agents {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    animation: fadeIn 0.5s ease;
}

.use-case-agents.active {
    display: grid;
}

.use-case-mobile-cta {
    display: none;
}

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

.agent-card {
    background: var(--card-bg);
    padding: 24px 20px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.agent-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.agent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Agent Card Color Variants */
.agent-card-green {
    border-color: #10B981;
}

.agent-card-green:hover {
    border-color: #10B981;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.agent-card-blue {
    border-color: #3B82F6;
}

.agent-card-blue:hover {
    border-color: #3B82F6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.agent-card-orange {
    border-color: #F59E0B;
}

.agent-card-orange:hover {
    border-color: #F59E0B;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
}

.agent-card-gray {
    border-color: var(--border-color);
}

.agent-card-gray:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}

/* Who We Build For Section - Tabbed Version */
.who-we-build-for-tabs {
    background: var(--bg-primary);
    padding: 80px 0;
}

/* Industry Tabs */
.industry-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 48px 0 60px;
    padding: 0;
    border-bottom: 2px solid var(--border-color);
}

.industry-tab {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    margin-bottom: -2px;
}

.industry-tab .tab-icon {
    font-size: 20px;
}

.industry-tab .tab-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.industry-tab:hover {
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.05);
}

.industry-tab.active {
    color: #6366F1;
    border-bottom-color: #6366F1;
    background: transparent;
}

/* Tab Content */
.industry-tab-content {
    min-height: 400px;
}

.industry-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    animation: fadeInUp 0.5s ease;
}

.industry-content.active {
    display: grid;
}

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

.industry-text {
    padding-right: 40px;
}

.industry-content-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.industry-content-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.industry-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-mobile-cta {
    display: none;
}

.visual-placeholder {
    width: 100%;
    max-width: 450px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.4s ease;
}

.visual-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.2);
}

.visual-placeholder svg {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.industry-visual-img {
    width: 100%;
    height: auto;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08));
    transition: all 0.4s ease;
}

.visual-placeholder:hover .industry-visual-img {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(139, 92, 246, 0.2));
}

/* Old Industries Grid (for backward compatibility) */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.industry-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

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

.industry-icon {
    font-size: 48px;
}

.industry-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.industry-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* How It Works Section */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 80px;
    width: 2px;
    height: calc(100% + 48px);
    background: linear-gradient(180deg, var(--primary) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.why-us-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-us-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.why-us-list li span {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.6;
}

.why-us-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tech-badge {
    background: var(--card-bg);
    padding: 18px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.tech-icon {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.tech-icon-text {
    font-size: 14px;
    font-weight: 800;
    padding: 4px 6px;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.tech-badge:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.contact-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 60px;
    border-radius: 32px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.contact-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.contact-cta .primary-button {
    background: var(--bg-primary);
    color: var(--primary);
}

.contact-cta .primary-button:hover {
    background: var(--card-bg);
    transform: translateY(-4px);
}

.email-link {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.email-link:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    color: var(--text-secondary);
    padding: 60px 0 32px;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

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

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
}

.footer-heading {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-legal {
    font-size: 13px;
    line-height: 1.8;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 40px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    /* Use Cases - Tablet */
    .use-case-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .use-case-left {
        position: static;
    }
    
    .use-case-main-title {
        font-size: 36px;
    }
    
    .use-case-agents {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Engagement Models - Tablet */
    .engagement-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .engagement-card {
        padding: 36px;
    }
    
    /* Who We Build For - Tablet */
    .visual-placeholder {
        padding: 40px;
        max-width: 400px;
    }
    
    .industry-visual-img {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    /* Navbar adjustments for mobile */
    .nav-content {
        padding: 12px 0;
    }
    
    .nav-text-full {
        display: none;
    }
    
    .nav-text-mobile {
        display: inline;
    }
    
    .logo {
        gap: 8px;
        font-size: 18px;
    }
    
    .logo-image {
        width: 36px;
        height: 36px;
    }
    
    .nav-links {
        display: flex;
        align-items: center;
        gap: 0;
    }
    
    /* Hide theme toggle in mobile view */
    .nav-links .theme-toggle {
        display: none;
    }
    
    /* Adjust CTA button for mobile */
    .nav-links .cta-button {
        padding: 10px 18px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    /* Show mobile text, hide full text */
    .cta-text-full {
        display: none;
    }
    
    .cta-text-mobile {
        display: inline;
    }

    .mobile-menu-toggle {
        display: none;
    }
    
    /* Hide mobile menu completely */
    .mobile-menu {
        display: none !important;
    }

    .hero {
        padding: 80px 0 20px;
        min-height: calc(100vh - 72px);
    }

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

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 32px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 0;
    }

    .stat-value {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 11px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 40px;
    }

    .primary-button,
    .secondary-button {
        justify-content: center;
        width: 100%;
        padding: 15px 28px;
        font-size: 16px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 7px 14px;
        margin-bottom: 18px;
    }
    
    .hero-shape {
        width: 600px;
        height: 600px;
    }
    
    .rotating-text {
        min-width: 200px;
    }

    .section {
        padding: 40px 0;
    }
    
    /* What We Do - Mobile */
    .featured-card {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
    }
    
    .featured-title {
        font-size: 24px;
    }
    
    .featured-description {
        font-size: 16px;
    }
    
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-number {
        font-size: 36px;
        top: 20px;
        right: 20px;
    }

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

    .section-description {
        font-size: 16px;
    }

    .features-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    /* Who We Build For - Mobile */
    .industry-tabs {
        display: none;
    }
    
    .industry-tab-content {
        min-height: auto;
    }
    
    .industry-content {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        margin-bottom: 32px;
        padding-bottom: 32px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .industry-content:last-of-type {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .industry-text {
        padding-right: 0;
        width: 100%;
    }
    
    .industry-content-title {
        font-size: 22px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .industry-content-title::before {
        content: '';
        width: 48px;
        height: 48px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        flex-shrink: 0;
    }
    
    .industry-content[data-industry="tech-startups"] .industry-content-title::before {
        background-image: url('assets/Startups.png');
    }
    
    .industry-content[data-industry="consulting"] .industry-content-title::before {
        background-image: url('assets/Consulting.png');
    }
    
    .industry-content[data-industry="insurance"] .industry-content-title::before {
        background-image: url('assets/Insurance.png');
    }
    
    .industry-content[data-industry="lending"] .industry-content-title::before {
        background-image: url('assets/Finance.png');
    }
    
    .industry-content[data-industry="healthcare"] .industry-content-title::before {
        background-image: url('assets/Healthcare.png');
    }
    
    .industry-content[data-industry="custom"] .industry-content-title::before {
        background-image: url('assets/Custom_Solutions.png');
    }
    
    .industry-content-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .industry-text .primary-button {
        display: none;
    }
    
    .industry-visual {
        display: none;
    }
    
    .industry-mobile-cta {
        display: inline-flex !important;
        width: 100%;
        justify-content: center;
        margin-top: 32px;
    }
    
    /* Use Cases - Mobile */
    .use-case-tabs {
        display: none;
    }
    
    .use-case-content {
        display: block !important;
    }
    
    .use-case-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 32px;
    }
    
    .use-case-left .primary-button {
        display: none;
    }
    
    .use-case-main-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .use-case-main-description {
        font-size: 16px;
        margin-bottom: 0;
    }
    
    .use-case-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .use-case-agents {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 0;
    }
    
    .use-case-agents::before {
        content: attr(data-category-title);
        display: block;
        grid-column: 1 / -1;
        font-size: 20px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 16px;
        text-transform: capitalize;
    }
    
    .use-case-mobile-cta {
        display: inline-flex !important;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
    
    .agent-card {
        padding: 16px 12px;
    }
    
    .agent-card h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .agent-card p {
        font-size: 11px;
        line-height: 1.5;
    }
    
    /* Engagement Models - Mobile */
    .engagement-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .engagement-card {
        padding: 32px 24px;
    }
    
    .engagement-header {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .engagement-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .engagement-title {
        font-size: 18px;
    }
    
    .engagement-description {
        font-size: 14px;
    }
    
    .engagement-ideal {
        font-size: 13px;
    }

    .why-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-visual {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .process-step {
        gap: 24px;
    }

    .process-step:not(:last-child)::after {
        left: 24px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 15px;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-card {
        padding: 48px 32px;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-description {
        font-size: 16px;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 70px 0 30px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .hero-cta {
        margin-bottom: 32px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
    }

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

    .primary-button,
    .secondary-button {
        padding: 14px 24px;
        font-size: 15px;
    }

    .primary-button.large {
        padding: 16px 28px;
        font-size: 16px;
    }

    .contact-title {
        font-size: 24px;
    }

    .why-us-visual {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .tech-badge {
        padding: 14px 10px;
    }
    
    .tech-icon-img {
        width: 32px;
        height: 32px;
    }
    
    .tech-badge {
        font-size: 11px;
    }
    
    .hero-stats {
        gap: 28px;
    }
    
    .hero-shape {
        width: 400px;
        height: 400px;
    }
    
    .rotating-text {
        min-width: 140px;
    }
    
    .rotating-text::after {
        width: 2px;
    }
    
    /* What We Do - Small Mobile */
    .featured-card {
        padding: 28px 20px;
    }
    
    .featured-title {
        font-size: 20px;
    }
    
    .featured-description {
        font-size: 15px;
    }
    
    .feature-card-new {
        padding: 28px 20px;
    }
    
    .feature-number {
        font-size: 32px;
    }
}

/* ==================== MVP Section Styles ==================== */

.mvp-section {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.mvp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* MVP Hero Section */
.mvp-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.mvp-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease-out;
    text-align: center;
    white-space: normal;
    line-height: 1.4;
}

.mvp-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.mvp-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.mvp-subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

/* Price Highlight */
.mvp-price-highlight {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.mvp-price-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

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

.price-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-secondary);
}

.price-amount {
    font-size: 60px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

.mvp-price-details {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.price-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.price-detail-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* CTA Buttons */
.mvp-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.mvp-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    background: var(--gradient);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.mvp-primary-cta:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.mvp-primary-cta svg {
    transition: transform 0.3s ease;
}

.mvp-primary-cta:hover svg {
    transform: translateX(4px);
}

.mvp-secondary-cta {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: transparent;
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mvp-secondary-cta:hover {
    background: rgba(139, 92, 246, 0.05);
    transform: translateY(-2px);
}

/* MVP Features Section */
.mvp-features {
    margin: 100px 0;
    position: relative;
    z-index: 1;
}

.mvp-section-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.mvp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.mvp-feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mvp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.mvp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 92, 246, 0.3);
}

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

.mvp-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.mvp-feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.mvp-feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Why Section */
.mvp-why-section {
    margin: 100px 0;
    position: relative;
    z-index: 1;
}

.mvp-why-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mvp-why-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mvp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mvp-why-item {
    position: relative;
    padding-left: 80px;
}

.why-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    font-size: 24px;
    font-weight: 800;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.why-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Process Timeline */
.mvp-process {
    margin: 100px 0;
    position: relative;
    z-index: 1;
}

.mvp-process-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 64px;
}

.mvp-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.mvp-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 64px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.timeline-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}

.timeline-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.timeline-content li:last-child {
    margin-bottom: 0;
}

.timeline-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Final CTA Section */
.mvp-final-cta {
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.mvp-cta-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mvp-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.mvp-cta-content {
    flex: 1;
}

.mvp-cta-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.mvp-cta-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.mvp-cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.cta-feature svg {
    color: var(--primary);
    flex-shrink: 0;
}

.mvp-cta-action {
    flex-shrink: 0;
    text-align: center;
}

.mvp-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 20px 40px;
    background: var(--gradient);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    white-space: nowrap;
}

.mvp-cta-button:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.mvp-cta-button svg {
    transition: transform 0.3s ease;
}

.mvp-cta-button:hover svg {
    transform: translateX(4px);
}

.mvp-cta-note {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .mvp-section {
        padding: 80px 0;
    }

    .mvp-title {
        font-size: 44px;
    }

    .mvp-subtitle {
        font-size: 18px;
    }

    .price-amount {
        font-size: 56px;
    }

    .mvp-section-title {
        font-size: 32px;
    }

    .mvp-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .mvp-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .mvp-section {
        padding: 60px 0;
    }

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

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

    .mvp-badge {
        font-size: 12px;
        padding: 8px 14px;
        max-width: 85%;
    }

    .mvp-price-highlight {
        padding: 32px 24px;
    }

    .price-currency {
        font-size: 24px;
    }

    .price-amount {
        font-size: 48px;
    }

    .price-period {
        font-size: 16px;
    }

    .mvp-price-details {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .mvp-cta-group {
        flex-direction: column;
    }

    .mvp-primary-cta,
    .mvp-secondary-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px;
    }

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

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

    .mvp-feature-card {
        padding: 24px;
    }

    .mvp-why-grid {
        grid-template-columns: 1fr;
    }

    .mvp-why-item {
        padding-left: 0;
        padding-top: 80px;
    }

    .why-number {
        left: 50%;
        transform: translateX(-50%);
    }

    .why-content {
        text-align: center;
    }

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

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }

    .timeline-content {
        padding: 24px;
    }

    .mvp-cta-card {
        padding: 32px 24px;
    }

    .mvp-cta-content h3 {
        font-size: 24px;
    }

    .mvp-cta-content p {
        font-size: 16px;
    }

    .mvp-cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mvp-title {
        font-size: 28px;
    }

    .price-amount {
        font-size: 40px;
    }

    .mvp-section-title {
        font-size: 24px;
    }

    .mvp-badge {
        font-size: 11px;
        padding: 8px 12px;
        max-width: 90%;
        gap: 6px;
    }
    
    .mvp-badge-dot {
        width: 6px;
        height: 6px;
    }
}

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

