:root {
    --bg-dark: #FFFFFF;
    /* Un off-white un poco más oscuro y sofisticado */
    --bg-card: #FFFFFF;
    /* Pure white for cards to pop out */
    --text-primary: #222222;
    --text-secondary: #666666;
    --glow-color: rgba(255, 182, 193, 0.4);
    /* soft pink/peach glow */
    --border-overlay: rgba(0, 0, 0, 0.08);
    --bg-section-soft: #F8F2EC;
    --bg-section-strong: #F1E6DC;
    --accent-primary: #A96657;
    --accent-secondary: #D9B49F;
    --accent-strong: #8D5347;
    --accent-gold: #C79D5D;
    --global-bg-gradient: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 48%, #FFFFFF 100%);
    --section-soft-gradient: var(--global-bg-gradient);
    --section-mid-gradient: var(--global-bg-gradient);
    --section-light-gradient: var(--global-bg-gradient);

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    /* Soft white/pinkish elegant gradients for a premium feminine feel */
    background-image: var(--global-bg-gradient);
    background-attachment: fixed;
    animation: fadeInPage 1.2s ease-out forwards;
}

@keyframes fadeInPage {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(to bottom, rgba(206, 209, 217, 0.92) 0%, rgba(206, 209, 217, 0.42) 52%, rgba(206, 209, 217, 0) 100%);
    pointer-events: none;
    /* Let clicks pass through if needed */
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #111, #555);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(255, 255, 255, 1);
    /* Soft glow behind exact text */
}

/* Typography elements */
.highlight {
    color: var(--text-primary);
}

.highlight-yellow {
    color: #EBCB7A;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stats-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 4rem;
}

/* Animations */
.slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1rem 1rem;
    /* Compact mobile padding */
    background: #FFFFFF;
    border-radius: 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.badge-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 4px 16px 4px 6px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.price-countdown {
    width: min(100%, 820px);
    margin: -0.05rem auto 1rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    background: #ffffff;
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.price-countdown-copy {
    flex: 1 1 auto;
    max-width: none;
    display: grid;
    gap: 0.35rem;
    text-align: center;
}

.price-countdown p {
    width: 100%;
    margin: 0;
    color: #111111;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.28;
    text-transform: uppercase;
}

.price-countdown-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    justify-self: center;
    min-height: 22px;
    padding: 0.25rem 0.45rem;
    background: #111111;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
}

.price-countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.price-countdown-timer span {
    position: relative;
    min-width: 54px;
    min-height: 42px;
    border-radius: 0;
    background: transparent;
    border: 0;
    display: grid;
    place-items: center;
    padding: 0.22rem 0.35rem;
}

.price-countdown-timer span + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(0, 0, 0, 0.12);
}

.price-countdown-timer strong {
    color: #111111;
    font-size: 1.28rem;
    line-height: 1;
}

.price-countdown-timer small {
    color: var(--accent-strong);
    font-size: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .price-countdown {
        width: 100%;
        border-radius: 0;
        align-items: stretch;
        flex-direction: column;
        gap: 0.45rem;
        margin-bottom: 0.9rem;
        padding: 0.6rem;
    }

    .price-countdown p {
        max-width: none;
        text-align: center;
        font-size: 0.76rem;
    }

    .price-countdown-copy {
        max-width: none;
        justify-items: center;
        text-align: center;
    }

    .price-countdown-label {
        justify-content: center;
    }

    .price-countdown-timer {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.35rem;
    }

    .price-countdown-timer span {
        min-width: 0;
        min-height: 42px;
    }
}

.avatars {
    display: flex;
}

.avatar {
    width: 24px;
    height: 24px;
    background-color: #333;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-title {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    line-height: 1.3;
    font-weight: 800;
    color: #f5f6f8;
    letter-spacing: -1px;
    margin: 0 auto 2rem auto;
    max-width: 800px;
    text-wrap: balance;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.video-container {
    width: 100%;
    max-width: 860px;
    margin: 0 auto 0.85rem;
    position: relative;
    /* Removed aspect-ratio to use 16:9 padding inside iframe-wrapper instead */
}

/* Mac Window Styling */
.mock-mac-window {
    background: transparent;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.mac-header {
    display: none;
}

.mac-buttons {
    display: flex;
    gap: 8px;
}

.mac-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mac-buttons .close {
    background: #FF5F56;
}

.mac-buttons .minimize {
    background: #FFBD2E;
}

.mac-buttons .maximize {
    background: #27C93F;
}

.iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* Esto fuerza el aspecto 16:9 cl?sico de YouTube, eliminando franjas negras */
    height: 0;
    overflow: hidden;
    border-radius: 26px;
    background: #000;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
}

.iframe-wrapper iframe,
.iframe-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 26px;
}

.iframe-wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 108px;
    height: 46px;
    pointer-events: none;
    z-index: 4;
    border-bottom-right-radius: 26px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 34%, rgba(0, 0, 0, 0.98) 100%);
}

/* CTA Overlay inside the video player */
.video-cta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    /* Escondido por debajo */
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0 10px 4px 10px;
    /* Más abajo en el video */
}

.video-cta-overlay.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    /* Aparece de abajo hacia arriba */
}

.video-cta-overlay .primary-button {
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1.25rem; /* Mobile size */
    font-size: 0.85rem; /* Mobile size */
}

.video-cta-below {
    width: 100%;
    max-width: 800px;
    margin: 0.65rem auto 0.4rem;
    display: flex;
    justify-content: center;
    padding: 0 0.5rem;
}

.video-cta-below .primary-button {
    width: 100%;
    max-width: 520px;
}

@media (min-width: 1024px) {
    .video-cta-overlay .primary-button {
        padding: 1rem 2rem; /* Desktop size */
        font-size: 1.1rem;
        margin-bottom: 2px;
    }
}

.standalone-cta {
    padding: 0 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-container {
    color: var(--text-secondary);
    font-size: 1.1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    /* Much smaller gap on mobile */
    padding-top: 0;
}

@media (min-width: 1024px) {
    .cta-container {
        padding-top: 1.5rem;
        margin-top: 1rem;
    }
}

.scroll-indicator {
    margin: 0.45rem 0 0.25rem;
    color: var(--text-secondary);
}

.scroll-indicator svg {
    animation: bounceUpDown 1.5s infinite ease-in-out;
}

@keyframes bounceUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.hero-btn {
    margin-top: 0.5rem;
}

.method-highlight {
    width: 100%;
    max-width: 1120px;
    margin: 2.25rem auto 0;
    background: transparent;
    border: 0;
    border-radius: 18px;
    padding: 1.4rem 1.2rem 1.3rem;
    color: var(--text-primary);
    box-shadow: none;
}

.cta-container .method-highlight {
    margin: 0.9rem auto 1.15rem;
}

.method-title-wrap {
    background: transparent;
    border: 0;
    border-radius: 0;
    width: 100%;
    padding: 0 0.15rem;
}

.method-title {
    margin: 0;
    color: var(--text-primary);
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    font-size: clamp(1.1rem, 2.4vw, 2.1rem);
    line-height: 1.2;
    letter-spacing: 0.4px;
    width: 100%;
    max-width: none;
}

.method-title-accent {
    color: #ffc32c;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.method-list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
    align-items: center;
}

.method-list li {
    font-size: clamp(1.02rem, 2.2vw, 1.14rem);
    line-height: 1.35;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1px;
    padding: 0.2rem 0;
    justify-content: center;
    text-align: center;
}

.method-list li::before {
    content: '\2713';
    display: inline-block;
    flex-shrink: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2ea66f;
}

@media (max-width: 767px) {
    .hero {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .cta-container {
        margin-top: 0;
    }

    .video-container {
        max-width: none;
        margin-bottom: 0.95rem;
    }

    .iframe-wrapper,
    .iframe-wrapper iframe,
    .iframe-wrapper video {
        border-radius: 22px;
    }

    .iframe-wrapper::after {
        width: 72px;
        height: 44px;
        border-bottom-right-radius: 22px;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.82) 38%, rgba(0, 0, 0, 0.98) 100%);
    }

    .method-highlight {
        width: 100%;
        max-width: none;
        margin-top: 0.65rem;
        padding: 0.62rem 0.2rem 0.9rem;
        border-radius: 14px;
    }

    .method-title-wrap {
        width: 100%;
        padding: 0.1rem 0;
    }

    .method-title {
        font-size: clamp(0.9rem, 4.05vw, 1.06rem);
        line-height: 1.12;
        letter-spacing: 0;
        max-width: none;
        width: 100%;
    }

    .method-list {
        gap: 0.28rem;
        margin-top: 0.45rem;
        width: 100%;
        padding-inline: 0.1rem;
    }

    .method-list li {
        font-size: 0.92rem;
        gap: 0.42rem;
    }

    .method-list li::before {
        font-size: 0.72rem;
    }
}


/* Stats Section */
.stats-section {
    width: 100%;
    margin: 2rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 1rem 4rem;
    /* Soft white/gray transitioning background */
    background: var(--global-bg-gradient);
}

.stats-panel {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 2.2rem 1.2rem 2.1rem;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.08);
}

.stats-grid {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 850px) {
    .stats-panel {
        padding: 2.6rem 2rem 2.4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .results-section,
    .help-section {
        background: transparent;
    }

    .stats-panel {
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
    }

    .results-panel,
    .help-panel {
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        max-width: none;
        width: 100%;
    }

    .help-section::before,
    .help-section::after {
        display: none;
    }

    .final-cta {
        background: transparent;
    }

    .cta-card {
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        max-width: none;
        width: 100%;
    }

    .cta-card::after {
        display: none;
    }
}

.k-graphic {
    font-size: 4rem;
    font-weight: 800;
    font-style: italic;
    text-align: center;
    line-height: 1;
    background: linear-gradient(135deg, #FFB6C1, #FF9A9E);
    /* blushing pink */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 15px rgba(255, 182, 193, 0.6));
    margin-bottom: 1.5rem;
}

.stat-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 2.2rem 1.2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: none;
}

.stat-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    line-height: 1.1;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
}

.stat-suffix {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.stat-big {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.stat-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.stat-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.stats-disclaimer {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.78rem;
    color: #aaa;
    font-style: italic;
    letter-spacing: 0.1px;
}

/* Results Section */
.results-section {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 2.4rem 0.85rem 3.2rem;
    background: var(--global-bg-gradient);
}

.results-panel {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 2rem 0.8rem 1.8rem;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.08);
}

.results-heading,
.results-grid {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.results-section .section-title {
    margin-bottom: 0.9rem;
}

.results-heading {
    margin-bottom: 1.35rem;
    text-align: center;
}

.results-subtitle {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.7vw, 1.18rem);
    line-height: 1.45;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}

.results-grid.is-expanded {
    align-items: stretch;
}

@media (min-width: 720px) {
    .results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1080px) {
    .results-panel {
        padding: 2.8rem 2rem 2.3rem;
    }

    .results-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

}

.result-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.12);
}

.result-card.is-hidden {
    display: none;
}

.result-content {
    flex: 1;
    box-sizing: border-box;
    padding: 1rem 1rem 1.05rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
}

.result-content h3 {
    color: var(--text-primary);
    font-size: clamp(1.12rem, 4.8vw, 1.35rem);
    line-height: 1.05;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0;
}

.result-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.4;
    margin: 0;
}

.result-case-label {
    width: fit-content;
    color: #A96D5D !important;
    font-size: 0.72rem !important;
    font-weight: 900;
    line-height: 1 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.result-media-button {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: #f2eee9;
    cursor: pointer;
    text-align: left;
}

.result-media-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.28s ease;
}

.result-card:hover .result-media-button img {
    transform: scale(1.03);
}

.result-image-contain img {
    object-fit: contain;
    object-position: center;
    padding: 0.35rem;
    background: #f7f4f1;
}

.result-link-button {
    width: fit-content;
    border: 0;
    border-bottom: 2px solid #111111;
    padding: 0.15rem 0 0.08rem;
    background: transparent;
    color: #111111;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.results-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.4rem;
}

.results-more-button {
    min-width: min(100%, 260px);
    border: 0;
    border-radius: 8px;
    padding: 0.95rem 1.4rem;
    background: #111111;
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, background 0.2s ease;
}

.results-more-button:hover {
    background: #A96D5D;
    transform: translateY(-2px);
}

.results-more-button[hidden] {
    display: none;
}

.result-modal[hidden] {
    display: none;
}

.result-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.result-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.72);
}

.result-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    max-height: 92dvh;
    overflow: hidden;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.result-modal-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 2px solid #111111;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.result-modal-media {
    background: #f2eee9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.result-modal-media img {
    display: block;
    width: 100%;
    max-height: 38dvh;
    object-fit: contain;
    object-position: center;
}

.result-modal-copy {
    padding: 0.9rem 1rem 1rem;
}

.result-modal-copy h3 {
    margin: 0.28rem 0 0.5rem;
    color: #111111;
    font-size: clamp(1.05rem, 4.8vw, 1.35rem);
    line-height: 1.04;
    text-transform: uppercase;
}

.result-modal-copy p:not(.result-case-label) {
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.34;
}

.result-modal-cta {
    width: 100%;
    margin-top: 0.8rem;
}

body.result-modal-open {
    overflow: hidden;
}

@media (min-width: 720px) {
    .result-media-button {
        aspect-ratio: 4 / 5;
    }

    .result-content {
        padding: 1.1rem 1.15rem 1.15rem;
    }
}


/* Help Section */
.help-section {
    width: 100%;
    padding: 5.5rem 1rem 4.5rem;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.help-panel {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 2.2rem 1.2rem 2rem;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.08);
}

.help-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(26vw, 320px);
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(244, 246, 248, 0.9) 50%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.help-section::after {
    content: '';
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(180deg, rgba(244, 246, 248, 0.95) 0%, rgba(244, 246, 248, 0) 100%);
    pointer-events: none;
}

.help-layout {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.help-image-wrap {
    position: relative;
    min-height: 620px;
    border-radius: 8px;
    overflow: hidden;
}

.help-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.help-image.active {
    opacity: 1;
}

.help-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
}

.help-eyebrow {
    font-size: 1.42rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #E44C87;
    text-align: center;
}

.help-eyebrow-mobile {
    display: none;
}

.help-title {
    font-size: clamp(1.22rem, 1.55vw, 1.55rem);
    line-height: 1.4;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 31ch;
    text-align: center;
}

.help-benefits {
    width: 100%;
    max-width: 760px;
    margin-top: 0.6rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.help-benefit-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 0.95rem 0.9rem;
    text-align: left;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.help-benefit-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.help-benefit-card p {
    font-size: 0.86rem;
    line-height: 1.45;
    color: var(--text-secondary);
}

.help-desktop-note {
    display: block;
    text-align: center;
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 500;
    color: #555b65;
    max-width: 34ch;
    margin: 0.35rem auto 0;
}

.help-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
}

.help-closing {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 36ch;
}

@media (max-width: 767px) {
    .results-section {
        padding-bottom: 2rem;
    }

    .help-section {
        padding-bottom: 2rem;
    }

    .help-panel {
        padding: 1rem 0.8rem 1.1rem;
        border-radius: 18px;
    }
    
    .help-image-wrap {
        min-height: 620px;
        background: #f2f2f5;
        padding: 10px 0;
    }

    .help-image {
        object-fit: contain;
        object-position: center center;
        top: 10px;
        left: 0;
        width: 100%;
        height: calc(100% - 20px);
    }

    .help-benefits {
        width: 92%;
        margin-inline: auto;
        gap: 0.9rem;
    }

    .help-content {
        gap: 0.85rem;
    }

    .help-eyebrow {
        display: none;
    }

    .help-eyebrow-mobile {
        display: block;
        text-align: center;
        font-size: 1.2rem;
        font-weight: 800;
        letter-spacing: 0.8px;
        color: #E44C87;
        margin-bottom: 0.2rem;
    }

    .help-title {
        font-size: 1.14rem;
        max-width: none;
    }

    .help-benefit-card {
        text-align: center;
        min-height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1.15rem 1rem;
    }

    .help-desktop-note {
        font-size: 1rem;
        max-width: 30ch;
    }

    .help-points {
        font-size: 0.92rem;
    }

    .help-closing {
        font-size: 0.94rem;
        max-width: none;
    }
}

@media (min-width: 768px) and (max-width: 899px) {
    .help-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 2rem;
        align-items: start;
    }

    .help-image-wrap {
        min-height: 640px;
    }

    .help-content {
        gap: 1rem;
        align-items: center;
        justify-content: flex-start;
        min-height: 640px;
    }

    .help-eyebrow {
        font-size: 1.45rem;
    }

    .help-title {
        font-size: 1.9rem;
        max-width: 18ch;
        text-align: center;
    }

    .help-desktop-note {
        font-size: 1.12rem;
        max-width: 24ch;
        text-align: center;
    }
}

@media (min-width: 900px) {
    .method-list {
        display: none;
    }

    .method-highlight {
        margin-top: 0;
        padding-top: 0;
    }

    .help-panel {
        padding: 2.6rem 2rem 2.3rem;
    }

    .help-layout {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
        gap: 3rem;
        padding: 0;
        align-items: start;
    }

    .help-image-wrap {
        min-height: 760px;
    }

    .help-content {
        padding-right: 0.5rem;
        padding-top: 0.2rem;
        gap: 1.15rem;
        margin-top: 0;
        align-items: center;
        justify-content: center;
        min-height: 760px;
    }

    .help-eyebrow {
        font-size: 1.6rem;
    }

    .help-title {
        font-size: clamp(1.4rem, 2.1vw, 1.95rem);
        text-align: center;
        margin-inline: auto;
    }

    .help-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .help-benefit-card {
        text-align: center;
        padding: 1rem 0.8rem;
    }

    .help-desktop-note {
        margin-top: 0.6rem;
        text-align: center;
        font-size: 1.28rem;
        line-height: 1.45;
        font-weight: 600;
        color: #555b65;
        max-width: 32ch;
    }
}

/* Final CTA */
.final-cta {
    width: 100%;
    padding: 6rem 1rem 10rem;
    max-width: none;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--global-bg-gradient);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    display: none;
}

.cta-card {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-overlay);
    border-radius: 20px;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    /* very soft shadow */
    text-align: center;
}

.cta-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 255, 255, 0.08) 55%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.cta-card>* {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.cta-btn {
    margin-top: 1rem;
}

.primary-button {
    background: #111;
    color: #FFF;
    border: 1px solid #111;
    padding: 1rem 3rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    /* slight premium shadow */
    text-transform: uppercase;
}

.primary-button:hover {
    background: #444;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #444;
}

.calendly-overlay,
.calendly-popup {
    z-index: 999999 !important;
}

.calendly-overlay {
    position: fixed !important;
    inset: 0 !important;
}

.calendly-popup {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    max-height: calc(100vh - 32px) !important;
}

.calendly-popup-content {
    height: calc(100vh - 32px) !important;
    max-height: calc(100vh - 32px) !important;
}

.calendly-popup-content iframe {
    height: 100% !important;
}

@media (max-width: 767px) {
    .calendly-popup {
        width: calc(100vw - 20px) !important;
        max-width: 520px !important;
        height: calc(100dvh - 10px) !important;
        max-height: calc(100dvh - 10px) !important;
        top: 40px !important;
        transform: translateX(-50%) !important;
    }

    .calendly-popup-content {
        height: calc(100dvh - 10px) !important;
        max-height: calc(100dvh - 10px) !important;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    background: transparent;
}

.footer .logo {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #888;
    opacity: 1;
}

.copyright {
    color: #888;
    font-size: 0.85rem;
}
