/* =============================================================================
   INDEX3 — High-CVR TikTok Landing Page Styles
   Optimized for cold traffic: fast load, mobile-first, clear CTA hierarchy
============================================================================= */

/* ── Announcement Bar ── */
.v3-announce {
    background: var(--color-black);
    color: var(--color-white);
    text-align: center;
    padding: 10px var(--space-4);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.v3-announce__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ── Header ── */
/* Uses shared .header from index.css */

/* ── Layout ── */
.v3-container {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--space-12) var(--space-4);
}

.v3-container--narrow {
    max-width: 600px;
}

/* ── Typography ── */
.v3-eyebrow {
    display: block;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--space-2);
    text-align: center;
}

.v3-heading {
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-extrabold);
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    line-height: var(--line-height-tight);
    color: var(--color-black);
    text-align: center;
    margin-bottom: var(--space-8);
    letter-spacing: -0.5px;
}

.v3-heading--left {
    text-align: left;
}

.v3-heading em {
    font-style: normal;
    color: var(--color-accent);
}

/* ── Buttons ── */
.v3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    border: none;
    cursor: pointer;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
    text-align: center;
    line-height: 1;
}

.v3-btn--primary {
    background: var(--color-black);
    color: var(--color-white);
    padding: 16px 32px;
}

.v3-btn--primary:hover {
    background: var(--color-charcoal);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.v3-btn--primary:active {
    transform: translateY(0);
}

.v3-btn--full {
    width: 100%;
    max-width: 420px;
}

.v3-btn--cta {
    display: block;
    margin: var(--space-8) auto 0;
    padding: 18px 40px;
    font-size: var(--font-size-lg);
    max-width: 400px;
    width: 100%;
}

.v3-btn--sm {
    padding: 12px 20px;
    font-size: var(--font-size-sm);
}

/* ── Stars ── */
.v3-stars {
    color: #F5A623;
    letter-spacing: 1px;
}

.v3-stars--sm {
    font-size: var(--font-size-sm);
}

.v3-verified {
    font-size: var(--font-size-xs);
    color: var(--color-success);
    font-weight: var(--font-weight-semibold);
}

/* ── Payment Row ── */
.v3-payment-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-4);
    opacity: 0.5;
}

.v3-pay-icon {
    height: 20px;
    width: auto;
}

/* =============================================================================
   HERO
============================================================================= */
.v3-hero {
    background: var(--color-white);
}

.v3-hero__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-4) var(--space-12);
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .v3-hero__container {
        flex-direction: row;
        align-items: center;
        padding: var(--space-12) var(--space-4) var(--space-16);
    }

    .v3-hero__media,
    .v3-hero__content {
        flex: 1;
    }
}

.v3-hero__media {
    position: relative;
    text-align: center;
}

.v3-hero__carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    max-width: 400px;
    margin: 0 auto;
}

.v3-hero__slides {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.v3-hero__slides::-webkit-scrollbar {
    display: none;
}

.v3-hero__img {
    flex: 0 0 100%;
    width: 100%;
    object-fit: cover;
    scroll-snap-align: start;
    border-radius: var(--border-radius-lg);
}

.v3-hero__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 4px;
}

.v3-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--color-border, #ccc);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.v3-hero__dot--active {
    background: var(--color-black, #000);
    transform: scale(1.25);
}

.v3-hero__badge {
    position: absolute;
    top: var(--space-3);
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-black);
    color: var(--color-white);
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: var(--border-radius-full);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .v3-hero__badge {
        left: var(--space-3);
        transform: none;
    }
}

.v3-hero__social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.v3-avatar-stack {
    display: flex;
}

.v3-avatar-stack img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-white);
    margin-left: -8px;
}

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

.v3-hero__rating {
    font-size: var(--font-size-sm);
    color: var(--color-grey-dark);
}

.v3-hero__rating strong {
    color: var(--color-black);
}

.v3-hero__title {
    font-family: var(--font-family-heading);
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    color: var(--color-black);
    margin-bottom: var(--space-4);
    letter-spacing: -1px;
}

.v3-hero__title em {
    font-style: normal;
    color: var(--color-accent);
}

.v3-hero__sub {
    font-size: var(--font-size-base);
    color: var(--color-grey-dark);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-5);
}

.v3-hero__checks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.v3-hero__checks li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-charcoal);
}

.v3-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--color-success);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
}

.v3-hero__micro {
    text-align: center;
    font-size: var(--font-size-xs);
    color: var(--color-grey-medium);
    margin-top: var(--space-2);
}

@media (min-width: 768px) {
    .v3-hero__micro,
    .v3-hero .v3-btn--full {
        text-align: left;
    }
}

/* =============================================================================
   SOCIAL PROOF TICKER
============================================================================= */
.v3-ticker {
    background: var(--color-off-white);
    border-top: 1px solid var(--color-grey);
    border-bottom: 1px solid var(--color-grey);
    overflow: hidden;
    padding: 12px 0;
}

.v3-ticker__track {
    display: flex;
    gap: var(--space-8);
    white-space: nowrap;
    animation: v3-scroll 30s linear infinite;
}

.v3-ticker__track span {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-charcoal);
    flex-shrink: 0;
}

@keyframes v3-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================================================
   BEFORE / AFTER PROOF
============================================================================= */
.v3-proof {
    background: var(--color-off-white);
}

.v3-ba-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .v3-ba-grid {
        flex-direction: row;
        align-items: stretch;
    }

    .v3-ba-slider {
        flex: 1.2;
    }

    .v3-testimonial-card--featured {
        flex: 1;
    }
}

.v3-ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    background: var(--color-grey-light);
}

.v3-ba-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.v3-ba-img--before {
    clip-path: inset(0 50% 0 0);
}

.v3-ba-divider {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--color-white);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.v3-ba-handle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.v3-ba-range {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}

.v3-ba-label {
    position: absolute;
    bottom: var(--space-3);
    background: rgba(0,0,0,0.6);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    pointer-events: none;
}

.v3-ba-label--left { left: var(--space-3); }
.v3-ba-label--right { right: var(--space-3); }

/* ── Featured Testimonial ── */
.v3-testimonial-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-3);
}

.v3-testimonial-card--featured {
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-grey);
}

.v3-testimonial-card__quote {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--color-charcoal);
    font-style: italic;
}

.v3-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.v3-testimonial-card__author img,
.v3-testimonial-card__author svg {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.v3-testimonial-card__author strong {
    display: block;
    font-size: var(--font-size-base);
    color: var(--color-black);
}

/* =============================================================================
   HOW IT WORKS
============================================================================= */
.v3-steps {
    background: var(--color-white);
}

.v3-steps__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .v3-steps__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.v3-step {
    text-align: center;
    padding: var(--space-6) var(--space-4);
    background: var(--color-off-white);
    border-radius: var(--border-radius-lg);
}

.v3-step__num {
    width: 48px; height: 48px;
    margin: 0 auto var(--space-4);
    background: var(--color-black);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-extrabold);
    font-size: var(--font-size-xl);
}

.v3-step h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2);
    color: var(--color-black);
}

.v3-step p {
    font-size: var(--font-size-sm);
    color: var(--color-grey-dark);
    line-height: var(--line-height-relaxed);
}

/* =============================================================================
   FEATURES
============================================================================= */
.v3-features {
    background: var(--color-off-white);
}

.v3-features__split {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .v3-features__split {
        flex-direction: row;
        align-items: center;
    }

    .v3-features__media,
    .v3-features__content {
        flex: 1;
    }
}

.v3-features__media img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.v3-features__content .v3-eyebrow {
    text-align: left;
}

.v3-feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.v3-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.v3-feature-icon {
    font-size: var(--font-size-2xl);
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.v3-feature-item strong {
    display: block;
    font-size: var(--font-size-base);
    color: var(--color-black);
    margin-bottom: 2px;
}

.v3-feature-item p {
    font-size: var(--font-size-sm);
    color: var(--color-grey-dark);
    margin: 0;
    line-height: var(--line-height-relaxed);
}

/* =============================================================================
   REVIEWS
============================================================================= */
.v3-reviews {
    background: var(--color-white);
}

.v3-reviews__grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .v3-reviews__grid {
        flex-direction: row;
    }
}

.v3-review-card {
    flex: 1;
    background: var(--color-off-white);
    border: 1px solid var(--color-grey);
    border-radius: var(--border-radius-lg);
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.v3-review-card__head {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.v3-review-card__head img,
.v3-review-card__head svg {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.v3-review-card__head strong {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-black);
}

.v3-review-card__head .v3-stars {
    margin-left: auto;
}

.v3-review-card p {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    color: var(--color-grey-dark);
}

.v3-review-date {
    font-size: var(--font-size-xs);
    color: var(--color-grey-medium);
    margin-top: auto;
}

/* ── Stats Bar ── */
.v3-stats-bar {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-grey);
}

.v3-stat {
    text-align: center;
}

.v3-stat__num {
    display: block;
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-extrabold);
    font-size: var(--font-size-2xl);
    color: var(--color-black);
}

.v3-stat__label {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--color-grey-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: var(--font-weight-medium);
    margin-top: var(--space-1);
}

/* =============================================================================
   FAQ
============================================================================= */
.v3-faq {
    background: var(--color-off-white);
}

.v3-faq__list {
    display: flex;
    flex-direction: column;
}

.v3-faq__item {
    border-bottom: 1px solid var(--color-grey);
}

.v3-faq__item:first-child {
    border-top: 1px solid var(--color-grey);
}

.v3-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) 0;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-black);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.v3-faq__item summary::-webkit-details-marker {
    display: none;
}

.v3-faq__item summary::after {
    content: '+';
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-normal);
    color: var(--color-grey-medium);
    flex-shrink: 0;
    margin-left: var(--space-4);
}

.v3-faq__item[open] summary::after {
    content: '−';
    color: var(--color-accent);
}

.v3-faq__item[open] summary {
    color: var(--color-accent);
}

.v3-faq__item p {
    padding-bottom: var(--space-5);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    color: var(--color-grey-dark);
}

/* =============================================================================
   FINAL CTA
============================================================================= */
.v3-final-cta {
    background: var(--color-white);
}

.v3-final-cta__card {
    background: var(--color-off-white);
    border: 1px solid var(--color-grey);
    border-radius: var(--border-radius-lg);
    padding: var(--space-10) var(--space-6);
    text-align: center;
}

.v3-final-cta__sub {
    font-size: var(--font-size-base);
    color: var(--color-grey-dark);
    line-height: var(--line-height-relaxed);
    max-width: 440px;
    margin: 0 auto var(--space-6);
}

.v3-final-cta .v3-btn--full {
    margin: 0 auto;
}

.v3-final-cta__trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    font-size: var(--font-size-xs);
    color: var(--color-grey-medium);
    font-weight: var(--font-weight-medium);
    flex-wrap: wrap;
}

/* =============================================================================
   STICKY CTA
============================================================================= */
.v3-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--color-white);
    border-top: 1px solid var(--color-grey);
    padding: 10px var(--space-4);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
}

.v3-sticky.is-visible {
    transform: translateY(0);
}

.v3-sticky__inner {
    max-width: var(--content-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}

.v3-sticky__left {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.v3-sticky__left strong {
    font-size: var(--font-size-sm);
    color: var(--color-black);
}

/* =============================================================================
   FOOTER — Uses shared .footer from index.css/styles.css
============================================================================= */

/* =============================================================================
   MODAL OVERRIDES (reuse from styles.css / index.css)
============================================================================= */

/* The modal styles are inherited from styles.css — we just ensure
   the index3 page-specific btn styles don't conflict */

.v3-final-cta h2 {
    color: var(--color-black);
}
