/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors from logo */
    --primary-green: #4A7C59;
    --accent-gold: #B8965F;
    --dark-brown: #3E2723;
    --light-cream: #F5F5DC;
    --tech-cyan: #00BCD4;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-dark: #2C3E50;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
}

/* Elegant headings */
h1, h2, h3, .hero-title, .section-title, .cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.5px;
}

h1, .hero-title {
    font-weight: 800;
}

h2, .section-title {
    font-weight: 700;
}

h3 {
    font-weight: 600;
}

/* Refined body text */
p, .btn, a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.btn {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

/* Smaller logo when scrolled */
.navbar.scrolled .logo {
    height: 50px;
}

.logo:hover {
    filter: drop-shadow(0 4px 14px rgba(74, 124, 89, 0.4));
    transform: scale(1.03);
}

/* Smaller logo when scrolled */
.navbar {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

/* Smaller logo when scrolled */
.navbar.scrolled .logo {
    height: 50px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-cta {
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--white) 100%);
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-brown);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background: var(--dark-brown);
    border-color: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 124, 89, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.hero-trust {
    color: var(--gray-dark);
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-brown);
    font-weight: 700;
}

/* Problem Section */
.problem {
    background: var(--gray-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.problem-conclusion {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-dark);
}

/* Different Section */
.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.different-card {
    text-align: center;
    padding: 40px;
}

.different-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.different-card h3 {
    color: var(--primary-green);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

/* Services Section */
.services {
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-left-color: var(--accent-gold);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.services-note {
    text-align: center;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Proof Section */
.case-study {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.case-study-header h3 {
    color: var(--dark-brown);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.case-study-content {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.case-study-challenge h4,
.case-study-solution h4,
.case-study-results h4 {
    color: var(--primary-green);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.result-stat {
    text-align: center;
    padding: 20px;
    background: var(--light-cream);
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* Case Study Container - Uniform */
.case-study {
    max-width: 900px;
    margin: 0 auto 80px auto;
    background: var(--white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Consistent spacing between multiple case studies */
.case-study + .case-study {
    margin-top: 0;
}

/* Case Study Header */
.case-study-header h3 {
    color: var(--dark-brown);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

/* Case Study Content Grid */
.case-study-content {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

/* Quote Styling - Uniform */
.case-study-quote {
    background: var(--light-cream);
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    padding: 35px 45px;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-top: 40px;
    margin-bottom: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    position: relative;
}

.case-study-quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.95rem;
}

/* Ideal Client Section */
.ideal-client {
    background: var(--light-cream);
}

.ideal-client-content {
    max-width: 800px;
    margin: 0 auto;
}

.ideal-client-list {
    margin-bottom: 40px;
}

.ideal-item {
    padding: 16px;
    margin-bottom: 12px;
    background: var(--white);
    border-radius: 8px;
    font-size: 1.1rem;
}

.not-a-fit {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--primary-green);
}

.not-a-fit h3 {
    color: var(--dark-brown);
    margin-bottom: 12px;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Process Section */
.process {
    background: var(--gray-light);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.process-step {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.step-duration {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 12px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-brown) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta .btn-primary {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.final-cta .btn-primary:hover {
    background: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
}

.cta-trust {
    margin-top: 20px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-brown);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 300px;
    margin-bottom: 150px;
    
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-copy {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .problem-grid,
    .different-grid,
    .services-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .case-study {
        padding: 30px 20px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .logo {
        height: 40px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-title {
    animation: fadeIn 0.8s ease-out;
}
/* Branded service titles */
.service-card h3.meta {
    background: linear-gradient(135deg, #0081FB 0%, #0064D1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3.reddit {
    color: #FF4500;
}

.service-card h3.google {
    background: linear-gradient(90deg, 
        #4285F4 0%, 
        #EA4335 33%, 
        #FBBC05 66%, 
        #34A853 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Pricing Section */
.pricing-section {
    background: var(--white);
    padding: 80px 0;
}

.pricing-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--gray-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.pricing-component {
    background: var(--light-cream);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--primary-green);
}

.pricing-component h3 {
    color: var(--dark-brown);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.price-range {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.price-description {
    margin-bottom: 25px;
    line-height: 1.6;
}

.whats-included {
    list-style: none;
    padding: 0;
}

.whats-included li {
    padding: 8px 0;
    color: var(--gray-dark);
}

.typical-investment {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.typical-investment h3 {
    color: var(--dark-brown);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.investment-examples {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.investment-example {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
}

.total-highlight {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.3rem;
}

.pricing-notes {
    background: var(--white);
    padding: 30px;
    border-left: 4px solid var(--accent-gold);
    margin-bottom: 40px;
}

.pricing-notes p {
    margin-bottom: 15px;
}

.pricing-cta-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-brown);
}

.pricing-cta-button {
    text-align: center;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-examples {
        flex-direction: column;
    }
}
/* Consistent spacing between case studies */
.case-study {
    max-width: 900px;
    margin: 0 auto 80px auto;
    background: var(--white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.case-study + .case-study {
    margin-top: 80px;
}
/* Trust Bar Section */
.trust-bar-section {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--gray-dark);
}

.trust-icon {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 700;
}

.trust-text {
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .trust-bar {
        gap: 25px;
    }
    
    .trust-item {
        font-size: 0.9rem;
    }
}