/* Custom CSS Variables */
:root {
    --primary-color: #8FB3B3;
    --secondary-color: #7A9B9B;
    --accent-color: #D6A77A;
    --text-dark: #333333;
    --text-light: #5C5C5C;
    --bg-light: #F8F5F2;
    --bg-secondary: #EAE4DC;
}

/* Base Styles */
body {
    font-family: 'Lexend', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lexend', sans-serif;
    color: var(--text-dark);
    font-weight: 600;
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Header */
.header {
    background-color: var(--bg-light);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar .d-flex {
    align-items: center;
    gap: 1rem;
}

.navbar .d-flex .nav-link {
    margin: 0;
    padding: 0.5rem 0;
}

.navbar .d-flex .btn {
    margin: 0;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-light);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-image {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 400px !important;
    height: 600px !important;
    margin: 0 auto;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.professional-avatar {
    font-size: 8rem;
    opacity: 0.8;
    color: var(--primary-color);
}

.chart-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 280px;
}

.chart-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.chart-graph {
    position: relative;
    height: 120px;
    width: 100%;
}

.line-chart {
    width: 100%;
    height: 100%;
    max-width: 200px;
    max-height: 100px;
}

/* Features Section */
.features {
    background-color: var(--bg-light);
}

.features-text {
    padding-right: 2rem;
}

.section-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-line {
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.features-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.features-text .section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.feature-card {
    transition: transform 0.3s ease;
    border: none;
    background-color: #EAE4DC;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

/* Feature Icons - Sober styling */
.feature-icon i {
    color: #333333 !important;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    opacity: 1;
    color: var(--primary-color) !important;
    transform: scale(1.05);
}

/* Professionals Section */
.professionals {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-light) 100%);
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.professional-card {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.professional-card:hover {
    transform: translateY(-5px);
}

.professional-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.professional-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 16px;
}

.professional-card:hover .professional-img {
    transform: scale(1.05);
}

.professional-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 0 0 16px 16px;
}

.professional-title {
    font-size: 1.4rem;
    color: white;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-light);
}

.pricing-text {
    padding-right: 2rem;
}

.pricing-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.pricing-text .section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-actions {
    margin-top: 2rem;
}

.pricing-card {
    background: #EAE4DC;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-radius: 30px;
}

.pricing-card.featured {
    background: #8FB3B3;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.pricing-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
}

.pricing-card.featured .card-title {
    color: #333333;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
}

.pricing-card.featured .price {
    color: #333333;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
    color: #5C5C5C;
}

.pricing-card.featured .period {
    color: #5C5C5C;
}

.pricing-note {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #5C5C5C;
}

.pricing-card.featured .pricing-note {
    color: #5C5C5C;
}

.pricing-features {
    margin-bottom: 1.5rem;
}

.feature {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: #5C5C5C;
}

.pricing-card.featured .feature {
    color: #5C5C5C;
}

.pricing-card .card-body {
    padding: 0rem;
}

.pricing-inner {
    background-color: var(--bg-light);
    border-radius: 30px;
    padding: 2rem 1.5rem 1.5rem;
    margin: 2rem 3px 3px 3px;
    height: calc(100% - 2rem - 3px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-price {
    margin-bottom: 2rem;
}

/* Social Proof Section */
.social-proof {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-light) 100%);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.proof-item {
    padding: 2rem;
}

.proof-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.stars {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.proof-icon {
    font-size: 3rem;
    margin-top: 1rem;
}

.media-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.media-logo {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: white;
}

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

.testimonial-content blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-source {
    font-weight: 600;
    color: var(--accent-color);
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #A67C52 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-actions .btn-primary {
    background-color: white;
    color: var(--accent-color);
}

.cta-actions .btn-secondary {
    border-color: white;
    color: white;
}

.cta-actions .btn-secondary:hover {
    background-color: white;
    color: var(--accent-color);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question:hover .faq-icon {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #8BAAAD;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--text-light);
}

.footer-copyright {
    color: #8BAAAD;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #8BAAAD;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-benefits {
        align-items: center;
    }
    
    .hero-image-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .chart-overlay {
        width: 250px;
        padding: 1rem;
    }
    
    .features-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .pricing-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .professionals-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}