/* Marketing Landing Page Styles - Modern, Conversion-Optimized */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #14b8a6;
    --primary-dark: #0f766e;
    --primary-light: #5eead4;
    --secondary: #6366f1;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
    --gradient: linear-gradient(135deg, #14b8a6 0%, #6366f1 100%);
    --gradient-2: linear-gradient(135deg, #6366f1 0%, #8b5cf6 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);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

.container-marketing {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar-marketing {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(240, 253, 250, 0.98) 0%, rgba(224, 231, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.nav-brand:hover {
    opacity: 0.8;
}

.nav-brand .logo-img {
    height: 42px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.2px;
    transition: color 0.25s ease;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #14b8a6 0%, #6366f1 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav-primary {
    background: linear-gradient(135deg, #14b8a6 0%, #6366f1 100%);
    color: white;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.2px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.2);
    white-space: nowrap;
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    color: white;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    transition: background 0.2s;
}

.mobile-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero-marketing {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 25%, #99f6e4 50%, #5eead4 75%, #2dd4bf 100%);
}

.hero-background-marketing {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient);
    top: -300px;
    left: -300px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-2);
    bottom: -250px;
    right: -250px;
    animation-delay: 5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    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-container-marketing {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content-marketing {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-title-marketing {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.gradient-text-marketing {
    color: var(--text-dark);
}

.hero-subtitle-marketing {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-marketing {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary-large {
    background: var(--text-dark);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: #000000;
    color: white;
}

.btn-secondary-large {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary-large:hover {
    background: var(--text-dark);
    color: white;
}

.hero-stats-marketing {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.stat-item-marketing {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.stat-number-marketing {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-description-marketing {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-stats-marketing {
        gap: 32px;
        margin-top: 32px;
    }
    
    .stat-item-marketing {
        min-width: 100%;
        max-width: 100%;
    }
    
    .stat-number-marketing {
        font-size: 3rem;
    }
}

/* Social Proof */
.social-proof {
    padding: 40px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.social-proof-text {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 24px;
}

.social-proof-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-placeholder {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

/* Section Styles */
.section-header-marketing {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title-marketing {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-description-marketing {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.features-marketing {
    padding: 100px 0;
    background: var(--bg-white);
}

.features-grid-marketing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card-marketing {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}

.feature-card-marketing:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--text-dark);
}

.feature-icon-marketing {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.feature-title-marketing {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-description-marketing {
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works */
.how-it-works-marketing {
    padding: 100px 0;
    background: var(--bg-light);
}

.steps-marketing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step-card-marketing {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    position: relative;
}

.step-number-marketing {
    width: 64px;
    height: 64px;
    background: var(--text-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 24px;
}

.step-title-marketing {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-description-marketing {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials */
.testimonials-marketing {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-grid-marketing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card-marketing {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    margin-bottom: 16px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--text-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta-marketing {
    padding: 100px 0;
    background: var(--text-dark);
    color: white;
    text-align: center;
}

.cta-title-marketing {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.cta-description-marketing {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons-marketing {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-marketing .btn-primary-large {
    background: white;
    color: var(--text-dark);
}

.cta-marketing .btn-primary-large:hover {
    background: var(--bg-light);
}

.cta-marketing .btn-secondary-large {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-marketing .btn-secondary-large:hover {
    background: white;
    color: var(--text-dark);
}

/* Footer */
.footer-marketing {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-content-marketing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo-img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-description-marketing {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title-marketing {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links-marketing {
    list-style: none;
}

.footer-links-marketing li {
    margin-bottom: 12px;
}

.footer-links-marketing a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-marketing a:hover {
    color: white;
}

.social-links-marketing {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link-marketing {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.social-link-marketing:hover {
    color: white;
}

.footer-bottom-marketing {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(240, 253, 250, 0.98) 0%, rgba(224, 231, 255, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link:last-of-type {
        border-bottom: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .btn-nav-primary {
        margin-top: 16px;
        text-align: center;
        padding: 14px 24px;
    }
    
    .nav-container {
        padding: 0 24px;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title-marketing {
        font-size: 2.5rem;
    }

    .hero-subtitle-marketing {
        font-size: 1.125rem;
    }

    .section-title-marketing {
        font-size: 2rem;
    }

    .hero-stats-marketing {
        gap: 32px;
    }

    .features-grid-marketing,
    .steps-marketing,
    .testimonials-grid-marketing {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-hero-marketing {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 25%, #99f6e4 50%, #5eead4 75%, #2dd4bf 100%);
    text-align: center;
}

.about-hero-content-marketing {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title-marketing {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-hero-subtitle-marketing {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.founder-section-marketing {
    padding: 100px 0;
    background: var(--bg-white);
}

.founder-content-marketing {
    max-width: 900px;
    margin: 0 auto;
}

.founder-header-marketing {
    text-align: center;
    margin-bottom: 48px;
}

.founder-intro-marketing {
    margin-top: 24px;
    margin-bottom: 0;
}

.founder-name-marketing {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.founder-role-marketing {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 500;
}

.founder-story-marketing {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.founder-story-marketing p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.founder-story-marketing p:last-child {
    margin-bottom: 0;
}

.vision-section-marketing {
    padding: 100px 0;
    background: var(--bg-light);
}

.vision-content-marketing {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-text-marketing {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.vision-text-marketing:last-child {
    margin-bottom: 0;
}

.about-how-it-works-marketing {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-steps-marketing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.about-step-marketing {
    text-align: center;
}

.about-step-number-marketing {
    width: 64px;
    height: 64px;
    background: var(--text-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 24px;
}

.about-step-title-marketing {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.about-step-description-marketing {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.values-section-marketing {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-grid-marketing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card-marketing {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.value-card-marketing:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon-marketing {
    font-size: 3rem;
    margin-bottom: 24px;
}

.value-title-marketing {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.value-description-marketing {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .about-hero-title-marketing {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle-marketing {
        font-size: 1.125rem;
    }
    
    .founder-name-marketing {
        font-size: 1.5rem;
    }
    
    .founder-story-marketing p {
        font-size: 1rem;
    }
    
    .about-steps-marketing {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid-marketing {
        grid-template-columns: 1fr;
    }
}

