/* ===================================
   Landing Page Styles
   Modern, compelling, conversion-focused
   =================================== */

.landing-page {
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

/* Navigation */
.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
    text-decoration: none;
}

.logo-text {
    font-family: 'Nothing You Could Do', cursive;
    font-size: 32px;
    color: white;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--primary) !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px 80px;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(25, 118, 210, 0.15);
    border: 1px solid rgba(25, 118, 210, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 14px;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, #a0c4ff 50%, #c4e0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.hero-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* Hero Visual / Mockup */
.hero-visual {
    flex: 1;
    max-width: 550px;
}

.hero-mockup {
    perspective: 1000px;
}

.mockup-window {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.mockup-window:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-header {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-content {
    display: flex;
    min-height: 300px;
}

.mockup-sidebar {
    width: 60px;
    background: rgba(25, 118, 210, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    height: 60px;
}

.mockup-card.small {
    height: 40px;
    width: 60%;
}

/* Social Proof */
.social-proof {
    padding: 40px 60px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
}

.proof-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.proof-text strong {
    color: white;
}

/* Problem Section */
.problem-section {
    padding: 120px 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-headline {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.strike {
    text-decoration: line-through;
    color: var(--text-secondary);
}

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

.section-highlight {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-light);
}

/* Features Section */
.features-section {
    padding: 100px 60px;
}

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

.section-title {
    font-size: 40px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(25, 118, 210, 0.3);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

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

/* AI Section */
.ai-section {
    padding: 100px 60px;
    background: linear-gradient(180deg, rgba(25, 118, 210, 0.05) 0%, transparent 100%);
}

.ai-content {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-text {
    flex: 1;
}

.ai-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

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

.ai-example {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.ai-example em {
    color: var(--primary-light);
    font-style: normal;
    font-weight: 500;
}

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

.ai-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.ai-features .check {
    color: #22c55e;
    font-weight: bold;
}

.ai-visual {
    flex: 1;
}

.ai-demo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-chat-bubble {
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 90%;
}

.ai-chat-bubble.user {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.ai-chat-bubble.assistant {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border-bottom-left-radius: 4px;
}

/* Security Section */
.security-section {
    padding: 100px 60px;
}

.security-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.security-item {
    text-align: center;
    flex: 0 0 160px;
}

.security-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.security-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.security-item p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Story Section */
.story-section {
    padding: 100px 60px;
    background: rgba(0, 0, 0, 0.3);
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.story-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 48px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Pricing Preview */
.pricing-preview {
    padding: 100px 60px;
    text-align: center;
}

.pricing-cards-preview {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 48px 0 32px;
    flex-wrap: wrap;
}

.price-card-mini {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px 32px;
    min-width: 160px;
    transition: transform 0.3s;
}

.price-card-mini:hover {
    transform: translateY(-4px);
}

.price-card-mini.featured {
    background: rgba(25, 118, 210, 0.15);
    border-color: var(--primary);
}

.price-card-mini h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.price-card-mini .price {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.price-card-mini .price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
}

.price-card-mini .desc {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Final CTA */
.final-cta {
    padding: 120px 60px;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(25, 118, 210, 0.1) 100%);
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer */
.landing-footer {
    padding: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.footer-brand {
    max-width: 250px;
}

.footer-logo {
    font-family: 'Nothing You Could Do', cursive;
    font-size: 28px;
    color: white;
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links h5 {
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-content {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .landing-nav {
        padding: 16px 20px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .hero-section {
        padding: 120px 20px 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        gap: 32px;
    }
    
    .pricing-cards-preview {
        flex-direction: column;
        align-items: center;
    }
    
    .section-headline,
    .section-title {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        max-width: 300px;
    }
}

