/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6B46C1;
    --primary-dark: #553C9A;
    --primary-light: #8B5CF6;
    --secondary-color: #EC4899;
    --accent-color: #F59E0B;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-dark: #111827;
    --border-color: #E5E7EB;
    --gradient-1: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    --gradient-2: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
    --gradient-3: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.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;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(107, 70, 193, 0.1);
    border: 1px solid rgba(107, 70, 193, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 48px;
    animation: fadeInUp 1.2s ease;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    animation: fadeInUp 1.4s ease;
    flex-wrap: wrap;
}

.hero-app-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 1.6s ease;
    flex-wrap: wrap;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
}

.app-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.app-badge svg {
    color: var(--primary-color);
}

.badge-label {
    font-size: 12px;
    color: var(--text-light);
}

.badge-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Problem Section */
.problem-section {
    background: var(--bg-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.problem-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.feature-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Screenshots Section */
.screenshots-section {
    background: var(--bg-primary);
    padding: 100px 0;
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    margin-top: 48px;
    width: 100%;
    overflow: visible;
    z-index: 1;
}

.carousel-container {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    width: 100%;
    position: relative;
    display: block;
    cursor: grab;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.carousel-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 24px;
    width: max-content !important;
    align-items: stretch !important;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Carousel Card */
.carousel-card {
    flex: 0 0 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
    width: 260px !important;
    height: 620px !important;
    min-height: 620px !important;
    max-height: 620px !important;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    overflow: hidden !important;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex !important;
    flex-direction: column !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

.carousel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.carousel-card-header {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.carousel-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
    line-height: 1.3;
}

.carousel-card-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.carousel-card-image {
    padding: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 0;
    background: var(--bg-primary);
    overflow: hidden !important;
    position: relative;
    margin-top: auto;
}

.carousel-card-image .screenshot-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: bottom;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    flex-shrink: 0;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    color: var(--text-primary);
    pointer-events: auto;
    padding: 0;
    margin: 0;
}

.carousel-nav:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-nav:not(:disabled) {
    pointer-events: auto !important;
    cursor: pointer !important;
}

.carousel-prev {
    left: -60px;
}

.carousel-next {
    right: -60px;
}

@media (max-width: 1200px) {
    .carousel-prev {
        left: -24px;
    }
    
    .carousel-next {
        right: -24px;
    }
}

@media (max-width: 768px) {
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}


.carousel-nav svg {
    width: 24px;
    height: 24px;
}

/* Hide navigation on mobile */
/* Desktop-specific carousel card styles */
@media (min-width: 769px) {
    .carousel-card-header {
        padding: 16px 16px 4px 16px !important;
    }
    
    .carousel-card-image {
        padding: 4px 16px 16px 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-nav {
        display: none;
    }
    
    .carousel-card {
        flex: 0 0 220px !important;
        min-width: 220px !important;
        max-width: 220px !important;
        width: 220px !important;
        height: 520px !important;
        min-height: 520px !important;
        max-height: 520px !important;
        box-sizing: border-box !important;
    }
    
    .carousel-card-header {
        padding: 12px 12px 4px 12px;
    }
    
    .carousel-card-image {
        padding: 4px 12px 12px 12px;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Screenshots CTA */
.screenshots-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: 24px;
    border: 2px solid var(--border-color);
}

.screenshots-cta h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.screenshots-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .screenshots-cta {
        padding: 40px 24px;
    }
    
    .screenshots-cta h3 {
        font-size: 24px;
    }
    
    .carousel-card-title {
        font-size: 18px;
    }
    
    .carousel-card-description {
        font-size: 13px;
    }
}

/* How It Works Section */
.how-it-works-section {
    background: var(--bg-secondary);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    min-width: 80px;
}

.step-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.pricing-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, rgba(107, 70, 193, 0.02) 100%);
}

.pricing-card.featured-yearly {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(107, 70, 193, 0.05) 100%);
}

.pricing-card.featured-yearly .pricing-badge {
    background: var(--accent-color);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 24px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
}

.price-period {
    font-size: 18px;
    color: var(--text-secondary);
}

.pricing-savings {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-align: center;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 16px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.cta-note {
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Page Sections (About, Invest, Contact, Legal) */
.page-section {
    padding: 120px 0 100px;
}

/* About Page Styles */
.about-hero-section {
    padding: 0;
}

.about-hero {
    background: var(--gradient-1);
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.about-hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
    opacity: 0.95;
}

.about-hero-description {
    font-size: 20px;
    opacity: 0.9;
    color: white;
    line-height: 1.6;
}

.about-content {
    padding-top: 64px;
}

.about-section-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
    transition: all 0.3s ease;
    text-align: center;
}

.about-section-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.about-section-card .section-icon {
    font-size: 48px;
    margin: 0 auto 16px;
    display: block;
    text-align: center;
    width: fit-content;
}

.about-section-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 16px;
    color: var(--text-primary);
    text-align: center;
    width: 100%;
}

.about-section-card > p,
.about-section-card > ul,
.about-section-card ul {
    text-align: left;
}

.about-section-card > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.vision-card {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, rgba(107, 70, 193, 0.02) 100%);
    border-color: var(--primary-color);
}

.feature-grid-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-item-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-item div {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-section-card .problem-list,
.about-section-card .solution-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.problem-list li,
.solution-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.problem-list li:last-child,
.solution-list li:last-child {
    border-bottom: none;
}

.problem-list li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 20px;
}

.solution-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* Legal Page Hero Styles */
.legal-hero-section {
    padding: 0;
}

.legal-hero {
    background: var(--gradient-1);
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.legal-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.legal-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: inline-block;
}

.legal-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.legal-hero-subtitle {
    font-size: 22px;
    opacity: 0.95;
    color: white;
    margin-bottom: 16px;
}

.legal-hero .legal-updated {
    font-size: 16px;
    opacity: 0.8;
    color: white;
    font-style: italic;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-align: center;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
}

.about-content,
.invest-content,
.legal-content {
    line-height: 1.8;
}

.invest-content {
    padding-top: 64px;
}

.invest-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.invest-content ul {
    margin-bottom: 32px;
}

.invest-content li {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.8;
    padding-left: 8px;
}

/* General content headings - only direct children, not in cards */
.about-content > h2,
.invest-content > h2,
.legal-content > h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-content h3,
.invest-content h3,
.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.about-content p,
.invest-content p,
.legal-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-content ul,
.invest-content ul,
.legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.about-content li,
.invest-content li,
.legal-content li {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-section {
    padding: 80px 0 100px;
    background: var(--bg-secondary);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-primary);
    padding: 56px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.legal-content h1 {
    display: none;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-primary);
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.invest-hero-section {
    padding: 0;
}

.invest-hero {
    background: var(--gradient-1);
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.invest-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.invest-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.invest-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.invest-tagline {
    font-size: 22px;
    opacity: 0.95;
    color: white;
    line-height: 1.6;
}

.invest-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.highlight-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.highlight-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.highlight-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Market Size Cards (TAM, SAM, SOM) */
.market-size-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

@media (min-width: 1200px) {
    .market-size-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.market-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.market-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.market-card:hover::before {
    opacity: 1;
}

.market-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.market-icon {
    font-size: 32px;
}

.market-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.market-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.market-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.market-description {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 8px;
}

.market-growth {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.invest-content .market-insights {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 16px;
    margin-top: 40px;
    margin-bottom: 40px;
    border: 2px solid var(--border-color);
}

.invest-content .market-insights h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 20px;
}

.invest-content .market-insights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.invest-content .market-insights li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
}

.invest-content .market-insights li:last-child {
    border-bottom: none;
}

.invest-content .market-insights li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.tam-card {
    border-color: rgba(107, 70, 193, 0.3);
}

.tam-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.02) 0%, rgba(107, 70, 193, 0.05) 100%);
}

.sam-card {
    border-color: rgba(236, 72, 153, 0.3);
}

.sam-card:hover {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.02) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.som-card {
    border-color: rgba(245, 158, 11, 0.3);
}

.som-card:hover {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.02) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.revenue-table {
    overflow-x: auto;
    margin: 32px 0;
}

.revenue-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.revenue-table thead {
    background: var(--primary-color);
    color: white;
}

.revenue-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.revenue-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.revenue-table tbody tr:hover {
    background: var(--bg-secondary);
}

.revenue-table tbody tr:last-child td {
    border-bottom: none;
}

.cta-box {
    background: var(--gradient-1);
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-top: 64px;
}

.cta-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    color: white;
}

.cta-box .btn {
    background: white;
    color: var(--primary-color);
}

.cta-box .btn:hover {
    background: rgba(255, 255, 255, 0.95);
}

/* Contact Page Styles */
.contact-page-section {
    padding: 0;
}

.contact-hero {
    background: var(--gradient-1);
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.contact-hero-subtitle {
    font-size: 22px;
    opacity: 0.95;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 0;
}

.contact-info-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    height: fit-content;
}

.contact-info-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.contact-info-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-info-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.contact-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-item-content {
    flex: 1;
}

.contact-item-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.contact-item-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.contact-link svg {
    transition: transform 0.3s ease;
}

.contact-link:hover svg {
    transform: translateX(4px);
}

.contact-form-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.contact-form {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.investor-form {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.investor-form-section {
    margin-top: 64px;
    padding-top: 64px;
    border-top: 2px solid var(--border-color);
}

.investor-form-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.required {
    color: #EF4444;
}

.error-message {
    display: none;
    color: #EF4444;
    font-size: 14px;
    margin-top: 6px;
    font-weight: 500;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #EF4444;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #10B981;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message {
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.6;
    animation: slideIn 0.3s ease;
}

.form-message-success {
    background: #D1FAE5;
    border: 2px solid #10B981;
    color: #065F46;
}

.form-message-error {
    background: #FEE2E2;
    border: 2px solid #EF4444;
    color: #991B1B;
}

.form-message strong {
    font-weight: 600;
    margin-right: 8px;
}

.form-message a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.form-success {
    background: #D1FAE5;
    border: 2px solid #10B981;
    color: #065F46;
    padding: 20px;
    border-radius: 12px;
    margin-top: 24px;
    text-align: center;
    font-size: 16px;
}

.form-success a {
    color: #065F46;
    font-weight: 600;
    text-decoration: underline;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-light);
    background: var(--bg-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-primary);
    box-shadow: 0 0 0 4px rgba(107, 70, 193, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-form .btn {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
}

.contact-form .btn svg {
    transition: transform 0.3s ease;
}

.contact-form .btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 40px;
    }

    .contact-hero-subtitle {
        font-size: 18px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 32px 24px;
    }

    .page-content h1 {
        font-size: 36px;
    }

    .about-hero h1,
    .legal-hero h1 {
        font-size: 40px;
    }

    .about-hero-subtitle {
        font-size: 22px;
    }

    .about-hero-description,
    .legal-hero-subtitle {
        font-size: 18px;
    }

    .about-section-card {
        padding: 32px 24px;
    }

    .feature-grid-mini {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 40px 24px;
    }

    .legal-icon {
        font-size: 48px;
    }

    .invest-hero h1 {
        font-size: 36px;
    }

    .invest-tagline {
        font-size: 18px;
    }

    .invest-content h2 {
        font-size: 28px;
    }

    .invest-highlights {
        grid-template-columns: 1fr;
    }

    .market-size-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .investor-form-section h2 {
        font-size: 28px;
    }

    .revenue-table {
        font-size: 14px;
    }

    .revenue-table th,
    .revenue-table td {
        padding: 12px 8px;
    }
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-stats {
        gap: 32px;
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .step-item {
        flex-direction: column;
        gap: 16px;
    }

    .step-number {
        min-width: auto;
    }

    .cta-title {
        font-size: 36px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

