/* ─── hero ───────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    background-color: var(--bg-1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    gap: 32px;
}

.hero-graph {
    position: absolute;
    width: 60vw;
    height: auto;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.40;
}

.hero-logo {
    position: relative;
    z-index: 2;
    width: 50vw;
    height: auto;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-tagline {
    font-size: 14pt;
    font-weight: 300;
    letter-spacing: -1px;
}

.hero-byline {
    font-size: 13pt;
    font-weight: 350;
    color: var(--text-dim);
    font-style: italic;
    letter-spacing: -0.5px;
}

/* ─── testimonials ───────────────────────────────────────────────────────── */
.testimonials {
    background-color: var(--bg-2);
    padding: 40px 8vw;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
    align-items: stretch;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
}

.testimonial-card blockquote {
    font-size: 16pt;
    font-weight: 300;
    letter-spacing: -1px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 13pt;
    font-weight: 400;
    color: var(--blue);
    font-style: normal;
    letter-spacing: -0.5px;
}

.testimonials-cta {
    text-align: center;
    padding-top: 16px;
}

.testimonials-cta a {
    font-size: 14pt;
    color: var(--green);
    letter-spacing: -1px;
}

.testimonials-cta a:hover {
    color: var(--blue);
}

/* ─── problem statement ──────────────────────────────────────────────────── */
.problem-section {
    position: relative;
    background-color: var(--bg-0);
    padding: 80px 18vw;
    overflow: hidden;
}

.problem-section-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0.22;
    z-index: 0;
}

.problem-section p {
    position: relative;
    z-index: 1;
    font-size: 17pt;
}

.problem-section p + p {
    margin-top: 20px;
}

/* ─── how we work ────────────────────────────────────────────────────────── */
.how-we-work {
    position: relative;
    background-color: var(--bg-1);
    padding: 80px 8vw;
    overflow: hidden;
}

.how-we-work-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0.20;
    z-index: 0;
}

.how-we-work h1,
.cards-grid,
.how-we-work-closing {
    position: relative;
    z-index: 1;
}

.how-we-work h1 {
    margin-bottom: 48px;
}

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

.card {
    background-color: var(--bg-card);
    border-radius: 10px;
    padding: 36px 28px;
}

.card h3 {
    font-size: 1.3em;
    margin-bottom: 16px;
}

.card p {
    font-size: 13pt;
}

.how-we-work-closing {
    font-style: italic;
    color: var(--white);
    font-weight: 400;
    font-size: 15pt;
    padding-left: 24px;
    border-left: 2px solid var(--blue);
}

/* ─── our work / about us split panels ───────────────────────────────────── */
.split-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 50vh;
}

.split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8vw;
    gap: 24px;
}

.split-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.split-image img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

/* about us left panel — h1 overlaid on background image */
.split-image-bg {
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}

.split-image-bg h1 {
    position: absolute;
    top: 50px;
    left: 60px;
    z-index: 2;
}

.about-bg-image {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    z-index: 1;
}

/* ─── cta ────────────────────────────────────────────────────────────────── */
.cta-section {
    text-align: center;
    padding: 80px 8vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-section p {
    max-width: 680px;
}

/* ─── responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .testimonials-grid,
    .cards-grid,
    .split-panel {
        grid-template-columns: 1fr;
    }

    .split-panel .split-image {
        order: -1;
    }

    .testimonial-card {
        grid-template-rows: auto auto;
        height: auto;
    }

    .split-image-bg {
        min-height: 40vw;
    }

    .split-image-bg h1 {
        position: relative;
        top: auto;
        left: auto;
        padding: 30px 30px 0;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
        gap: 16px;
    }

    .hero-logo {
        width: 92vw;
    }

    .hero-graph {
        width: 100vw;
    }

    .hero-tagline {
        font-size: 12pt;
        padding: 0 6vw;
    }

    .problem-section {
        padding: 60px 8vw;
    }

    .how-we-work,
    .testimonials,
    .cta-section {
        padding: 60px 6vw;
    }
}