/* Conversion layer: WhatsApp-first funnel */
.hero-conversion-note {
    max-width: 640px;
    margin-top: -34px;
    margin-bottom: 42px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.55s both;
}

/* Visual V2: more direct, human, and WhatsApp-oriented */
:root {
    --whatsapp-500: #25d366;
    --whatsapp-600: #1fb85a;
    --whatsapp-700: #128c4a;
}

.hero .container.hero-content {
    max-width: 1240px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 56px;
    align-items: center;
    padding-top: 132px;
    padding-bottom: 96px;
}

.hero-copy {
    min-width: 0;
}

.hero-bg {
    opacity: 0.34;
    filter: saturate(0.82) contrast(1.05);
}

.hero-overlay {
    background: linear-gradient(105deg, rgba(15,46,46,0.94) 0%, rgba(15,46,46,0.88) 46%, rgba(15,46,46,0.68) 100%);
}

.hero h1 {
    max-width: 790px;
    font-size: 58px;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero-subtitle {
    max-width: 650px;
    font-size: 19px;
    line-height: 1.62;
}

.hero .btn-primary,
.cta-section a[href*="wa.me"].btn-primary,
.final-cta a[href*="wa.me"].btn-primary,
.btn-submit,
.nav-cta {
    background: linear-gradient(135deg, var(--whatsapp-600), var(--whatsapp-500));
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(37,211,102,0.26);
}

.hero .btn-primary:hover,
.cta-section a[href*="wa.me"].btn-primary:hover,
.final-cta a[href*="wa.me"].btn-primary:hover,
.btn-submit:hover,
.nav-cta:hover {
    box-shadow: 0 12px 36px rgba(37,211,102,0.34);
}

.hero .btn-outline {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.hero-conversion-note {
    max-width: 650px;
}

.hero-visual-card {
    position: relative;
    align-self: center;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    background: rgba(250,248,245,0.96);
    color: var(--text-primary);
    box-shadow: 0 24px 70px rgba(0,0,0,0.28);
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-visual-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}

.hero-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.hero-profile img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center 1%;
    background: var(--warm-100);
}

.hero-profile strong,
.hero-profile span {
    display: block;
}

.hero-profile strong {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--teal-900);
    font-size: 22px;
    line-height: 1.05;
}

.hero-profile span {
    margin-top: 4px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-card-title {
    color: var(--teal-900);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.hero-visual-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.62;
    margin-bottom: 18px;
}

.hero-card-list {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-card-list span {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--teal-900);
    font-size: 14px;
    font-weight: 700;
}

.hero-card-list span::before {
    content: '';
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--whatsapp-500);
    box-shadow: 0 0 0 4px rgba(37,211,102,0.12);
    flex: 0 0 auto;
}

.hero-card-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--whatsapp-600), var(--whatsapp-500));
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(37,211,102,0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-card-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(37,211,102,0.36);
}

.testimonial-card {
    border-top: 3px solid var(--gold-500);
}

@media (max-width: 1024px) {
    .hero .container.hero-content {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
        gap: 34px;
    }

    .hero h1 {
        font-size: 46px;
    }
}

@media (max-width: 860px) {
    .hero {
        min-height: auto;
    }

    .hero .container.hero-content {
        display: block;
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 116px;
        padding-bottom: 104px;
    }

    .hero-copy,
    .hero-copy > *,
    .hero-visual-card {
        max-width: 350px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: 27px;
        line-height: 1.16;
        letter-spacing: 0;
        overflow-wrap: normal;
        text-wrap: wrap;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.56;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 350px;
        min-height: 54px;
        padding: 14px 16px;
    }

    .hero-buttons .btn-outline {
        min-height: auto;
        padding: 8px 4px;
        border: 0;
        background: transparent;
        color: rgba(255,255,255,0.86);
        box-shadow: none;
        backdrop-filter: none;
    }

    .hero-conversion-note {
        margin: 0 0 18px;
        font-size: 13px;
        line-height: 1.5;
    }

    .quick-whatsapp-actions {
        gap: 8px;
        margin: 0;
    }

    .quick-whatsapp-actions a {
        justify-content: flex-start;
        min-height: 40px;
        padding: 10px 12px;
    }

    .hero-visual-card {
        margin-top: 22px;
        padding: 14px;
        border-radius: 12px;
    }

    .hero-profile {
        margin-bottom: 0;
    }

    .hero-profile img {
        width: 54px;
        height: 54px;
    }

    .hero-profile strong {
        font-size: 18px;
    }

    .hero-profile span {
        font-size: 11px;
    }

    .hero-card-title {
        display: none;
    }

    .hero-visual-card p,
    .hero-card-list,
    .hero-card-whatsapp {
        display: none;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 420px) {
    .hero .container.hero-content {
        max-width: 390px;
        padding-top: 112px;
    }

    .hero-badge {
        max-width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 26px;
    }

    .mobile-sticky-cta {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

.quick-whatsapp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 760px;
    margin-top: -26px;
    margin-bottom: 54px;
    animation: fadeInUp 0.8s ease 0.65s both;
}

.quick-whatsapp-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.88);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.quick-whatsapp-actions a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.14);
    color: #ffffff;
}

.quick-whatsapp-actions svg,
.hero-buttons .btn-outline[href^="#"] svg {
    display: none;
}

.quick-whatsapp-actions a::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 0 4px rgba(37,211,102,0.12);
    flex: 0 0 auto;
}

.cta-trust-list {
    display: grid;
    gap: 10px;
    margin: -10px 0 28px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
}

.cta-trust-list span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-trust-list span::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 0 4px rgba(37,211,102,0.12);
}

.faq-section {
    padding: 76px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.faq-item {
    border: 1px solid var(--warm-200);
    border-radius: 8px;
    padding: 22px;
    background: var(--warm-50);
}

.faq-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.35;
    color: var(--teal-900);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 82px;
    }

    .hero-content {
        padding-bottom: 78px;
    }

    .hero-buttons {
        margin-bottom: 38px;
    }

    .hero-conversion-note {
        margin-top: -20px;
        margin-bottom: 26px;
        font-size: 13px;
    }

    .quick-whatsapp-actions {
        flex-direction: column;
        margin-top: -16px;
        margin-bottom: 34px;
    }

    .quick-whatsapp-actions a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

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

    .mobile-sticky-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1000;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 10px;
        align-items: center;
        padding: 12px 14px;
        border-radius: 10px;
        background: #0f2e2e;
        color: #ffffff;
        box-shadow: 0 12px 40px rgba(0,0,0,0.28);
        text-decoration: none;
    }

    .mobile-sticky-cta strong {
        display: block;
        font-size: 14px;
        line-height: 1.2;
    }

    .mobile-sticky-cta span {
        display: block;
        margin-top: 3px;
        font-size: 11px;
        line-height: 1.25;
        color: rgba(255,255,255,0.72);
    }

    .mobile-sticky-cta .mobile-sticky-cta-action {
        padding: 10px 12px;
        border-radius: 6px;
        background: #25d366;
        color: #ffffff;
        font-size: 12px;
        font-weight: 700;
        white-space: nowrap;
    }

    .float-whatsapp {
        display: none;
    }
}

/* Final mobile safeguards loaded after legacy responsive rules */
@media (max-width: 860px) {
    body {
        overflow-x: hidden;
    }

    .container {
        max-width: 340px;
        margin-left: 0;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero .container.hero-content {
        display: block;
        width: 100%;
        max-width: 340px;
        margin-left: 0;
        margin-right: auto;
        padding: 112px 20px 104px;
    }

    .hero-copy,
    .hero-copy > *,
    .hero-visual-card,
    .hero-buttons .btn,
    .quick-whatsapp-actions a {
        max-width: 300px;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.16;
        letter-spacing: 0;
        text-wrap: wrap;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.56;
        margin-bottom: 24px;
    }

    .section-title,
    .essential-content h2,
    .method-content h2,
    .about-content h2,
    .final-cta h2,
    .cta-content h2 {
        max-width: 300px;
        font-size: 26px;
        line-height: 1.18;
        letter-spacing: 0;
        text-wrap: wrap;
    }

    .hero-buttons {
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        min-height: 54px;
        padding: 14px 16px;
    }

    .hero-buttons .btn-outline {
        min-height: auto;
        padding: 8px 4px;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .hero-visual-card {
        margin-top: 22px;
        padding: 14px;
    }

    .hero-visual-card p,
    .hero-card-title,
    .hero-card-list,
    .hero-card-whatsapp {
        display: none;
    }

    .hero-profile {
        margin-bottom: 0;
    }

    .mobile-sticky-cta {
        left: 12px;
        right: auto;
        width: calc(100vw - 24px);
        max-width: 350px;
    }
}
