/* ============================================
   V2 LANDING PAGE — Shared Component System
   Reusable base for all V2 landing pages.
   Pages set accent colors via CSS custom properties.
   ============================================ */

/* --- Shared Design Tokens (Defaults) --- */
:root {
    --v2-glass: rgba(255, 255, 255, 0.78);
    --v2-glass-border: rgba(255, 255, 255, 0.55);
    --v2-glass-blur: blur(20px);
    --v2-card-radius: 20px;
    --v2-section-gap: clamp(4rem, 8vw, 7rem);
    --v2-glow-teal: rgba(26, 127, 138, 0.25);
}

/* ============================================
   URGENCY BANNER
   ============================================ */
.v2-urgency-banner {
    position: relative;
    z-index: 10;
    background: var(--v2-banner-gradient, linear-gradient(135deg, #14454d 0%, var(--teal-dark) 40%, #1a7f8a 100%));
    color: white;
    padding: 0.65rem var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 20px rgba(26, 95, 106, 0.35);
    letter-spacing: 0.01em;
}

.v2-urgency-banner .urgency-text {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.v2-urgency-banner .urgency-text svg {
    animation: v2-urgency-tick 1s ease-in-out infinite;
}

.v2-urgency-banner .urgency-countdown {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.v2-urgency-banner .uc-segment {
    background: rgba(255, 255, 255, 0.18);
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    min-width: 2.1rem;
    text-align: center;
    backdrop-filter: blur(4px);
    font-variant-numeric: tabular-nums;
}

.v2-urgency-banner .uc-sep {
    font-weight: 700;
    opacity: 0.6;
}

@keyframes v2-urgency-tick {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

body.has-urgency-banner .header {
    z-index: 1050;
    background: rgba(253, 252, 250, 0.97);
}

/* ============================================
   HERO SECTION
   ============================================ */
.v2-hero {
    padding: calc(70px + var(--space-2xl)) 0 var(--v2-section-gap);
    background: var(--v2-hero-gradient);
    position: relative;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.v2-hero::before,
.v2-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    opacity: 0.35;
}

.v2-hero::before {
    width: 600px;
    height: 600px;
    background: var(--v2-hero-blob1, var(--teal-light));
    top: -250px;
    right: -150px;
}

.v2-hero::after {
    width: 450px;
    height: 450px;
    background: var(--v2-hero-blob2, var(--mint-light));
    bottom: -180px;
    left: -120px;
}

.v2-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.v2-hero-content {
    animation: v2-slideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.v2-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.55rem 1.35rem;
    background: var(--v2-glass);
    backdrop-filter: var(--v2-glass-blur);
    border: 1px solid var(--v2-glass-border);
    border-radius: var(--radius-xl);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: var(--space-md);
    box-shadow: 0 2px 12px rgba(26, 95, 106, 0.06);
}

.v2-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--teal-dark);
    margin-bottom: var(--space-md);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.v2-hero-title .text-gradient {
    display: inline;
    background: var(--v2-text-gradient, linear-gradient(135deg, var(--teal) 0%, #1a7f8a 60%, var(--teal-dark) 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v2-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    max-width: 540px;
}

.v2-hero-tagline {
    font-size: 1.1rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    letter-spacing: 0.01em;
}

.v2-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.v2-hero-cta .btn-primary {
    background: var(--v2-cta-gradient);
    border-color: transparent;
    animation: v2-pulse-glow 2.8s ease-in-out infinite;
    font-size: 1.08rem;
    padding: 1.05rem 2.2rem;
    border-radius: 14px;
    letter-spacing: 0.02em;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.v2-hero-cta .btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px var(--v2-glow-teal);
    background: var(--v2-cta-hover, var(--v2-cta-gradient));
}

.v2-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.v2-hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.v2-hero-trust .trust-item svg {
    color: var(--teal);
    flex-shrink: 0;
}

.v2-hero-image {
    position: relative;
    animation: v2-imageIn 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.v2-hero-image img {
    width: 100%;
    border-radius: var(--v2-card-radius);
    box-shadow: 0 30px 70px rgba(26, 95, 106, 0.18), 0 8px 20px rgba(26, 95, 106, 0.08);
}

.v2-hero-image::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: calc(var(--v2-card-radius) + 8px);
    border: 2px solid var(--teal-lightest);
    opacity: 0.5;
    pointer-events: none;
}

/* --- Hero Social Proof (Avatar Stack) --- */
.v2-hero-social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

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

.v2-avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--teal-lightest) 100%);
    color: var(--teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    border: 2px solid white;
    margin-left: -8px;
    position: relative;
}

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

.v2-avatar-circle:nth-child(1) { z-index: 4; background: linear-gradient(135deg, #b2dfdb, #80cbc4); }
.v2-avatar-circle:nth-child(2) { z-index: 3; background: linear-gradient(135deg, #c8e6c9, #a5d6a7); }
.v2-avatar-circle:nth-child(3) { z-index: 2; background: linear-gradient(135deg, #dcedc8, #c5e1a5); }
.v2-avatar-circle:nth-child(4) { z-index: 1; background: linear-gradient(135deg, #e0f2f1, #b2dfdb); }

.v2-social-proof-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal-dark);
}

/* --- Hero Price Anchor --- */
.v2-hero-price-anchor {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: var(--space-md);
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-xl);
    display: inline-block;
}

/* --- Hero Floating Animation --- */
.v2-hero-float {
    animation: v2-float 4s ease-in-out infinite;
}

/* ============================================
   TRUST METRICS BAR
   ============================================ */
.v2-metrics {
    padding: var(--space-xl) 0;
    background: white;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(26, 95, 106, 0.06);
}

.v2-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: var(--space-md);
}

.v2-metric-card {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.v2-metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(26, 95, 106, 0.1);
    border-color: var(--teal-lightest);
}

.v2-metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-sm);
    background: linear-gradient(135deg, var(--teal-lightest) 0%, var(--mint-light) 100%);
    border-radius: 16px;
    color: var(--teal-dark);
}

.v2-metric-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--teal-dark);
    line-height: 1;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.v2-metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   PROBLEM BENTO GRID
   ============================================ */
.v2-problems {
    padding: var(--v2-section-gap) 0;
    background: var(--cream-dark);
    position: relative;
}

.v2-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.v2-bento-grid .problem-card:first-child {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

.v2-bento-grid .problem-card:first-child .problem-card-image {
    flex: 1;
    aspect-ratio: auto;
    min-height: 0;
}

.v2-bento-grid .problem-card:first-child .problem-card-image img {
    border-radius: 14px;
}

.v2-bento-grid .problem-card {
    background: white;
    border: 1px solid rgba(26, 95, 106, 0.06);
    padding: var(--space-lg);
    border-radius: var(--v2-card-radius);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.v2-bento-grid .problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--v2-accent-gradient, linear-gradient(90deg, var(--teal) 0%, var(--mint) 100%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-bento-grid .problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(26, 95, 106, 0.1);
}

.v2-bento-grid .problem-card:hover::before {
    transform: scaleX(1);
}

.v2-bento-grid .problem-icon {
    width: 60px;
    height: 60px;
    margin: 0 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: var(--v2-icon-gradient, linear-gradient(135deg, var(--teal-lightest) 0%, var(--mint-light) 100%));
    border-radius: 16px;
}

.v2-bento-grid .problem-card h3 {
    font-size: 1.1rem;
    color: var(--teal-dark);
    margin-bottom: var(--space-xs);
    line-height: 1.35;
}

.v2-bento-grid .problem-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.problem-solution-teaser {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: 1.05rem;
    color: var(--text);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--teal-lightest) 0%, var(--mint-light) 100%);
    border-radius: 14px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-left: 4px solid var(--teal);
}

/* ============================================
   QUICK SOCIAL PROOF (Featured Testimonial)
   ============================================ */
.v2-quick-proof {
    padding: var(--space-xl) 0;
    background: white;
}

.v2-featured-testimonial {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--teal-lightest) 50%, var(--cream) 100%);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--teal);
    box-shadow: var(--shadow-soft);
    position: relative;
    text-align: center;
}

.v2-featured-testimonial::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(26, 127, 138, 0.15);
    line-height: 1;
    pointer-events: none;
}

.v2-featured-testimonial .v2-stars {
    justify-content: center;
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.v2-featured-testimonial p {
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.v2-featured-testimonial footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(26, 127, 138, 0.15);
}

.v2-featured-testimonial cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--teal-dark);
}

/* ============================================
   DEEP DIVE / URGENCY SECTION
   ============================================ */
.v2-deep-dive {
    padding: var(--v2-section-gap) 0;
    background: var(--v2-deep-dive-bg, linear-gradient(160deg, var(--cream-warm) 0%, var(--peach-light) 60%, var(--pink-light) 100%));
    position: relative;
}

.v2-deep-dive-card {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem);
    background: white;
    border-radius: var(--v2-card-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 6px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.v2-deep-dive-card h2 {
    color: var(--teal-dark);
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    margin-bottom: var(--space-lg);
    text-align: center;
    letter-spacing: -0.01em;
}

.v2-deep-dive-card p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.v2-warning {
    text-align: center;
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    background: var(--v2-warning-bg, linear-gradient(135deg, var(--peach-light) 0%, rgba(245, 184, 138, 0.3) 100%));
    border-radius: 14px;
    color: var(--v2-warning-color, var(--color-warning-text, #7a3a15));
    font-size: 1.2rem;
    font-weight: 700;
    border: 1px solid var(--v2-warning-border, rgba(232, 148, 90, 0.2));
    position: relative;
}

.v2-deep-dive-card .btn {
    display: block;
    text-align: center;
    margin: var(--space-lg) auto 0;
    max-width: 420px;
}

/* ============================================
   SOLUTION BRIDGE
   ============================================ */
.v2-solution-bridge {
    padding: var(--v2-section-gap) 0;
    background: white;
}

.v2-bridge-card {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3rem);
    background: var(--v2-bridge-bg, linear-gradient(160deg, var(--lavender-light) 0%, var(--pink-light) 40%, var(--cream-warm) 100%));
    border-radius: var(--v2-card-radius);
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.v2-bridge-card h2 {
    color: var(--teal-dark);
    margin-bottom: var(--space-md);
    font-size: clamp(1.35rem, 3vw, 1.8rem);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.v2-bridge-card p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.v2-bridge-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: var(--space-md) auto;
}

.v2-bridge-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: 0.5rem 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
}

.v2-bridge-list li::before {
    content: '\2713';
    color: var(--teal);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.v2-bridge-cta {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(26, 95, 106, 0.08);
    font-size: 1.15rem;
    color: var(--teal-dark);
    font-weight: 600;
}

/* ============================================
   PULL QUOTE
   ============================================ */
.v2-pull-quote {
    padding: var(--space-md) 0;
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--teal-lightest) 100%);
    text-align: center;
    border-top: 1px solid rgba(26, 127, 138, 0.1);
    border-bottom: 1px solid rgba(26, 127, 138, 0.1);
}

.v2-pull-quote p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--teal-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.v2-videos {
    padding: var(--v2-section-gap) 0;
    background: var(--cream-dark);
}

.v2-video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 700px;
    margin: 0 auto;
}

.v2-video-card {
    background: white;
    border: 1px solid rgba(26, 95, 106, 0.06);
    border-radius: var(--v2-card-radius);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 95, 106, 0.06);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.v2-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 95, 106, 0.1);
}

.v2-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.v2-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.v2-video-card .video-label {
    padding: var(--space-md);
    text-align: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--teal-dark);
}

/* ============================================
   PERSONA CARDS
   ============================================ */
.v2-personas {
    padding: var(--v2-section-gap) 0;
    background: white;
}

.v2-persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1100px;
    margin: 0 auto;
}

.v2-persona-card {
    background: white;
    border: 2px solid var(--teal-lightest);
    border-radius: var(--v2-card-radius);
    padding: var(--space-lg);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.v2-persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--mint) 100%);
}

.v2-persona-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(26, 95, 106, 0.1);
    border-color: var(--teal-light);
}

.v2-persona-emoji {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.v2-persona-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 0.25rem;
}

.v2-persona-age {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.v2-persona-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--teal-dark);
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: linear-gradient(135deg, var(--teal-lightest) 0%, var(--mint-light) 100%);
    border-radius: 12px;
    border-left: 3px solid var(--teal);
    line-height: 1.55;
}

.v2-persona-pain {
    list-style: none;
    margin-bottom: var(--space-md);
}

.v2-persona-pain li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    padding: 0.4rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.v2-persona-pain li::before {
    content: '\2022';
    color: var(--v2-bullet-color, var(--teal));
    font-weight: bold;
    flex-shrink: 0;
}

.v2-persona-prompt {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--teal);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--cream-dark);
}

/* ============================================
   INSTRUCTOR SECTION
   ============================================ */
.v2-instructor {
    padding: var(--v2-section-gap) 0;
    background: var(--cream-dark);
}

.v2-instructor-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--space-xl);
    align-items: start;
    max-width: 920px;
    margin: 0 auto;
    background: white;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--v2-card-radius);
    box-shadow: 0 12px 40px rgba(26, 95, 106, 0.06);
    border: 1px solid rgba(26, 95, 106, 0.04);
}

.v2-instructor-image {
    display: flex;
    justify-content: center;
}

.v2-instructor-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 12px 40px rgba(26, 95, 106, 0.12);
    border: 4px solid var(--teal-lightest);
}

.v2-instructor-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal-light);
    margin-bottom: var(--space-xs);
}

.v2-instructor-content h2 {
    margin-bottom: var(--space-xs);
    font-size: 1.5rem;
}

.v2-instructor-role {
    color: var(--teal-dark);
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.v2-instructor-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.v2-instructor-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--cream-dark);
    flex-wrap: wrap;
}

.v2-instructor-stat {
    text-align: center;
}

.v2-instructor-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--teal-dark);
    line-height: 1.2;
}

.v2-instructor-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   CURRICULUM TIMELINE
   ============================================ */
.v2-curriculum {
    padding: var(--v2-section-gap) 0;
    background: white;
}

.v2-timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    padding-left: 52px;
}

.v2-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal) 0%, var(--teal-light) 50%, var(--teal-lightest) 100%);
    border-radius: 3px;
}

.v2-timeline-item {
    position: relative;
    margin-bottom: var(--space-sm);
    background: var(--cream);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s ease, background 0.3s ease;
    border: 1px solid transparent;
}

.v2-timeline-item:hover {
    box-shadow: 0 8px 24px rgba(26, 95, 106, 0.08);
    border-color: var(--teal-lightest);
}

.v2-timeline-item.open {
    background: white;
    box-shadow: 0 8px 32px rgba(26, 95, 106, 0.08);
    border-color: var(--teal-lightest);
}

.v2-timeline-dot {
    position: absolute;
    left: -52px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(26, 95, 106, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.v2-timeline-item.open .v2-timeline-dot {
    background: var(--teal-dark);
    transform: translateY(-50%) scale(1.1);
}

.v2-timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    font-weight: 600;
    font-size: 1rem;
    color: var(--teal-dark);
    line-height: 1.4;
}

.v2-timeline-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--teal-lightest);
    color: var(--teal-dark);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: var(--space-sm);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}

.v2-timeline-item.open .v2-timeline-toggle {
    background: var(--teal);
    color: white;
    transform: rotate(45deg);
}

.v2-timeline-body {
    display: none;
    padding: 0 var(--space-lg) var(--space-md);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    animation: v2-faq-slide-down 0.3s ease;
}

.v2-timeline-item.open .v2-timeline-body {
    display: block;
}

/* ============================================
   TESTIMONIALS GRID
   ============================================ */
.v2-testimonials {
    padding: var(--v2-section-gap) 0;
    background: var(--cream);
    position: relative;
}

.v2-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.v2-testimonial {
    background: white;
    border: 1px solid rgba(26, 95, 106, 0.06);
    padding: var(--space-lg);
    border-radius: var(--v2-card-radius);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.v2-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(26, 95, 106, 0.08);
}

.v2-testimonial::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    right: 1.2rem;
    font-size: 3.5rem;
    font-family: Georgia, serif;
    color: var(--teal-lightest);
    line-height: 1;
    pointer-events: none;
    opacity: 0.7;
}

.v2-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-sm);
    color: var(--v2-star-color, var(--mint));
}

.v2-testimonial p {
    font-size: 0.95rem;
    line-height: 1.75;
    font-style: italic;
    color: var(--text);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.v2-testimonial-footer {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-xs);
    border-top: 1px solid var(--cream-dark);
}

.v2-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal-lightest);
    color: var(--teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.v2-testimonial-footer cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--teal-dark);
}

/* --- Verified Buyer Badge --- */
.v2-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--teal);
    background: var(--mint-light);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: var(--space-xs);
    width: 100%;
}

.v2-verified-badge::before {
    content: '\2713';
    font-size: 0.65rem;
}

/* ============================================
   COUNTERARGUMENT
   ============================================ */
.v2-counterargument {
    padding: var(--v2-section-gap) 0;
    background: linear-gradient(160deg, var(--cream) 0%, var(--teal-lightest) 70%, var(--mint-light) 100%);
}

.v2-counter-card {
    max-width: 840px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    gap: var(--space-xl);
    align-items: center;
    background: white;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--v2-card-radius);
    box-shadow: 0 16px 48px rgba(26, 95, 106, 0.08);
}

.v2-counter-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(26, 95, 106, 0.08);
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.v2-counter-content h2 {
    font-size: clamp(1.25rem, 3vw, 1.55rem);
    color: var(--teal-dark);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.v2-counter-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: var(--space-sm);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.v2-comparison {
    padding: var(--v2-section-gap) 0;
    background: var(--cream-dark);
}

.v2-comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    max-width: 920px;
    margin: 0 auto;
}

.v2-comp-col {
    background: white;
    border: 1px solid rgba(26, 95, 106, 0.06);
    border-radius: var(--v2-card-radius);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.v2-comp-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.v2-comp-course::before {
    background: linear-gradient(90deg, var(--teal) 0%, var(--mint) 100%);
}

.v2-comp-course {
    border-color: var(--teal-lightest);
    border-width: 2px;
}

.v2-comp-free::before {
    background: linear-gradient(90deg, var(--text-light) 0%, var(--cream-dark) 100%);
}

.v2-comp-col h3 {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--cream-dark);
}

.v2-comp-course h3 {
    color: var(--teal-dark);
}

.v2-comp-free h3 {
    color: var(--text-muted);
}

.v2-comp-col ul {
    list-style: none;
}

.v2-comp-col li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--cream);
}

.v2-comp-col li:last-child {
    border-bottom: none;
}

.v2-comp-col li.pro::before,
.v2-comp-col li.con::before {
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 50%;
}

.v2-comp-col li.pro::before {
    content: '\2713';
    background: var(--teal-lightest);
    color: var(--teal-dark);
}

.v2-comp-col li.con::before {
    content: '\2717';
    background: var(--pink-light);
    color: var(--pink-dark);
}

/* --- Comparison Header Image --- */
.v2-comp-header-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.v2-comp-header-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.v2-pricing {
    padding: var(--v2-section-gap) 0;
    background: var(--v2-pricing-bg, linear-gradient(160deg, #14454d 0%, var(--teal-dark) 35%, #1a7f8a 70%, #1a6b6a 100%));
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}

.v2-pricing::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.v2-pricing::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(143, 212, 200, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.v2-pricing .section-title {
    color: white;
    position: relative;
    z-index: 1;
}

.v2-pricing .section-intro {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

/* --- V2 Module List (circle-numbered curriculum) --- */
.v2-modules .modules-list {
    max-width: 800px;
}

.v2-modules .module-number {
    background: var(--v2-module-number-bg, var(--teal));
    color: white;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    min-width: auto;
}

.v2-modules .module-item.module-highlight {
    background: var(--v2-module-highlight-bg, linear-gradient(135deg, var(--mint-light) 0%, white 100%));
    border-left: 4px solid var(--v2-module-highlight-border, var(--teal));
}

.v2-modules .module-highlight .module-number {
    background: var(--v2-module-highlight-number-bg, var(--teal-dark));
}

/* --- Pricing Featured Card: Animated Border Glow --- */
.v2-pricing-featured {
    background-image: linear-gradient(white, white), var(--v2-pricing-border-gradient, linear-gradient(135deg, var(--teal), var(--mint), var(--teal-dark), var(--teal)));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 3px solid transparent;
    animation: v2-pricing-pulse 3s ease-in-out infinite;
}

@keyframes v2-pricing-pulse {
    0%, 100% { box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2), 0 0 0 0 var(--v2-pricing-glow-soft, rgba(26, 143, 122, 0.1)); }
    50% { box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2), 0 0 30px 8px var(--v2-pricing-glow-strong, rgba(26, 143, 122, 0.15)); }
}

.v2-pricing-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-lg);
    max-width: 980px;
    margin: 0 auto;
    padding-top: 16px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.v2-pricing-card {
    background: white;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--v2-card-radius);
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.v2-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

.v2-pricing-featured {
    border: 3px solid var(--v2-featured-border, var(--peach));
    transform: scale(1.04);
}

.v2-pricing-featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.v2-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--v2-badge-gradient, linear-gradient(135deg, var(--peach) 0%, var(--orange) 100%));
    color: var(--v2-badge-color, var(--text));
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 4px 16px var(--v2-badge-shadow, rgba(232, 148, 90, 0.35));
}

.v2-pricing-card h3 {
    font-size: 1.35rem;
    color: var(--teal-dark);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.v2-pricing-value {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.v2-pricing-prices {
    margin-bottom: var(--space-xs);
}

.v2-pricing-card .price-old {
    font-size: 1.15rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: var(--space-xs);
}

.v2-pricing-card .price-new {
    font-size: 2.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--teal-dark);
    letter-spacing: -0.02em;
}

.v2-pricing-discount {
    display: inline-block;
    background: var(--v2-discount-bg, linear-gradient(135deg, var(--peach-light) 0%, rgba(245, 184, 138, 0.5) 100%));
    color: var(--v2-discount-color, var(--color-warning-text, #7a3a15));
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
}

.v2-pricing-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.v2-pricing-includes {
    text-align: left;
}

.v2-pricing-includes h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--teal);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-md);
    font-weight: 700;
}

.v2-pricing-includes h4:first-child {
    margin-top: 0;
}

.v2-pricing-features {
    text-align: left;
    margin-bottom: var(--space-sm);
    list-style: none;
}

.v2-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    padding: 0.4rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.v2-pricing-features li::before {
    content: '\2713';
    color: var(--teal);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}

.v2-pricing-bonuses li::before {
    content: '\1F381';
}

.v2-pricing-missing {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    background: var(--cream);
    border-radius: 10px;
    line-height: 1.5;
}

.v2-pricing-guarantee {
    margin-top: var(--space-md);
    font-size: 0.88rem;
    color: var(--teal);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.v2-pricing-basic {
    opacity: 0.95;
}

.v2-pricing-card .btn-primary {
    background: var(--v2-cta-gradient);
    border-color: transparent;
    font-size: 1.05rem;
    padding: 1rem 2rem;
    border-radius: 14px;
    width: 100%;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.v2-pricing-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--v2-glow-teal);
    background: var(--v2-cta-hover, var(--v2-cta-gradient));
}

/* --- Pricing Micro-Copy --- */
.v2-pricing-savings {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: var(--space-sm);
}

.v2-pricing-urgency {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: var(--space-sm);
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--teal-lightest) 100%);
    border-radius: var(--radius-sm);
    display: inline-block;
}

.v2-pricing-access {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
    margin-bottom: var(--space-sm);
}

/* --- Payment Trust Icons --- */
.v2-payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.v2-payment-icon {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    padding: 0.25rem 0.6rem;
    border: 1px solid var(--cream-dark);
    border-radius: 4px;
    background: var(--cream);
}

/* ============================================
   BONUS CARDS
   ============================================ */
.v2-bonuses {
    padding: var(--v2-section-gap) 0;
    background: linear-gradient(180deg, white 0%, var(--cream) 100%);
}

.v2-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1100px;
    margin: 0 auto;
}

.v2-bonus-card {
    background: white;
    border: 1px solid var(--v2-bonus-border, var(--peach-light));
    border-radius: var(--v2-card-radius);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.v2-bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--v2-bonus-bar, linear-gradient(90deg, var(--peach) 0%, var(--orange) 100%));
}

.v2-bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px var(--v2-bonus-glow, rgba(245, 184, 138, 0.2));
}

.v2-bonus-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-md);
    aspect-ratio: 3 / 2;
    background: var(--cream-dark);
}

.v2-bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-bonus-value {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--v2-bonus-value-bg, linear-gradient(135deg, var(--peach-light) 0%, var(--peach) 100%));
    color: var(--teal-dark);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-sm);
}

.v2-bonus-card h3 {
    font-size: 1.05rem;
    color: var(--teal-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.v2-bonus-card > p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

/* ============================================
   VALUE JUSTIFICATION
   ============================================ */
.v2-value {
    padding: var(--v2-section-gap) 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.v2-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.v2-value-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--cream);
    border-radius: var(--v2-card-radius);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.v2-value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 95, 106, 0.06);
}

.v2-value-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--teal);
    color: white;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 12px rgba(26, 95, 106, 0.2);
}

.v2-value-item h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--teal-dark);
}

.v2-value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Value Hero Background --- */
.v2-value-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.08;
    pointer-events: none;
}

.v2-value-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-value .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   ZSENIFESZEK NOTE
   ============================================ */
.v2-zsenifeszek {
    padding: var(--space-xl) 0;
    background: var(--cream-dark);
}

.v2-zsenifeszek-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: white;
    border-radius: var(--v2-card-radius);
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--v2-zs-border, var(--peach-light));
}

.v2-zsenifeszek-card h3 {
    font-size: 1.2rem;
    color: var(--teal-dark);
    margin-bottom: var(--space-sm);
}

.v2-zsenifeszek-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

/* ZseniFészek Note in related courses */
.v2-zsenifeszek-note {
    text-align: center;
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: white;
    border-radius: var(--radius-md);
    border: 2px solid var(--v2-zs-border, var(--mint-light));
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.v2-zsenifeszek-note p {
    font-size: 1rem;
    color: var(--text);
    margin: 0;
}

.v2-zsenifeszek-note a {
    color: var(--teal);
    text-decoration: underline;
}

.v2-zsenifeszek-note a:hover {
    color: var(--teal-dark);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.v2-faq {
    padding: var(--v2-section-gap) 0;
    background: var(--cream-dark);
}

.v2-faq .faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.v2-faq .faq-item {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: box-shadow var(--transition-fast);
}

.v2-faq .faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.v2-faq .faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--teal-dark);
    line-height: 1.4;
    list-style: none;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.v2-faq .faq-item summary::-webkit-details-marker {
    display: none;
}

.v2-faq .faq-item summary::marker {
    display: none;
    content: '';
}

.v2-faq .faq-item summary::after {
    content: '+';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--teal-lightest);
    color: var(--teal-dark);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: var(--space-sm);
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.v2-faq .faq-item[open] summary::after {
    content: '−';
    background: var(--teal);
    color: white;
    transform: rotate(180deg);
}

.v2-faq .faq-item summary:hover {
    background: var(--cream);
}

.v2-faq .faq-item[open] summary {
    background: var(--teal-lightest);
    border-bottom: 1px solid var(--cream-dark);
}

.v2-faq .faq-item p {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    animation: v2-faq-slide-down 0.3s ease;
}

@keyframes v2-faq-slide-down {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   LEAD MAGNET FORM
   ============================================ */
.v2-lead-magnet {
    padding: var(--v2-section-gap) 0;
    background: var(--v2-lead-bg, linear-gradient(160deg, var(--peach-light) 0%, var(--cream-warm) 40%, var(--cream) 100%));
}

.v2-lead-card {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--v2-lead-border, rgba(245, 184, 138, 0.2));
    border-radius: var(--v2-card-radius);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.v2-lead-content h2 {
    color: var(--teal-dark);
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.v2-lead-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.v2-lead-free {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--teal);
}

.v2-lead-card input[type="email"] {
    font-size: 16px;
}

/* --- Lead Magnet Image --- */
.v2-lead-image {
    max-width: 340px;
    margin: 0 auto var(--space-lg);
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
}

.v2-lead-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: drop-shadow(0 12px 32px rgba(26, 95, 106, 0.18));
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.v2-guarantee {
    padding: var(--v2-section-gap) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--mint-light) 50%, var(--teal-lightest) 100%);
}

.v2-guarantee-card {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(178, 223, 219, 0.15) 0%, white 50%, rgba(178, 223, 219, 0.1) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--mint);
}

.v2-guarantee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--teal-lightest) 100%);
    border-radius: 50%;
    margin-bottom: var(--space-md);
    color: var(--teal-dark);
    box-shadow: 0 4px 20px rgba(26, 143, 122, 0.15);
}

.v2-guarantee-icon svg {
    width: 56px;
    height: 56px;
}

.v2-guarantee-card h2 {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    color: var(--teal-dark);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.v2-guarantee-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.v2-guarantee-highlight {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--teal-dark);
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--mint-light);
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* ============================================
   FINAL CTA
   ============================================ */
.v2-final-cta {
    padding: var(--v2-section-gap) 0;
    background: linear-gradient(160deg, var(--teal-lightest) 0%, var(--mint-light) 40%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.v2-final-cta::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 95, 106, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.v2-final-cta-content {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.v2-final-cta-content h2 {
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    color: var(--teal-dark);
    margin-bottom: var(--space-md);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.v2-final-cta-content p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: var(--space-lg);
}

.v2-final-cta-content .btn {
    font-size: 1.12rem;
    padding: 1.15rem 2.8rem;
    background: var(--v2-cta-gradient);
    border-color: transparent;
    animation: v2-pulse-glow 2.8s ease-in-out infinite;
    border-radius: 14px;
    letter-spacing: 0.02em;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.v2-final-cta-content .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px var(--v2-glow-teal);
    background: var(--v2-cta-hover, var(--v2-cta-gradient));
}

.v2-final-guarantee {
    margin-top: var(--space-lg);
    font-size: 0.92rem;
    color: var(--teal);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

/* ============================================
   ADDITIONAL COURSES
   ============================================ */
.v2-additional {
    padding: var(--v2-section-gap) 0;
    background: var(--cream-dark);
}

.v2-additional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.v2-additional-card {
    background: white;
    border-radius: var(--v2-card-radius);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    text-decoration: none;
    color: var(--text);
    display: block;
    border-top: 4px solid var(--v2-additional-border, var(--teal-light));
}

.v2-additional-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(26, 95, 106, 0.1);
}

.v2-additional-card-image {
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--cream-dark);
}

.v2-additional-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.v2-additional-card:hover .v2-additional-card-image img {
    transform: scale(1.05);
}

.v2-additional-card-body {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.v2-additional-card-body h3 {
    font-size: 1.1rem;
    color: var(--teal-dark);
    margin-bottom: var(--space-xs);
}

.v2-additional-card-body p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.v2-additional-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal);
}

/* ============================================
   STICKY CTA
   ============================================ */
.v2-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 -4px 24px rgba(26, 95, 106, 0.12);
    padding: 0.85rem var(--space-md);
    padding-bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-sticky-cta.visible {
    transform: translateY(0);
}

.v2-sticky-cta-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--teal-dark);
}

.v2-sticky-cta-text .sticky-price {
    color: var(--v2-sticky-price-color, var(--teal));
}

.v2-sticky-cta .btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.92rem;
    background: var(--v2-cta-gradient);
    border-color: transparent;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v2-sticky-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--v2-glow-teal);
    background: var(--v2-cta-hover, var(--v2-cta-gradient));
}

/* ============================================
   WAVE DIVIDERS
   ============================================ */
.v2-wave-divider {
    line-height: 0;
    overflow: hidden;
    margin-top: -1px;
}

.v2-wave-divider svg {
    width: 100%;
    height: 40px;
    display: block;
}

.v2-wave-hero {
    background: var(--v2-hero-gradient);
}

.v2-wave-pricing {
    color: var(--cream);
    background: var(--v2-pricing-bg, linear-gradient(160deg, #14454d 0%, var(--teal-dark) 35%, #1a7f8a 70%, #1a6b6a 100%));
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.v2-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mint) 0%, var(--teal) 50%, #1a8f7a 100%);
    z-index: 9999;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* ============================================
   SECTION IMAGES
   ============================================ */
.v2-section-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.v2-section-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v2-section-image:hover img {
    transform: scale(1.02);
}

.v2-section-image--16x9 {
    aspect-ratio: 16 / 9;
}

.v2-section-image--16x9 img {
    height: 100%;
}

.v2-section-image--3x2 {
    aspect-ratio: 3 / 2;
}

.v2-section-image--3x2 img {
    height: 100%;
}

/* Problem card images */
.problem-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.problem-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: saturate(0.85);
}

.problem-card:hover .problem-card-image img {
    transform: scale(1.05);
    filter: saturate(1);
}

/* Deep dive card image flush to edges */
.v2-deep-dive-card .v2-section-image {
    margin-left: calc(-1 * clamp(2rem, 5vw, 3.5rem));
    margin-right: calc(-1 * clamp(2rem, 5vw, 3.5rem));
    margin-top: calc(-1 * clamp(2rem, 5vw, 3.5rem));
    width: calc(100% + 2 * clamp(2rem, 5vw, 3.5rem));
    border-radius: 0;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* Bridge card image flush to edges */
.v2-bridge-card .v2-section-image {
    margin-left: calc(-1 * clamp(2rem, 5vw, 3rem));
    margin-right: calc(-1 * clamp(2rem, 5vw, 3rem));
    margin-top: calc(-1 * clamp(2rem, 5vw, 3rem));
    width: calc(100% + 2 * clamp(2rem, 5vw, 3rem));
    border-radius: 0;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

/* Final CTA section image */
.v2-final-cta-content .v2-section-image {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 95, 106, 0.15), 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.v2-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-reveal.v2-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children for grid layouts */
.v2-bento-grid .v2-reveal:nth-child(2) { transition-delay: 0.1s; }
.v2-bento-grid .v2-reveal:nth-child(3) { transition-delay: 0.2s; }
.v2-bento-grid .v2-reveal:nth-child(4) { transition-delay: 0.3s; }

.v2-bonuses-grid .v2-reveal:nth-child(2) { transition-delay: 0.1s; }
.v2-bonuses-grid .v2-reveal:nth-child(3) { transition-delay: 0.2s; }

.v2-testimonials-grid .v2-reveal:nth-child(2) { transition-delay: 0.1s; }
.v2-testimonials-grid .v2-reveal:nth-child(3) { transition-delay: 0.15s; }
.v2-testimonials-grid .v2-reveal:nth-child(4) { transition-delay: 0.2s; }
.v2-testimonials-grid .v2-reveal:nth-child(5) { transition-delay: 0.25s; }

.v2-value-grid .v2-reveal:nth-child(2) { transition-delay: 0.1s; }
.v2-value-grid .v2-reveal:nth-child(3) { transition-delay: 0.2s; }

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.v2-section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--teal-dark);
    line-height: 1.25;
    margin-bottom: var(--space-lg);
    text-align: center;
    letter-spacing: -0.02em;
}

.v2-section-intro {
    text-align: center;
    max-width: 660px;
    margin: 0 auto var(--space-lg);
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Shared button enhancements */
.v2-deep-dive-card .btn,
.v2-bridge-card .btn {
    border-radius: 14px;
    font-size: 1.02rem;
    padding: 0.95rem 2rem;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.v2-deep-dive-card .btn:hover,
.v2-bridge-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--v2-glow-teal);
}

/* ============================================
   ANIMATION KEYFRAMES
   ============================================ */
@keyframes v2-slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes v2-imageIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes v2-pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(26, 127, 138, 0.2);
    }
    50% {
        box-shadow: 0 4px 28px rgba(26, 127, 138, 0.35);
    }
}

@keyframes v2-faq-slide-down {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes v2-counter-pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes v2-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.v2-metric-card.animated .v2-metric-number {
    animation: v2-counter-pop 0.5s ease forwards;
}

/* ============================================
   RESPONSIVE: TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
    .v2-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .v2-hero-content {
        order: 2;
    }

    .v2-hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .v2-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .v2-hero-cta {
        justify-content: center;
    }

    .v2-hero-trust {
        justify-content: center;
    }

    .v2-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v2-bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .v2-bento-grid .problem-card:first-child {
        grid-row: auto;
    }

    .v2-persona-grid {
        grid-template-columns: 1fr 1fr;
    }

    .v2-persona-grid .v2-persona-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }

    .v2-instructor-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .v2-counter-card {
        grid-template-columns: 1fr;
    }

    .v2-counter-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .v2-video-grid {
        max-width: 540px;
    }

    .v2-bonuses-grid {
        grid-template-columns: 1fr 1fr;
    }

    .v2-additional-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   RESPONSIVE: MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
    .v2-urgency-banner {
        flex-wrap: wrap;
        gap: var(--space-xs);
        font-size: 0.8rem;
        padding: 0.5rem var(--space-sm);
    }

    .v2-hero {
        padding-top: calc(70px + var(--space-xl));
        min-height: auto;
    }

    .v2-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .v2-bento-grid {
        grid-template-columns: 1fr;
    }

    .v2-bento-grid .problem-card {
        padding: var(--space-md);
    }

    .problem-card-image {
        aspect-ratio: 4 / 3;
    }

    .v2-persona-grid {
        grid-template-columns: 1fr;
    }

    .v2-persona-grid .v2-persona-card:last-child {
        max-width: 100%;
    }

    .v2-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .v2-comparison-table {
        grid-template-columns: 1fr;
    }

    .v2-comp-col {
        border-radius: var(--v2-card-radius);
    }

    .v2-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .v2-pricing-featured {
        transform: none;
        order: -1;
    }

    .v2-modules .module-item.module-highlight {
        border-left-width: 3px;
    }

    .v2-bonuses-grid {
        grid-template-columns: 1fr;
    }

    .v2-value-grid {
        grid-template-columns: 1fr;
    }

    .v2-lead-card {
        grid-template-columns: 1fr;
    }

    .v2-additional-grid {
        grid-template-columns: 1fr;
    }

    .v2-timeline {
        padding-left: 42px;
    }

    .v2-timeline::before {
        left: 16px;
    }

    .v2-timeline-dot {
        left: -42px;
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .v2-counter-image {
        max-width: 320px;
    }

    .v2-video-grid {
        max-width: 100%;
    }

    .v2-sticky-cta {
        flex-direction: column;
        gap: var(--space-xs);
        padding: 0.75rem var(--space-md);
    }

    .v2-sticky-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .v2-sticky-cta-text {
        font-size: 0.85rem;
    }

    .v2-final-cta-content .btn {
        padding: 0.9rem 1.6rem;
        font-size: 1rem;
    }

    .v2-section-image {
        border-radius: 12px;
        margin-bottom: var(--space-md);
    }

    .v2-lead-image {
        max-width: 260px;
    }

    .v2-final-cta-content .v2-section-image {
        border-radius: 14px;
    }

    /* Mobile CTA zones - 56px min-height touch targets */
    .v2-hero-cta .btn,
    .v2-final-cta-content .btn,
    .v2-pricing-card .btn,
    .v2-sticky-cta .btn {
        min-height: 56px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .v2-hero-image img {
        max-height: 300px;
        object-fit: contain;
    }

    .v2-hero-social-proof {
        justify-content: center;
    }

    .v2-hero-price-anchor {
        display: block;
        text-align: center;
    }

    .v2-sticky-cta {
        padding: var(--space-sm) var(--space-md) calc(var(--space-sm) + env(safe-area-inset-bottom, 0px));
    }

    .v2-sticky-cta .btn {
        min-height: 52px;
        font-size: 0.95rem;
    }

    .v2-timeline-item:active {
        background: var(--mint-light);
    }

    .faq-item summary:active {
        background: var(--mint-light);
    }

    .v2-wave-divider svg {
        height: 24px;
    }
}

/* ============================================
   RESPONSIVE: SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
    .v2-hero-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .v2-hero-image {
        max-width: 100%;
    }

    .v2-hero-cta .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.4rem;
        font-size: 0.98rem;
    }

    .v2-urgency-banner {
        font-size: 0.72rem;
        padding: 0.4rem var(--space-xs);
    }

    .v2-urgency-banner .uc-segment {
        padding: 0.15rem 0.35rem;
        font-size: 0.75rem;
        min-width: 1.6rem;
    }

    .v2-metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xs);
    }

    .v2-metric-card {
        padding: var(--space-sm) var(--space-xs);
    }

    .v2-metric-number {
        font-size: 1.5rem;
    }

    .v2-metric-label {
        font-size: 0.78rem;
    }

    .v2-bento-grid .problem-card {
        padding: var(--space-sm);
    }

    .problem-card-image {
        aspect-ratio: 3 / 2;
        border-radius: 8px;
    }

    .v2-deep-dive-card,
    .v2-bridge-card {
        padding: var(--space-md);
    }

    .v2-deep-dive-card .v2-section-image {
        margin-left: calc(-1 * var(--space-md));
        margin-right: calc(-1 * var(--space-md));
        margin-top: calc(-1 * var(--space-md));
        width: calc(100% + 2 * var(--space-md));
    }

    .v2-bridge-card .v2-section-image {
        margin-left: calc(-1 * var(--space-md));
        margin-right: calc(-1 * var(--space-md));
        margin-top: calc(-1 * var(--space-md));
        width: calc(100% + 2 * var(--space-md));
    }

    .v2-counter-card {
        padding: var(--space-md);
    }

    .v2-counter-image {
        max-width: 280px;
    }

    .v2-lead-image {
        max-width: 200px;
    }

    .v2-lead-card {
        padding: var(--space-md);
    }

    .v2-comp-header-image {
        border-radius: 8px;
    }

    .v2-final-cta-content .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.2rem;
        font-size: 0.95rem;
    }

    .v2-sticky-cta {
        padding: 0.6rem var(--space-sm);
    }

    .v2-sticky-cta .btn {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }

    .v2-pricing-card {
        padding: var(--space-md);
    }

    .v2-timeline-header span:first-child {
        font-size: 0.92rem;
    }

    .v2-section-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .v2-avatar-circle {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .v2-hero-content,
    .v2-hero-image,
    .v2-hero-float {
        animation: none !important;
    }

    .v2-hero-cta .btn-primary,
    .v2-final-cta-content .btn,
    .v2-pricing-card,
    .v2-pricing-featured .v2-pricing-badge {
        animation: none !important;
    }

    .v2-urgency-banner .urgency-text svg {
        animation: none;
    }

    .v2-sticky-cta {
        transition: none;
    }

    .v2-metric-card.animated .v2-metric-number {
        animation: none;
    }

    .v2-section-image:hover img,
    .problem-card:hover .problem-card-image img {
        transform: none;
        filter: none;
    }

    .v2-bento-grid .problem-card:hover,
    .v2-metric-card:hover,
    .v2-video-card:hover,
    .v2-bonus-card:hover {
        transform: none;
    }

    .v2-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .v2-urgency-banner,
    .v2-sticky-cta,
    .v2-progress-bar {
        display: none;
    }
}

/* ============================================
   BAGOLYKALAND ORIGIN BADGE — Instructor Blocks
   ============================================ */
.instructor-origin,
.v2-instructor-origin,
.expert-bagolykaland,
.about-bagolykaland {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.6rem 0 1rem;
    padding: 0.5rem 0.85rem;
    background: var(--teal-lightest);
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--radius-sm, 6px) var(--radius-sm, 6px) 0;
    font-size: 0.85rem;
    color: var(--teal-dark);
    line-height: 1.4;
}

.instructor-origin img,
.v2-instructor-origin img,
.expert-bagolykaland img,
.about-bagolykaland img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    flex-shrink: 0;
    object-fit: contain;
}

.instructor-origin a,
.v2-instructor-origin a,
.expert-bagolykaland a,
.about-bagolykaland a {
    color: var(--teal-dark);
    font-weight: 600;
    text-decoration: none;
}

.instructor-origin a:hover,
.v2-instructor-origin a:hover,
.expert-bagolykaland a:hover,
.about-bagolykaland a:hover {
    text-decoration: underline;
}
