/* ============================================
   LANDING PAGE STYLES - Project Scale Up
   ============================================ */

.landing-page {
    min-height: 100vh;
    background: #0a0908;
    color: #f5f5f4;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Header */
.landing-header {
    padding: 32px 48px;
    border-bottom: 1px solid rgba(212, 163, 42, 0.1);
}

.landing-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-logo {
    height: 40px;
    width: auto;
}

/* Hero */
.hero {
    padding: 100px 48px 80px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(212, 163, 42, 0.1);
    border: 1px solid rgba(212, 163, 42, 0.3);
    border-radius: 100px;
    color: #D4A32A;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.hero-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #d6d3d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 19px;
    line-height: 1.6;
    color: #a8a29e;
    max-width: 640px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 80px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.service-card {
    background: linear-gradient(180deg, rgba(35, 31, 32, 0.4) 0%, rgba(35, 31, 32, 0.2) 100%);
    border: 1px solid rgba(212, 163, 42, 0.15);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(212, 163, 42, 0.4);
    transform: translateY(-4px);
}

.service-card-featured {
    background: linear-gradient(180deg, rgba(212, 163, 42, 0.08) 0%, rgba(35, 31, 32, 0.3) 100%);
    border: 1px solid rgba(212, 163, 42, 0.4);
    box-shadow: 0 0 60px rgba(212, 163, 42, 0.1);
    position: relative;
}

.service-tier {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(168, 162, 158, 0.1);
    border: 1px solid rgba(168, 162, 158, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #a8a29e;
    width: fit-content;
}

.service-tier-featured {
    background: rgba(212, 163, 42, 0.15);
    border-color: rgba(212, 163, 42, 0.4);
    color: #D4A32A;
}

.service-name {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: #a8a29e;
    flex-grow: 0;
}

.service-price-block {
    padding: 20px 0;
    border-top: 1px solid rgba(212, 163, 42, 0.15);
    border-bottom: 1px solid rgba(212, 163, 42, 0.15);
    margin: 4px 0;
}

.price-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #a8a29e;
    margin-bottom: 6px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #D4A32A;
    letter-spacing: -0.5px;
    line-height: 1.2;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

.price-suffix {
    font-size: 14px;
    font-weight: 500;
    color: #a8a29e;
    letter-spacing: 0;
}

.service-price-cta {
    font-size: 28px;
    font-weight: 700;
    color: #D4A32A;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.price-note {
    font-size: 12px;
    color: #78716c;
    margin-top: 8px;
    font-weight: 500;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    font-size: 14px;
    color: #d6d3d1;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 8px;
    border-left: 2px solid #D4A32A;
    border-bottom: 2px solid #D4A32A;
    transform: rotate(-45deg);
}

.services-note {
    text-align: center;
    color: #78716c;
    font-size: 14px;
    line-height: 1.7;
    max-width: 800px;
    margin: 32px auto 0;
}

/* CTA Section */
.cta-section {
    padding: 60px 48px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-card {
    background: linear-gradient(180deg, rgba(212, 163, 42, 0.06) 0%, rgba(35, 31, 32, 0.3) 100%);
    border: 1px solid rgba(212, 163, 42, 0.25);
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.cta-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(212, 163, 42, 0.1);
    border: 1px solid rgba(212, 163, 42, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A32A;
}

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

.cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.cta-text {
    font-size: 15px;
    color: #d6d3d1;
    line-height: 1.6;
    margin-bottom: 12px;
}

.cta-text-italic {
    font-size: 14px;
    color: #a8a29e;
    line-height: 1.6;
    font-style: italic;
}

/* Footer */
.landing-footer {
    border-top: 1px solid rgba(212, 163, 42, 0.1);
    padding: 48px 48px 32px;
    background: #050403;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
}

.footer-logo {
    height: 36px !important;
    width: auto !important;
    max-width: 200px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 13px;
    color: #78716c;
    line-height: 1.5;
}

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

.footer-links a {
    color: #a8a29e;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #D4A32A;
}

.footer-legal {
    font-size: 12px;
    color: #57534e;
    line-height: 1.7;
}

.footer-legal p {
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-card {
        flex-direction: column;
        gap: 20px;
        padding: 32px 24px;
    }

    .hero-headline {
        font-size: 40px;
    }

    .hero-subheadline {
        font-size: 17px;
    }

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

    .hero {
        padding: 60px 24px 40px;
    }

    .services-section {
        padding: 40px 24px;
    }

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

    .landing-header {
        padding: 24px;
    }

    .landing-footer {
        padding: 32px 24px 24px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .service-price {
        font-size: 28px;
    }

    .service-price-cta {
        font-size: 24px;
    }
}
