/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #F8F6F3;
}

/* Top Banner */
.top-banner {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 12px 16px;
    font-size: 14px;
    display: none;
}

.banner-cta {
    color: #fff;
    background: #00a699;
    padding: 4px 12px;
    border-radius: 8px;
    text-decoration: none;
    margin-left: 8px;
    font-weight: 600;
    font-size: 13px;
}

/* Navigation */
.nav {
    background: #F8F6F3;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    font-weight: 900;
    font-size: 36px;
    background: #00a699;
    color: #fff !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
}

.logo:hover {
    background: #008c81;
    color: #fff !important;
}

.nav-left a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.nav-left a:hover {
    color: #666;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-right span {
    font-size: 14px;
    color: #666;
}

.nav-cta {
    background: #00a699;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.nav-cta:hover {
    background: #008c81;
}

/* Hero Section */
.hero {
    background: #fff;
    padding: 20px 40px 40px;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    margin-left: 0;
    color: #00a699;
}

.hero-subtitle {
    font-size: 28px;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 400;
}

.hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 24px;
}

.hero-cta {
    display: inline-block;
    background: #00a699;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.hero-cta:hover {
    background: #008c81;
}

.hero-note {
    font-size: 14px;
    color: #666;
    margin-top: 16px;
}

.hero-image {
    position: relative;
}

.placeholder-image {
    background: #e5e5e5;
    height: 370px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-stats {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding-left: 0;
    pointer-events: none;
}

.stat-overlay {
    background: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transform: translateX(-50%);
    pointer-events: auto;
    width: 220px;
}

.stat-offset {
    margin-left: 0;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: #666;
}

/* Logo Grid Section */
.logo-grid-section {
    padding: 80px 40px;
    background: #F8F6F3;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-container h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 48px;
    font-weight: 700;
    color: #000;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-item {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.recipient-name {
    font-weight: 600;
    color: #000;
    font-size: 18px;
    margin-bottom: 4px;
}

.recipient-location {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.recipient-project {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
}

/* Value Props Section */
.value-props {
    padding: 80px 40px;
    background: #fff;
}

.prop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.prop-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #000;
}

.prop-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Why This Section */
.why-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.why-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 40px;
    background: #F8F6F3;
}

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

.step-item {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Our Take Section */
.our-take {
    padding: 80px 40px;
    background: #F8F6F3;
}

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

.take-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

/* Why We're Doing This Section */
.why-doing {
    padding: 80px 40px;
    background: #fff;
}

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

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

/* Who's Behind This Section */
.who-behind {
    padding: 80px 40px;
    background: #F8F6F3;
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-item {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.founder-name {
    font-weight: 600;
    color: #000;
    font-size: 18px;
    margin-bottom: 4px;
}

.founder-location {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.founder-bio {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
}

/* FAQ Section */
.faq {
    padding: 80px 40px;
    background: #fff;
}

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

.faq-item {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 80px 40px;
    background: #F8F6F3;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #000;
}

.cta-section > p {
    font-size: 32px;
    color: #000;
    font-weight: 800;
    margin-bottom: 48px;
    line-height: 1.2;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.cta-button {
    background: #00a699;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.cta-button:hover {
    background: #008c81;
}

.cta-button.secondary {
    background: #fff;
    color: #333;
    border: 1px solid #e5e5e5;
}

.cta-button.secondary:hover {
    background: #fff;
    border-color: #00a699;
    color: #00a699;
}

/* Testimonials */
.testimonials {
    padding: 80px 40px;
    background: #f7f7f7;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: #e5e5e5;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
    font-size: 15px;
}

.author-title {
    font-size: 14px;
    color: #666;
}

/* Footer */
.footer {
    background: #00a699;
    color: #fff;
    padding: 64px 40px;
}

.footer-simple {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-tagline {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.footer-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-stats {
        position: relative;
        flex-direction: row;
        justify-content: center;
        gap: 16px;
        padding: 16px;
        margin-top: -60px;
    }

    .stat-overlay {
        transform: none;
        width: auto;
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
    }

    .nav-left {
        gap: 16px;
    }

    .nav-left a {
        font-size: 13px;
    }

    .nav-right span {
        display: none;
    }

    .hero {
        padding: 32px 20px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 16px;
    }

    .placeholder-image {
        height: 300px;
    }

    .image-stats {
        margin-top: -50px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .stat-overlay {
        padding: 12px 20px;
        width: 200px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .logo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .section-container h2 {
        font-size: 32px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-left {
        gap: 12px;
    }

    .nav-left a {
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 15px;
    }

    .stat-overlay {
        width: 180px;
    }
}
