/* ============================================
   HISZTIKEZELES — Page-Specific Overrides
   Extends v2-landing.css with peach/warm accent theme
   ============================================ */

/* --- Page Accent Colors --- */
:root {
    --v2-hero-gradient: linear-gradient(160deg, var(--cream) 0%, var(--teal-lightest) 35%, var(--mint-light) 70%, var(--cream-warm) 100%);
    --v2-cta-gradient: linear-gradient(135deg, #1a7f8a 0%, var(--teal-dark) 50%, #166068 100%);
    --v2-cta-hover: linear-gradient(135deg, #1e8f9a 0%, #1a7f8a 50%, #1a6d75 100%);
    --v2-hero-blob1: var(--teal-light);
    --v2-hero-blob2: var(--peach-light);
    --v2-text-gradient: linear-gradient(135deg, var(--teal) 0%, #1a7f8a 60%, var(--teal-dark) 100%);
    --v2-accent-gradient: linear-gradient(90deg, var(--peach) 0%, var(--pink) 100%);
    --v2-icon-gradient: linear-gradient(135deg, var(--peach-light) 0%, var(--pink-light) 100%);
    --v2-banner-gradient: linear-gradient(135deg, #8a6914 0%, #b8860b 40%, #d4a017 100%);
    --v2-outcomes-bg: linear-gradient(160deg, var(--peach-light) 0%, var(--pink-light) 45%, var(--cream-warm) 100%);
    --v2-support-card-border: rgba(229, 163, 181, 0.14);
    --v2-support-card-hover-shadow: 0 12px 36px rgba(229, 163, 181, 0.18);
    --v2-support-card-hover-shadow-soft: 0 12px 36px rgba(229, 163, 181, 0.14);
    --v2-support-card-heading-color: var(--text-on-peach);
    --v2-support-card-accent-color: var(--pink-dark);
    --v2-glow-peach: rgba(245, 184, 138, 0.2);
    --v2-star-color: var(--peach);
    --v2-bullet-color: var(--peach-dark);
    --v2-deep-dive-bg: linear-gradient(160deg, var(--cream-warm) 0%, var(--peach-light) 60%, var(--pink-light) 100%);
    --v2-bridge-bg: linear-gradient(160deg, var(--lavender-light) 0%, var(--pink-light) 40%, var(--cream-warm) 100%);
    --v2-warning-bg: linear-gradient(135deg, var(--peach-light) 0%, rgba(245, 184, 138, 0.3) 100%);
    --v2-warning-color: var(--orange-dark);
    --v2-warning-border: rgba(232, 148, 90, 0.2);
    --v2-lead-bg: linear-gradient(160deg, var(--peach-light) 0%, var(--cream-warm) 40%, var(--cream) 100%);
    --v2-lead-border: rgba(245, 184, 138, 0.2);
    --v2-pricing-bg: linear-gradient(160deg, #14454d 0%, var(--teal-dark) 35%, #1a7f8a 70%, #1a6b6a 100%);
    --v2-featured-border: var(--peach);
    --v2-badge-gradient: linear-gradient(135deg, var(--peach) 0%, var(--orange) 100%);
    --v2-badge-color: var(--text);
    --v2-badge-shadow: rgba(232, 148, 90, 0.35);
    --v2-discount-bg: linear-gradient(135deg, var(--peach-light) 0%, rgba(245, 184, 138, 0.5) 100%);
    --v2-discount-color: var(--orange-dark);
    --v2-bonus-border: var(--peach-light);
    --v2-bonus-bar: linear-gradient(90deg, var(--peach) 0%, var(--orange) 100%);
    --v2-bonus-glow: var(--v2-glow-peach);
    --v2-bonus-value-bg: linear-gradient(135deg, var(--peach-light) 0%, var(--peach) 100%);
    --v2-zs-border: var(--peach-light);
    --v2-additional-border: var(--teal-light);
    --v2-sticky-price-color: var(--peach-dark);

    /* Animation color overrides */
    --v2-badge-glow: rgba(232, 148, 90, 0.35);
    --v2-badge-glow-strong: rgba(232, 148, 90, 0.5);
    --v2-cta-accent-glow: rgba(232, 148, 90, 0.35);
}

/* Badge shine + CTA pulse animations now in v2-landing.css with CSS variable hooks */

/* --- Deep dive card shadow override (warm tones) --- */
.v2-deep-dive-card {
    box-shadow: 0 20px 60px rgba(232, 148, 90, 0.12), 0 6px 16px rgba(0, 0, 0, 0.04);
}

/* --- Bridge card shadow override (lavender tones) --- */
.v2-bridge-card {
    box-shadow: 0 16px 48px rgba(184, 169, 201, 0.12), 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* --- Lead magnet card shadow override --- */
.v2-lead-card {
    box-shadow: 0 16px 48px rgba(232, 148, 90, 0.1);
}

/* --- ZseniFeszek card shadow override --- */
.v2-zsenifeszek-card {
    box-shadow: 0 8px 24px rgba(232, 148, 90, 0.06);
}

/* ============================================
   ENHANCED PROBLEM CARDS — Warm glow on hover
   ============================================ */
.v2-problems .problem-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
}

.v2-problems .problem-card:hover {
    box-shadow: 0 16px 48px rgba(232, 148, 90, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.06);
}

/* --- Problem card top accent bar on hover --- */
.v2-problems .problem-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--peach) 0%, var(--pink) 50%, var(--peach) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: var(--v2-card-radius) var(--v2-card-radius) 0 0;
}

.v2-problems .problem-card:hover::after {
    transform: scaleX(1);
}

/* ============================================
   ENHANCED TESTIMONIALS — Warm accent
   ============================================ */
.v2-testimonial {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease;
}

.v2-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(232, 148, 90, 0.12),
                0 4px 12px rgba(0, 0, 0, 0.04);
}

/* ============================================
   ENHANCED BONUS CARDS — Warm glow
   ============================================ */
.v2-bonus-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
}

.v2-bonus-card:hover {
    box-shadow: 0 20px 56px rgba(232, 148, 90, 0.16),
                0 6px 16px rgba(0, 0, 0, 0.05);
}

/* ============================================
   ENHANCED TIMELINE — Warm dot accent
   ============================================ */
.v2-timeline-dot {
    background: linear-gradient(135deg, var(--peach) 0%, var(--orange) 100%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
}

.v2-timeline-item:hover .v2-timeline-dot {
    transform: scale(1.12);
    box-shadow: 0 4px 16px rgba(232, 148, 90, 0.35);
}

.v2-timeline-item.open .v2-timeline-dot {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    box-shadow: 0 4px 16px rgba(26, 95, 106, 0.3);
}

/* ============================================
   ENHANCED METRIC CARDS — Warm hover glow
   ============================================ */
.v2-metric-card {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease;
}

.v2-metric-card:hover {
    box-shadow: 0 12px 40px rgba(232, 148, 90, 0.14),
                0 4px 12px rgba(0, 0, 0, 0.04);
}

.v2-metric-icon {
    background: var(--v2-icon-gradient);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-metric-card:hover .v2-metric-icon {
    transform: scale(1.08);
}

/* ============================================
   ENHANCED PRICING — Warm accents
   ============================================ */
.v2-pricing-featured {
    border-color: var(--peach);
    background-image: linear-gradient(white, white),
                      linear-gradient(135deg, var(--peach), var(--pink), var(--peach-light), var(--peach));
}


/* ============================================
   ENHANCED FAQ — Smooth open/close
   ============================================ */
.v2-faq .faq-item {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.v2-faq .faq-item[open] {
    box-shadow: 0 6px 24px rgba(232, 148, 90, 0.08);
    border-color: rgba(245, 184, 138, 0.3);
}

/* ============================================
   ENHANCED COMPARISON TABLE
   ============================================ */
.v2-comp-course {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease;
}

.v2-comp-course:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(26, 95, 106, 0.12);
}

/* ============================================
   ENHANCED COUNTERARGUMENT CARD
   ============================================ */
.v2-counter-card {
    transition: box-shadow 0.4s ease;
}

.v2-counter-card:hover {
    box-shadow: 0 16px 48px rgba(232, 148, 90, 0.1),
                0 4px 12px rgba(0, 0, 0, 0.04);
}

/* ============================================
   INSTRUCTOR STATS — Warm accent underline
   ============================================ */
.instructor-stats .stat-number {
    background: linear-gradient(135deg, var(--peach) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   ADDITIONAL COURSES — Peach hover border
   ============================================ */
.v2-additional-card {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

.v2-additional-card:hover {
    border-color: var(--peach);
    box-shadow: 0 12px 36px rgba(232, 148, 90, 0.12);
}

/* ============================================
   BENTO GRID — 4-card layout, all images used well
   ============================================ */
@media (min-width: 769px) {
    /* Card 1: full-width top banner instead of tall left column */
    .v2-bento-grid .problem-card:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .v2-bento-grid .problem-card:first-child .problem-card-image {
        flex: none;
        aspect-ratio: 16 / 7;
    }

    /* Card 4: full-width bottom banner */
    .v2-bento-grid .problem-card:last-child {
        grid-column: 1 / -1;
    }

    .v2-bento-grid .problem-card:last-child .problem-card-image {
        aspect-ratio: 16 / 7;
    }
}

/* Middle cards (2, 3): 4:3 is more natural than square crop */
.v2-problems .problem-card-image {
    aspect-ratio: 4 / 3;
}

/* Card 1 wide banner: show mom's face + toddler in background */
.v2-bento-grid .problem-card:first-child .problem-card-image img {
    object-position: center top;
}

/* Card 3 (couple on couch): 4:3 crops feet — keep faces visible */
.v2-bento-grid .problem-card:nth-child(3) .problem-card-image img {
    object-position: center top;
}

/* Card 4 wide banner: show mom at door + sleeping child */
.v2-bento-grid .problem-card:last-child .problem-card-image img {
    object-position: center top;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .v2-problems .problem-card::after {
        height: 2px;
    }

    /* Shrink hero on mobile so next section peeks in, encouraging scroll */
    .v2-hero {
        padding-bottom: calc(var(--space-xl) * 0.6);
    }

    /* Warm accent for trust metrics bar */
    .v2-metric-icon {
        background: linear-gradient(135deg, rgba(232, 148, 90, 0.15) 0%, rgba(232, 148, 90, 0.08) 100%);
        color: #c06a20;
    }

    /* Guarantee section warm override */
    .v2-guarantee-card {
        border-color: rgba(232, 148, 90, 0.4);
    }

    .v2-guarantee-icon {
        background: linear-gradient(135deg, rgba(232, 148, 90, 0.2) 0%, rgba(232, 148, 90, 0.1) 100%);
        color: #c06a20;
    }

    .v2-guarantee-highlight {
        background: rgba(232, 148, 90, 0.12);
        color: #c06a20;
    }
}

/* ============================================
   WARM ACCENT OVERRIDES (trust metrics + guarantee)
   ============================================ */
.v2-metric-icon {
    background: linear-gradient(135deg, rgba(232, 148, 90, 0.15) 0%, rgba(232, 148, 90, 0.08) 100%);
    color: #c06a20;
}

.v2-guarantee-card {
    border-color: rgba(232, 148, 90, 0.4);
}

.v2-guarantee-icon {
    background: linear-gradient(135deg, rgba(232, 148, 90, 0.2) 0%, rgba(232, 148, 90, 0.1) 100%);
    color: #c06a20;
    box-shadow: 0 4px 20px rgba(232, 148, 90, 0.15);
}

.v2-guarantee-highlight {
    background: rgba(232, 148, 90, 0.12);
    color: #c06a20;
}

/* Desktop: shrink hero bottom padding so trust metrics peek in */
@media (min-width: 769px) {
    .v2-hero {
        padding-bottom: var(--space-xl);
    }
}

/* Mobile: tighter hero to encourage scrolling */
@media (max-width: 768px) {
    .v2-hero {
        padding-bottom: calc(var(--space-lg) * 0.8);
    }
}

/* ============================================
   VALUE STACK — Hormozi-style itemized value breakdown
   Dark teal bg, glassmorphism card, staggered reveal
   ============================================ */
.hk-value-stack {
    background: var(--v2-pricing-bg);
    color: white;
    padding: var(--v2-section-gap) 0;
}
.hk-value-stack-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--v2-card-radius);
    padding: var(--space-lg);
    max-width: 780px;
    margin: 0 auto;
}
.hk-value-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hk-value-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: none;
}
.hk-value-item:last-child {
    border-bottom: none;
}
/* Stagger animation when parent enters viewport */
.hk-value-stack.v2-revealed .hk-value-item {
    animation: hk-value-item-in 0.45s ease both;
}
.hk-value-stack.v2-revealed .hk-value-item:nth-child(1) { animation-delay: 0.05s; }
.hk-value-stack.v2-revealed .hk-value-item:nth-child(2) { animation-delay: 0.12s; }
.hk-value-stack.v2-revealed .hk-value-item:nth-child(3) { animation-delay: 0.19s; }
.hk-value-stack.v2-revealed .hk-value-item:nth-child(4) { animation-delay: 0.26s; }
.hk-value-stack.v2-revealed .hk-value-item:nth-child(5) { animation-delay: 0.33s; }
@keyframes hk-value-item-in {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}
.hk-value-item-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.hk-value-item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1.2;
}
.hk-value-item-left div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hk-value-item-left strong {
    font-size: 0.95rem;
    color: white;
    font-weight: 700;
}
.hk-value-item-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}
.hk-value-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: line-through;
    white-space: nowrap;
    flex-shrink: 0;
}
.hk-value-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: var(--space-md) 0;
}
.hk-value-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}
.hk-value-total-amount {
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.55);
}
.hk-value-actual-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin: 6px 0;
    gap: var(--space-sm);
}
.hk-value-actual-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hk-value-actual-label {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}
.hk-value-actual-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}
.hk-value-actual-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--peach);
    white-space: nowrap;
}
.hk-value-savings-row {
    text-align: center;
    padding: 12px;
    background: rgba(245, 184, 138, 0.15);
    border: 1px solid rgba(245, 184, 138, 0.3);
    border-radius: 10px;
    margin: var(--space-sm) 0 var(--space-md);
    font-size: 0.95rem;
    color: var(--peach);
}
.hk-value-savings-row strong {
    font-size: 1.05rem;
}
.hk-value-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
}
.hk-value-cta .btn-primary {
    background: var(--v2-cta-gradient);
    border-color: transparent;
    animation: v2-pulse-glow 2.8s ease-in-out infinite;
}
.hk-value-cta .btn-primary:hover {
    background: var(--v2-cta-hover);
    transform: translateY(-2px);
}
.hk-value-guarantee-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
.hk-value-guarantee-note svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   SPEED / EASE ROW — Hormozi value equation denominator
   ============================================ */
.hk-speed-row {
    background: var(--cream-warm, #fef9f5);
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(232, 148, 90, 0.12);
    border-bottom: 1px solid rgba(232, 148, 90, 0.12);
}
.hk-speed-items {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}
.hk-speed-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}
.hk-speed-icon {
    font-size: 1.4rem;
    margin-bottom: 2px;
}
.hk-speed-item strong {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}
.hk-speed-item span:last-child {
    font-size: 0.8rem;
    color: var(--text-muted);
}
@media (max-width: 600px) {
    .hk-speed-items {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
}

/* ============================================
   BEFORE / AFTER TRANSFORMATION GRID
   ============================================ */
.hk-transform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 900px;
    margin: var(--space-lg) auto 0;
}
.hk-transform-col {
    padding: var(--space-lg);
    border-radius: var(--v2-card-radius);
}
.hk-transform-before {
    background: rgba(232, 148, 90, 0.08);
    border: 1px solid rgba(232, 148, 90, 0.2);
}
.hk-transform-after {
    background: rgba(26, 127, 138, 0.08);
    border: 1px solid rgba(26, 127, 138, 0.2);
}
.hk-transform-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: var(--space-md);
}
.hk-transform-before .hk-transform-heading {
    color: #c06a20;
}
.hk-transform-after .hk-transform-heading {
    color: var(--teal);
}
.hk-transform-before .hk-transform-heading svg {
    color: #d4845a;
}
.hk-transform-after .hk-transform-heading svg {
    color: var(--teal);
}
.hk-transform-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hk-transform-list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text);
}
.hk-transform-before .hk-transform-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #d4845a;
    font-size: 1rem;
}
.hk-transform-after .hk-transform-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--teal);
    font-size: 1rem;
}
@media (max-width: 768px) {
    .hk-transform-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .hk-transform-col {
        padding: var(--space-md);
    }
}

/* ============================================
   INLINE CTAs — lightweight mid-page conversion points
   ============================================ */
.v2-inline-cta {
    text-align: center;
    padding: var(--space-lg) var(--space-md) 0;
    max-width: 600px;
    margin: 0 auto;
}
.v2-inline-cta p {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}
.v2-inline-cta .btn {
    margin-bottom: var(--space-xs);
}
.v2-inline-cta-note {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Value Stack — Mobile */
@media (max-width: 600px) {
    .hk-value-stack-card {
        padding: var(--space-md) var(--space-sm);
    }
    .hk-value-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
    }
    .hk-value-item-left {
        flex: 1;
        min-width: 0;
    }
    .hk-value-item-price {
        flex-shrink: 0;
        font-size: 0.85rem;
    }
    .hk-value-actual-row {
        flex-direction: column;
        text-align: center;
    }
    .hk-value-total-row {
        flex-direction: row;
        gap: 8px;
    }
    .hk-value-actual-amount {
        font-size: 1.5rem;
    }
}

/* ============================================
   PERSONA SWAP (set via ?persona=fanni|anna|kata on :root)
   Default (no attribute) = fanni.
   ============================================ */
.persona-copy { display: none; }
:root:not([data-persona]) .persona-copy--fanni,
:root[data-persona="fanni"] .persona-copy--fanni,
:root[data-persona="anna"]  .persona-copy--anna,
:root[data-persona="kata"]  .persona-copy--kata {
    display: inline;
}
/* Avoid layout jumps: reserve min-height on hero H1 + tagline */
.v2-hero-title { min-height: 2.6em; }
.v2-hero-tagline { min-height: 2em; }
@media (max-width: 768px) {
    .v2-hero-title { min-height: 3.2em; }
    .v2-hero-tagline { min-height: 3em; }
}

/* ============================================
   HERO — Rating pill + secondary scroll link
   ============================================ */
.v2-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--cream-warm, #fdfcfa);
    border: 1px solid var(--peach-light, #fde8d8);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text, #2a2a2a);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.v2-rating-stars { color: var(--peach-dark, #d47a3f); letter-spacing: 0.05em; }
.v2-rating-value { color: var(--teal-dark, #1a5f6a); }
.v2-rating-sep { color: var(--text-muted, #888); }
.v2-rating-count { color: var(--text-muted, #666); font-weight: 500; }

.v2-hero-secondary-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--teal-dark, #1a5f6a);
    font-size: 0.95rem;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 160ms ease;
}
.v2-hero-secondary-link:hover { color: var(--teal, #2a8a96); }

/* ============================================
   METRICS bar — attribution line above grid
   ============================================ */
.v2-metrics-attribution {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted, #555);
    margin: 0 0 1.25rem;
    line-height: 1.5;
}
.v2-metrics-attribution strong { color: var(--teal-dark, #1a5f6a); }
.v2-metrics-attribution a {
    color: var(--teal, #2a8a96);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   MINI-VALUE TEASER — at ~20% scroll
   ============================================ */
.hk-mini-value {
    max-width: 900px;
    margin: var(--space-xl, 3rem) auto;
    padding: var(--space-lg, 2rem) var(--space-md, 1.5rem);
    background: linear-gradient(160deg, var(--cream-warm) 0%, var(--peach-light) 100%);
    border: 1px solid var(--peach-light);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(232, 148, 90, 0.08);
}
.hk-mini-value-stats {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    font-size: 1.05rem;
    color: var(--text);
}
.hk-mini-value-stats li {
    display: inline-flex;
    align-items: center;
    position: relative;
}
.hk-mini-value-stats li + li::before {
    content: "·";
    position: absolute;
    left: -0.9rem;
    color: var(--peach-dark);
    font-weight: 700;
}
.hk-mini-value-stats strong {
    color: var(--teal-dark);
    font-weight: 700;
    margin-right: 0.25rem;
}
.hk-mini-value-note {
    margin: 0.75rem 0 0;
    font-size: 0.9rem;
    color: var(--text-muted, #666);
}

@media (max-width: 768px) {
    .hk-mini-value { padding: var(--space-md, 1.5rem) var(--space-sm, 1rem); }
    .hk-mini-value-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.98rem;
    }
    .hk-mini-value-stats li + li::before { display: none; }
}

/* ============================================
   PRICING — Basic discount badge variant
   ============================================ */
.v2-pricing-discount--basic {
    background: linear-gradient(135deg, var(--teal-lightest, #e8f4f5) 0%, var(--mint-light, #d7ebec) 100%);
    color: var(--teal-dark, #1a5f6a);
    border-color: rgba(42, 138, 150, 0.2);
}

@media (prefers-reduced-motion: reduce) {
    .v2-pricing-featured .btn-primary {
        animation: none !important;
    }
    .hk-value-stack.v2-revealed .hk-value-item {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}
