.results-dark-theme {
    /* background-color: #10003b; */
    background: radial-gradient(closest-corner, #1e3a8a 0%, #172554 100%);
    /* Blue-900 to Blue-950 */
    color: #ffffff;
    padding: 5em 0;
    width: 100%;
}

.results-inner-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.results-dark-theme .results-headline {
    color: #ffffff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.results-dark-theme .results-subheadline {
    color: white;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    text-transform: none;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-align: center;
}

.hero {
    margin-top: 70px;
    /* Offset for fixed navbar */
    min-height: calc(100vh - 70px);
    /* Full viewport height minus navbar */
    padding: 0;
    /* Removed padding for full-width marquee */
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Ensure horizontal centering of flex children */
}

.hero-container {
    max-width: 1100px;
    margin: auto;
    /* Center vertically and horizontally */
    padding: var(--spacing-2xl) var(--spacing-md) 0;
    /* Added top padding for spacing from navbar */
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-label {
    position: relative;
    display: inline-block;
    padding: 0.65rem 1.75rem;
    background-color: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.hero-label span {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    font-weight: var(--font-weight-black);
    letter-spacing: 1.5px;
    color: var(--color-black);
    text-transform: uppercase;
}

.light-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.4), transparent);
    animation: sweep 3s infinite;
    z-index: 1;
}

@keyframes sweep {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hero-headline {
    font-size: clamp(2.3rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    color: #424955FF;
    white-space: normal;
    overflow: visible;
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-headline .highlight {
    color: var(--color-primary);
    /* Use global primary blue */
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #424955FF;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    overflow: visible;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.trust-bar {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: nowrap;
    padding: 0.6rem 1.4rem;
    background: transparent;
    border: 1.5px solid rgba(37, 99, 235, 0.5);
    /* Blue-500 */
    border-radius: 8px;
    white-space: normal;
    text-align: center;
    max-width: 90%;
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(37, 99, 235, 0.1) 20%,
            /* Blue */
            rgba(37, 99, 235, 0.3) 50%,
            rgba(37, 99, 235, 0.1) 80%,
            transparent 100%);
    animation: sweep-glow 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.trust-bar span {
    position: relative;
    z-index: 2;
}

@keyframes sweep-glow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.trust-item.desktop-only {
    display: flex;
}

.trust-item.mobile-only {
    display: none;
}

.star-container {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star {
    width: 15px;
    height: 15px;
    fill: currentColor;
    display: block;
}

.star-full {
    color: var(--color-primary);
    /* Blue */
}

.star-half {
    fill: url(#half-star-gradient);
}

.rating-number {
    font-size: 0.95rem;
    font-weight: var(--font-weight-black);
    color: var(--color-black);
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.trust-text {
    font-size: 0.8rem;
    color: var(--color-gray-dark);
    font-weight: var(--font-weight-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.trustpilot-star {
    width: 15px;
    height: 15px;
    fill: var(--color-primary);
    /* Blue */
    display: block;
}

.whop-logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.whop-text {
    font-size: 1rem;
    font-weight: var(--font-weight-black);
    color: var(--color-black);
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.user-avatars {
    display: flex;
    align-items: center;
    position: relative;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    object-fit: cover;
    position: relative;
}

.user-avatar:not(:first-child) {
    margin-left: -12px;
}

.trust-divider {
    display: none;
}

.video-container {
    position: relative;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto var(--spacing-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.wistia-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.wistia_responsive_padding {
    padding: 0 !important;
    position: relative;
}

.wistia_responsive_wrapper {
    height: 100% !important;
    left: 0;
    position: absolute !important;
    top: 0;
    width: 100% !important;
}

.wistia_embed {
    height: 100% !important;
    position: relative !important;
    width: 100% !important;
}

.wistia_embed video {
    object-fit: contain !important;
}

.wistia_responsive_padding,
.wistia_responsive_wrapper,
.wistia_embed,
.wistia-video,
.video-container {
    background: none !important;
    background-color: transparent !important;
}

.wistia_click_to_play {
    background-color: rgba(0, 0, 0, 0.7) !important;
    border-radius: 50% !important;
}

.wistia_playbar {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.wistia_playbar_progress {
    background-color: #ffffff !important;
}

.hero .cta-button {
    margin-top: var(--spacing-lg);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem 3rem;
    color: var(--color-black);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    /* Removed pulse */
    opacity: 0;
}

.hero .cta-button:hover {
    color: var(--color-black);
    /* Standard hover effect */
    transform: translateY(-2px);
    opacity: 1;
    /* Keep this to ensure visibility after animation fill mode */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 222, 4, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(254, 222, 4, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(254, 222, 4, 0);
    }
}

.scroll-indicator {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-medium);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 1024px) {
    .hero-headline {
        white-space: normal;
        font-size: clamp(1.65rem, 4.5vw, 2.25rem);
        margin-left: 0;
    }

    .hero-subheadline {
        white-space: normal;
    }

    .video-container {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 60px;
        /* Offset for smaller mobile navbar */
        min-height: calc(100vh - 60px);
        /* Adjust height for mobile */
        padding: 0 var(--spacing-sm);
    }

    .hero-label {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
        border: 1.5px solid rgba(0, 0, 0, 0.4);
        margin-bottom: var(--spacing-xs);
    }

    .hero-headline {
        font-size: clamp(1rem, 5.5vw, 1.85rem);
        white-space: normal;
        line-height: 1.25;
        /* margin-bottom: var(--spacing-xs); */
        margin-left: 0;
    }

    .hero-subheadline {
        font-size: clamp(0.9rem, 3.5vw, 1.15rem);
        white-space: normal;
        margin-bottom: var(--spacing-sm);
    }

    .trust-bar {
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        max-width: 95%;
    }

    @media (max-width: 320px) {
        .trust-bar {
            padding: 0.4rem 0.6rem;
        }

        .trust-text,
        .trust-item span {
            font-size: 0.65rem !important;
        }
    }

    .trust-item.desktop-only {
        display: none;
    }

    .trust-item.mobile-only {
        display: flex;
    }

    .star {
        width: 14px;
        height: 14px;
    }

    .trust-text {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }

    .rating-number {
        font-size: 0.85rem;
    }

    .video-container {
        max-width: 100%;
        width: 100%;
        margin: 0 auto var(--spacing-md);
        border-radius: var(--radius-md);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    .hero .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .trust-bar {
        gap: 0.4rem;
        padding: 0.5rem 0.8rem;
    }

    .star {
        width: 12px;
        height: 12px;
    }

    .trust-text {
        font-size: 0.6rem;
    }

    .rating-number {
        font-size: 0.8rem;
    }

    .video-container {
        border-radius: 8px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .hero .cta-button {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
}

/* Pain Points Section */
.hero-pain-points {
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pain-points-list {
    display: flex;
    flex-direction: column;
}

.pain-point-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.pain-point-item:hover {
    background-color: #fff5f5;
    /* Light reddish/pink highlight */
}

.pain-point-icon {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--color-primary);
    /* Was red #de3b40 */
}

.pain-point-icon svg {
    display: block;
    width: 2rem;
    height: 2rem;
}

.pain-point-item p {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    font-weight: 500;
    color: var(--color-gray-dark);
    line-height: 1.5;
    margin: 0;
}

.pain-point-quote-block {
    background-color: var(--color-gray-light);
    /* Was #fff7ed */
    border-left: 4px solid var(--color-secondary);
    /* Was #f97316 */
    padding: 2.5rem;
    border-radius: 4px 12px 12px 4px;
    margin: 1.5rem 0;
}

.pain-point-quote-block p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: var(--color-secondary);
    /* Was #431407 */
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.pain-point-cta {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    /* Increased gap slightly */
    color: var(--color-primary-dark);
    /* Blue-700 */
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-top: 1rem;
    text-align: start;
}

.cta-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    /* Blue check */
    flex-shrink: 0;
    margin-top: 4px;
    /* Visual alignment */
}

.cta-check-icon svg {
    width: 24px;
    height: 24px;
}

.process-cta-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.cta-button-green {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
}

.cta-button-green:hover {
    background-color: var(--color-primary-dark) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
}

@media (max-width: 768px) {
    .hero-pain-points {
        margin-top: 3rem;
        gap: 0.75rem;
    }

    .pain-point-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .pain-point-item p {
        font-size: 1rem;
    }

    .pain-point-quote-block {
        padding: 1.5rem;
    }

    .pain-point-quote-block p {
        font-size: 1rem;
    }

    .pain-point-cta {
        font-size: 1.15rem;
    }
}

.hero-closing-text {
    font-size: clamp(1.25rem, 2.75vw, 1.5rem);
    color: var(--color-black);
    font-weight: 700;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    text-align: center;
}

/* Results Section */
.results-section {
    margin-top: 5rem;
    text-align: center;
}

.results-headline {
    color: #ef4444;
    /* Red color similar to image */
    font-size: clamp(1.25rem, 2.75vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.results-subheadline {
    color: var(--color-black);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.calendar-image-container {
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.calendar-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Results Section Timeline */
.results-timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    padding-left: 20px;
    /* Space for the line */
}

.results-timeline::before {
    content: '';
    position: absolute;
    left: 45px;
    /* Aligned with circle centers */
    top: 0;
    bottom: 0;
    width: 1.5px;
    /* Thinner as requested */
    background-color: #ffffff;
    /* White color for the line */
    opacity: 0.8;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #ffe600;
    /* border: 1px solid #ffe600; */
    /* indigo-500 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: #141414;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timeline-card {
    background-color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-align: left;
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.month-tag {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.result-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.result-highlight {
    color: #ef4444;
    /* Red highlight */
    font-weight: 800;
}

@media (max-width: 768px) {
    .results-timeline {
        padding-left: 0;
    }

    .results-timeline::before {
        left: 20px;
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline-card {
        padding: 1.25rem 1.5rem;
    }

    .result-text {
        font-size: 1rem;
    }
}


.meeting-proof-container {
    margin-top: 1.5rem;
    /* Small gap as requested */
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.meeting-proof-image {
    width: 100%;
    height: auto;
    display: block;
}

.meeting-proof-caption {
    color: #4ade80;
    /* Brighter green for contrast on dark blue */
    font-weight: 700;
    font-size: clamp(1.25rem, 2.75vw, 1.5rem);
    text-align: center;
    margin-top: 1rem;
}

.final-cta-section {
    margin-top: 0;
    text-align: center;
    padding: 6rem 2rem;
    background-color: #ffffff17;
    /* Background now handled by wrapper */
    border-radius: var(--radius-lg);
}

.bridge-text {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 500;
    color: #ffffff;
    max-width: 850px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 4rem 1.5rem;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bridge-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .results-dark-theme .results-headline {
        white-space: normal;
        font-size: clamp(1.4rem, 5vw, 1.6rem);
        line-height: 1.3;
    }

    .results-dark-theme .results-subheadline {
        white-space: nowrap;
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .pain-point-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* Video Section */
.video-section {
    padding: var(--spacing-2xl) 0;
    width: 100%;
    position: relative;
    background-color: transparent;
}

.video-section .video-container {
    margin-bottom: 0;
}

/* Pain Points Section */
.pain-points-section {
    padding: var(--spacing-xl) 0;
    width: 100%;
    position: relative;
    background-color: #fff;
    /* Ensure it has a background if needed, or transparent */
}