.geo-hero-section {
    padding: 40px 20px 60px;
    background-color: var(--color-white);
}

.geo-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.geo-hero-copy {
    text-align: center;
}

.geo-hero-title {
    font-size: 3rem;
    text-transform: uppercase;
    font-family: var(--font-display);
    color: var(--color-black);
}

.geo-hero-subheading {
    font-size: 1.1rem;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.geo-hero-cta-wrap p {
    font-size: 0.95rem;
    color: var(--color-black);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.geo-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.geo-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.geo-problem-section {
    background-color: var(--color-header-blue);
    color: var(--color-white);
    padding: 50px 20px;
    text-align: center;
}

.geo-problem-kicker {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.geo-problem-title {
    font-size: 3.2rem;
    text-transform: uppercase;
    font-family: var(--font-display);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.geo-problem-copy {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

.geo-problem-copy ul {
    list-style: none;
    margin-top: 1rem;
}

.geo-problem-copy li {
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    position: relative;
}

.geo-problem-copy li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-light-blue);
    font-weight: 700;
}

.geo-stats-hook {
    background-color: var(--color-white);
    padding: 60px 20px;
    text-align: center;
}

.geo-stats-title {
    font-size: 2.4rem;
    text-transform: uppercase;
    font-family: var(--font-display);
    margin-bottom: 1.25rem;
}

.geo-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.geo-stat-card {
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background-color: var(--color-header-blue);
    color: var(--color-white);
    text-align: left;
}

.geo-services-section {
    padding: 80px 20px;
    background-color: var(--color-header-blue);
}

.geo-services-subtitle {
    text-align: center;
    color: var(--color-subtitle-yellow);
    text-transform: uppercase;
    font-family: var(--font-base);
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.geo-services-title {
    text-align: center;
    color: var(--color-white);
    text-transform: uppercase;
    font-family: var(--font-display);
    font-size: 2.6rem;
    margin-bottom: 2.5rem;
}

.geo-service {
    background-color: var(--color-header-blue);
    padding: 40px 0;
    border-top: 1px solid var(--color-link-blue);
}

.geo-service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Match homepage .product-video-wrapper: taller vertical frame for product embeds */
.geo-service-video {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding-bottom: 142.22%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.geo-service-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.geo-service-subtitle {
    color: var(--color-brand-yellow);
    text-transform: uppercase;
    font-family: var(--font-base);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.geo-service-title {
    color: var(--color-white);
    text-transform: uppercase;
    font-family: var(--font-display);
    font-size: 2rem;
}

.geo-service-desc,
.geo-service-note,
.geo-service-list li {
    color: var(--color-white);
}

.geo-service-note strong,
.geo-service-list li strong {
    color: var(--color-white);
}

.geo-service-list {
    list-style: none;
    margin: 1rem 0 1.75rem;
}

.geo-service-list li {
    position: relative;
    padding: 0.8rem 0 0.8rem 1.75rem;
    line-height: 1.7;
}

.geo-service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-light-blue);
    font-weight: 700;
}

.geo-testimonials-section {
    background-color: var(--color-white);
    padding: 80px 20px;
    text-align: center;
}

.geo-testimonials-subtitle {
    color: var(--color-light-blue);
    text-transform: uppercase;
    font-size: 2.1rem;
    font-family: var(--font-base);
}

.geo-testimonials-title {
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 3.5rem;
    font-family: var(--font-display);
    margin-bottom: 2rem;
}

.geo-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.geo-testimonial-card {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px var(--color-shadow);
    text-align: center;
}

.geo-testimonial-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin: 0 auto 1.5rem;
}

.geo-testimonial-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.geo-testimonial-placeholder-wrap {
    position: relative;
    padding-bottom: 56.25%;
    max-width: 100%;
    margin-bottom: 0;
}

.geo-testimonial-placeholder-box {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-header-blue);
    color: var(--color-white);
    font-family: var(--font-base);
    font-weight: 700;
    text-align: center;
    padding: 1rem;
}

.geo-testimonial-quote {
    font-style: italic;
    margin-bottom: 1rem;
}

.geo-testimonial-author {
    color: var(--color-light-blue);
    font-size: 0.95rem;
    line-height: 1.4;
}

.geo-testimonial-author strong {
    display: block;
    font-size: 1.25rem;
}

.geo-service-area {
    background-color: var(--color-header-blue);
    color: var(--color-white);
    padding: 80px 20px;
}

.geo-service-area-title {
    font-size: 2.8rem;
    text-transform: uppercase;
    font-family: var(--font-display);
    color: var(--color-white);
    text-align: center;
    margin-bottom: 1rem;
}

.geo-service-area-desc {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.geo-service-area-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.geo-service-area-list li {
    background-color: var(--color-white);
    color: var(--color-header-blue);
    font-weight: 700;
    border-radius: 999px;
    padding: 0.45rem 1rem;
}

.geo-final-cta {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--color-white);
}

.geo-final-cta h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-family: var(--font-display);
}

.geo-final-cta p {
    margin-bottom: 0.75rem;
}

.geo-final-cta .geo-contact-context {
    color: var(--color-link-blue);
    font-weight: 700;
    margin-top: 0.75rem;
    margin-bottom: 0;
    display: inline-block;
    padding: 0.35rem 0.6rem;
}

@media (max-width: 968px) {
    .geo-hero-content,
    .geo-service-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .geo-service-content > * {
        min-width: 0;
    }

    .geo-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .geo-stats-grid {
        grid-template-columns: 1fr;
    }

    .geo-hero-title,
    .geo-problem-title,
    .geo-services-title,
    .geo-testimonials-title,
    .geo-service-area-title,
    .geo-final-cta h2 {
        font-size: 1.95rem;
    }

    .geo-services-subtitle,
    .geo-testimonials-subtitle {
        font-size: 1.25rem;
    }

    .geo-hero-section {
        padding: 28px 0 40px;
    }

    .geo-problem-section,
    .geo-stats-hook,
    .geo-services-section,
    .geo-testimonials-section,
    .geo-service-area,
    .geo-final-cta {
        padding: 44px 0;
    }

    .geo-problem-copy li,
    .geo-service-list li {
        line-height: 1.55;
    }

    .geo-service-title {
        font-size: 1.65rem;
    }

    .geo-service-subtitle {
        font-size: 1rem;
    }

    .geo-service-video {
        max-width: min(400px, 100%);
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0.25rem;
    }

    .geo-testimonial-card {
        padding: 1rem;
    }

    .geo-service-area-list li {
        padding: 0.35rem 0.75rem;
        font-size: 0.9rem;
    }
}
