/* ============================================
   ZSENIFESZEK — Page-Specific V2 Overrides
   Extends v2-landing.css with colorful subscription
   brand palette: teal/mint/lavender/peach/pink

   Modern Frontend Design Optimization — 2026-03-03
   Glassmorphism | Bento Grid | Fluid Typography
   Layered Shadows | Micro-interactions
   ============================================ */

/* --- Page Accent Colors --- */
:root {
    --v2-hero-gradient: linear-gradient(135deg, #e8f5f3 0%, #fef9f5 40%, #f5f0f8 100%);
    --v2-cta-gradient: linear-gradient(135deg, var(--orange) 0%, var(--peach-dark) 100%);
    --v2-cta-hover: linear-gradient(135deg, #e8945a 0%, #d4885e 100%);
    --v2-hero-blob1: var(--mint);
    --v2-hero-blob2: var(--lavender);
    --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(--mint-light) 0%, var(--teal-lightest) 100%);
    --v2-banner-gradient: linear-gradient(135deg, var(--peach) 0%, var(--pink) 50%, var(--lavender) 100%);
    --v2-star-color: #f5a623;
    --v2-bullet-color: var(--teal);
    --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: white;
    --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-sticky-price-color: var(--orange);
    --v2-glow-teal: rgba(232, 148, 90, 0.25);

    /* Fluid Typography */
    --fluid-hero: clamp(1.6rem, 3.5vw + 0.8rem, 2.6rem);
    --fluid-h2: clamp(1.35rem, 2.5vw + 0.6rem, 2rem);
    --fluid-body: clamp(0.95rem, 0.5vw + 0.85rem, 1.05rem);

    /* Layered Shadows */
    --shadow-glass: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
    --shadow-glass-hover: 0 4px 12px rgba(0, 0, 0, 0.06), 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-elevated: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.08);
}


/* ============================================
   FLUID TYPOGRAPHY
   ============================================ */

.v2-hero-title {
    font-size: var(--fluid-hero);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.section-title,
.v2-section-title {
    font-size: var(--fluid-h2);
    letter-spacing: -0.01em;
}

.v2-hero-subtitle,
.v2-hero-tagline,
.problem-intro {
    font-size: var(--fluid-body);
    line-height: 1.65;
}


/* ============================================
   HERO — Subtle Noise Texture & Enhancements
   ============================================ */

/* Noise overlay for hero depth */
.v2-hero::before {
    background: var(--v2-hero-blob1);
}
.v2-hero::after {
    background: var(--v2-hero-blob2);
}

/* Hero image: organic shape with layered shadow */
.v2-hero-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-elevated);
}

/* Hero trust items: glass pills */
.v2-hero-trust {
    gap: var(--space-sm);
}

.trust-item {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
    font-size: 0.82rem;
    transition: background 0.2s, box-shadow 0.2s;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 16px rgba(26, 95, 106, 0.1);
}

/* --- Badge shine animation for featured pricing --- */
.v2-pricing-featured .v2-pricing-badge {
    animation: zf-badge-shine 3s ease-in-out infinite;
}

@keyframes zf-badge-shine {
    0%, 100% { box-shadow: 0 4px 16px rgba(232, 148, 90, 0.35); }
    50% { box-shadow: 0 6px 24px rgba(232, 148, 90, 0.55); }
}

/* --- Hero CTA uses warm orange glow --- */
.v2-hero-cta .btn-primary {
    animation: zf-cta-glow 2.8s ease-in-out infinite;
}

@keyframes zf-cta-glow {
    0%, 100% { box-shadow: 0 4px 16px rgba(232, 148, 90, 0.3); }
    50% { box-shadow: 0 4px 28px rgba(232, 148, 90, 0.5); }
}

/* --- Urgency banner: warm sunset gradient --- */
.v2-urgency-banner {
    background: var(--v2-banner-gradient);
}

/* --- Testimonial stars: gold color --- */
.v2-stars {
    color: #f5a623;
}

/* --- Guarantee card: warm mint accent --- */
.v2-guarantee-card {
    border-color: var(--mint);
}

/* --- Final CTA warm gradient --- */
.v2-final-cta {
    background: linear-gradient(160deg, #e8f5f3 0%, #fef9f5 40%, #f5f0f8 100%);
}

/* --- Sticky CTA warm button glow --- */
.v2-sticky-cta .btn {
    background: var(--v2-cta-gradient);
}

/* --- Sticky CTA separator on mobile --- */
.sticky-sep {
    color: rgba(255,255,255,0.4);
}
@media (max-width: 600px) {
    .v2-sticky-cta-text .sticky-sep,
    .v2-sticky-cta-text .sticky-sep ~ span:not(.sticky-price) {
        display: none;
    }
}

/* --- Hero secondary link --- */
.v2-hero-secondary-link {
    display: inline-block;
    margin-top: var(--space-sm);
    color: var(--teal-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s, transform 0.2s;
}
.v2-hero-secondary-link:hover {
    color: var(--teal);
    text-decoration: underline;
    transform: translateY(-1px);
}

/* --- Final CTA dual buttons --- */
.zf-final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-md);
}
.zf-final-cta-buttons .btn-outline {
    color: var(--teal-dark);
    border-color: var(--teal-dark);
}
.zf-final-cta-buttons .btn-outline:hover {
    background: var(--teal-dark);
    color: white;
}


/* ============================================
   SECTION IMAGES — Organic Frames
   ============================================ */

.section-image {
    border-radius: 28px;
    box-shadow: var(--shadow-elevated);
    transition: box-shadow 0.4s ease;
}

.section-image:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05), 0 12px 48px rgba(0, 0, 0, 0.1), 0 24px 64px rgba(0, 0, 0, 0.06);
}

/* Dream image: asymmetric organic radius */
.section-image--dream {
    border-radius: 32px 24px 28px 20px;
}

/* Community image: soft organic radius */
.section-image--community {
    border-radius: 20px 28px 24px 32px;
}


/* ============================================
   1. PROBLEM SECTION — Bento Grid + Glass
   ============================================ */

/* Bento grid: first 2 cards span wider for visual hierarchy */
.problem-grid {
    grid-template-columns: repeat(6, 1fr);
}

.problem-card:nth-child(1) {
    grid-column: span 3;
}
.problem-card:nth-child(2) {
    grid-column: span 3;
}
.problem-card:nth-child(3) {
    grid-column: span 2;
}
.problem-card:nth-child(4) {
    grid-column: span 2;
}
.problem-card:nth-child(5) {
    grid-column: span 2;
}
.problem-card:nth-child(6) {
    grid-column: span 6;
}

/* Glassmorphism on problem cards */
.problem-card {
    border-left: 4px solid var(--card-color);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-glass);
}

/* Gradient icon backgrounds with stronger depth */
.problem-icon {
    background: linear-gradient(145deg,
        color-mix(in srgb, var(--card-color) 30%, white),
        color-mix(in srgb, var(--card-color) 60%, white));
    border-radius: 18px;
    position: relative;
}

/* Subtle gradient overlay on card hover */
.problem-card:hover {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, color-mix(in srgb, var(--card-color) 6%, white) 100%);
    box-shadow: var(--shadow-glass-hover);
    transform: translateY(-6px) scale(1.01);
}

/* Last problem card: full width emphasis */
.problem-card:nth-child(6) {
    text-align: center;
}

.problem-card:nth-child(6) .problem-icon {
    margin-left: auto;
    margin-right: auto;
}

/* Problem conclusion — enhanced */
.problem-conclusion {
    position: relative;
    border-left-width: 6px;
    border-left-color: var(--teal);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.problem-conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(90deg, transparent, rgba(127, 204, 200, 0.08));
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    pointer-events: none;
}


/* ============================================
   2. PERSONA SECTION — Glassmorphism Cards
   ============================================ */

/* Glass card treatment */
.persona-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-glass);
}

.persona-card:hover {
    box-shadow: var(--shadow-glass-hover);
}

/* Avatar glow ring per tier */
.persona-lila .persona-avatar {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
                0 0 0 4px rgba(149, 133, 170, 0.25);
    border-color: #c4b8d6;
}

.persona-turkiz .persona-avatar {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
                0 0 0 4px rgba(26, 95, 106, 0.2);
    border-color: #8fd4c8;
}

.persona-rozsaszin .persona-avatar {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
                0 0 0 4px rgba(229, 163, 181, 0.25);
    border-color: #f2c4d0;
}

/* Enhanced quote styling — glass */
.persona-quote {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--radius-sm);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.persona-quote::before {
    opacity: 0.35;
    font-size: 3.5rem;
    top: -6px;
    left: 2px;
}

/* Tier badge polish */
.persona-lila .persona-tier-tag {
    border: 1px solid rgba(149, 133, 170, 0.3);
}

.persona-turkiz .persona-tier-tag {
    box-shadow: 0 2px 8px rgba(26, 95, 106, 0.15);
}

.persona-rozsaszin .persona-tier-tag {
    border: 1px solid rgba(229, 163, 181, 0.3);
}

/* Persona closing highlight */
.persona-closing-highlight {
    background: linear-gradient(135deg, var(--teal) 0%, #1a7f8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ============================================
   3. DREAM SECTION — Enhanced
   ============================================ */

/* Dream items: glass card treatment */
.dream-item {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-glass);
}

/* Staggered indentation for visual flow */
.dream-item:nth-child(even) {
    margin-left: 2rem;
}

/* Animated check icon on hover */
.dream-icon {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dream-item:hover .dream-icon {
    transform: scale(1.15);
    background: linear-gradient(135deg, var(--teal-lightest), var(--mint));
    box-shadow: 0 4px 12px rgba(26, 95, 106, 0.15);
}

.dream-icon svg {
    transition: transform 0.3s ease;
}

.dream-item:hover .dream-icon svg {
    transform: scale(1.1);
}

/* Enhanced border on hover */
.dream-item:hover {
    border-left-width: 6px;
    box-shadow: var(--shadow-glass-hover);
}

/* Dream transition block polish — glass */
.dream-transition {
    border: 2px solid var(--mint);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dream-transition::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: var(--mint-light);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}

@media (max-width: 768px) {
    .dream-item:nth-child(even) {
        margin-left: 0;
    }
}


/* ============================================
   4. TIERS SECTION — Glass + Layered Shadows
   ============================================ */

/* Glassmorphism on tier cards */
.tier-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-glass);
}

.tier-card:hover {
    box-shadow: var(--shadow-glass-hover);
}

/* Tier card top bar glow on hover */
.tier-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.tier-card.tier-sos::after {
    background: linear-gradient(180deg, rgba(149, 133, 170, 0.1) 0%, transparent 100%);
}

.tier-card.tier-learn::after {
    background: linear-gradient(180deg, rgba(26, 95, 106, 0.08) 0%, transparent 100%);
}

.tier-card.tier-master::after {
    background: linear-gradient(180deg, rgba(229, 163, 181, 0.1) 0%, transparent 100%);
}

.tier-card:hover::after {
    opacity: 1;
}

/* Tier icon: larger container with colored background */
.tier-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.tier-card.tier-sos .tier-icon {
    background: linear-gradient(135deg, #e8e2f0 0%, #d9d0e6 100%);
}

.tier-card.tier-learn .tier-icon {
    background: linear-gradient(135deg, #d4efed 0%, #b8e2df 100%);
}

.tier-card.tier-master .tier-icon {
    background: linear-gradient(135deg, #fce8ed 0%, #f5d5df 100%);
}

/* Tier features — colored bullet backgrounds */
.tier-features li::before {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
}

.tier-card.tier-sos .tier-features li::before {
    background: rgba(149, 133, 170, 0.12);
}

.tier-card.tier-learn .tier-features li::before {
    background: rgba(26, 95, 106, 0.1);
}

.tier-card.tier-master .tier-features li::before {
    background: rgba(229, 163, 181, 0.12);
}

/* Tier quote decorative marks */
.tier-quote {
    position: relative;
}

.tier-quote::before {
    content: '\201C';
    position: absolute;
    top: 4px;
    left: 8px;
    font-size: 2.5rem;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.15;
    pointer-events: none;
}

.tier-card.tier-sos .tier-quote::before { color: #9585aa; }
.tier-card.tier-learn .tier-quote::before { color: #1a5f6a; }
.tier-card.tier-master .tier-quote::before { color: #e5a3b5; }


/* ============================================
   5. PRODUCT CARDS — Enhanced
   ============================================ */

/* Product cards: glass treatment */
.product-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow-glass);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-glass-hover);
}

/* Tier label: refined styling */
.card-tier-label {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    transition: transform 0.2s ease;
}

.product-card:hover .card-tier-label {
    transform: translateY(-1px);
}

/* Image overlay gradient on hover */
.product-card .product-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 95, 106, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover .product-card-image::after {
    opacity: 1;
}

/* Card content spacing refinement */
.product-card-content h3 {
    transition: color 0.2s ease;
}

.product-card:hover .product-card-content h3 {
    color: var(--teal);
}

/* Tier group header hover effect */
.tier-group-header {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.tier-group-header:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}


/* ============================================
   6. COMPARISON SECTION — Enhanced
   ============================================ */

/* Comparison cards: glass treatment */
.comparison-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-glass);
}

/* Highlight card: pulsing glow border */
.comparison-card.highlight {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.92);
}

.comparison-card.highlight::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg, var(--teal-light), var(--mint), var(--teal));
    z-index: -1;
    opacity: 0.6;
    animation: zf-comparison-glow 3s ease-in-out infinite;
}

@keyframes zf-comparison-glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

/* Comparison ribbon polish */
.comparison-ribbon {
    animation: zf-ribbon-shine 4s ease-in-out infinite;
}

@keyframes zf-ribbon-shine {
    0%, 100% { box-shadow: 0 2px 8px rgba(232, 148, 90, 0.3); }
    50% { box-shadow: 0 4px 16px rgba(232, 148, 90, 0.5); }
}

/* Pro/con icon backgrounds */
.comparison-card li.pro::before {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(95, 184, 168, 0.12);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.comparison-card li.con::before {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(229, 163, 181, 0.12);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.comparison-card.highlight li.pro::before {
    background: rgba(245, 184, 138, 0.2);
}

/* Non-highlight cards: subtle border on hover */
.comparison-card:not(.highlight):hover {
    border: 1px solid var(--cream-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glass-hover);
}

/* Comparison box refinement */
.comparison-box {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.comparison-box::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 180px;
    height: 180px;
    background: var(--peach);
    opacity: 0.12;
    border-radius: 50%;
    pointer-events: none;
}

.comparison-box .result {
    position: relative;
    display: inline-block;
    padding: 0.25rem 0;
}

.comparison-box .result::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    right: -4px;
    height: 8px;
    background: var(--peach);
    opacity: 0.3;
    border-radius: 4px;
}


/* ============================================
   7. COMMUNITY SECTION — Glass + Bento
   ============================================ */

/* Community cards: glassmorphism */
.community-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow-glass);
}

/* Community card inner glow on hover */
.community-card:hover {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, var(--cream) 100%);
    box-shadow: var(--shadow-glass-hover);
}

/* Community icon: subtle animation */
.community-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.community-card:hover .community-icon {
    transform: scale(1.08) rotate(-3deg);
}

/* Community detail badge */
.community-detail {
    position: relative;
    overflow: hidden;
}

.community-detail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(26, 95, 106, 0.04), transparent);
    animation: zf-detail-shimmer 3s ease-in-out infinite;
}

@keyframes zf-detail-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Monthly theme items: bento grid with glass */
.monthly-themes {
    grid-template-columns: repeat(4, 1fr);
}

.theme-item {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease, transform 0.3s ease;
}

.theme-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glass);
}

/* Colored month badges */
.theme-month {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.theme-item:nth-child(1) .theme-month { background: rgba(143, 212, 200, 0.25); }
.theme-item:nth-child(2) .theme-month { background: rgba(184, 169, 201, 0.25); }
.theme-item:nth-child(3) .theme-month { background: rgba(245, 184, 138, 0.25); }
.theme-item:nth-child(4) .theme-month { background: rgba(242, 196, 208, 0.25); }
.theme-item:nth-child(5) .theme-month { background: rgba(123, 204, 200, 0.25); }
.theme-item:nth-child(6) .theme-month { background: rgba(232, 148, 90, 0.2); }
.theme-item:nth-child(7) .theme-month { background: rgba(143, 212, 200, 0.25); }
.theme-item:nth-child(8) .theme-month { background: rgba(184, 169, 201, 0.25); }
.theme-item:nth-child(9) .theme-month { background: rgba(245, 184, 138, 0.25); }
.theme-item:nth-child(10) .theme-month { background: rgba(242, 196, 208, 0.25); }
.theme-item:nth-child(11) .theme-month { background: rgba(123, 204, 200, 0.25); }
.theme-item:nth-child(12) .theme-month { background: rgba(232, 148, 90, 0.2); }

/* Theme topic: slightly bolder */
.theme-topic {
    font-weight: 500;
    color: var(--text);
    font-size: 0.82rem;
}


/* ============================================
   8. FUTURE PACING — Enhanced Glassmorphism
   ============================================ */

.future-pacing-block {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Gradient border effect via wrapper pseudo */
.future-pacing-block::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg, var(--lavender) 0%, var(--mint) 50%, var(--pink) 100%);
    z-index: -1;
    opacity: 0.5;
}

.future-pacing-block::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: var(--lavender);
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
    filter: blur(40px);
}

/* Future badge: glass morphism */
.future-badge {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.future-badge:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(26, 95, 106, 0.12);
    transform: translateY(-2px);
}


/* ============================================
   9. EXPERT SECTION — Enhanced
   ============================================ */

/* Image frame: decorative ring */
.expert-image-frame {
    position: relative;
}

.expert-image-frame::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px dashed var(--mint);
    border-radius: calc(var(--radius-lg) + 6px);
    opacity: 0.35;
    animation: zf-expert-ring 25s linear infinite;
    pointer-events: none;
}

@keyframes zf-expert-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Expert badge: refined shadow */
.expert-badge {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-badge:hover {
    transform: scale(1.05);
}

/* Expert quote: enhanced emphasis */
.expert-quote {
    border-left: 4px solid var(--teal-light);
}

/* Expert stats: glass cards with colored top accent */
.expert-stat {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-glass);
}

.expert-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glass-hover);
}

.expert-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
}

.expert-stat:nth-child(1)::before { background: var(--teal); }
.expert-stat:nth-child(2)::before { background: var(--peach); }
.expert-stat:nth-child(3)::before { background: var(--pink); }
.expert-stat:nth-child(4)::before { background: var(--lavender); }

/* Expert stat number: gradient text */
.expert-stat .number {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ============================================
   10. TESTIMONIALS — Glass + Enhanced
   ============================================ */

/* Testimonial cards: glass treatment */
.v2-testimonial {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-glass);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.v2-testimonial:hover {
    box-shadow: var(--shadow-glass-hover);
    transform: translateY(-3px);
}

/* Verified badge: glass effect */
.v2-verified-badge {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Testimonial card: subtle left border accent */
.v2-testimonial:nth-child(1) { border-left: 3px solid var(--teal-light); }
.v2-testimonial:nth-child(2) { border-left: 3px solid var(--peach); }
.v2-testimonial:nth-child(3) { border-left: 3px solid var(--lavender); }
.v2-testimonial:nth-child(4) { border-left: 3px solid var(--mint); }
.v2-testimonial:nth-child(5) { border-left: 3px solid var(--pink); }
.v2-testimonial:nth-child(6) { border-left: 3px solid var(--orange); }


/* ============================================
   FAQ SECTION (matching course-page.css design)
   ============================================ */
.section-faq {
    background: var(--cream-dark);
    padding: var(--space-2xl) 0;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glass);
    overflow: hidden;
    transition: box-shadow var(--transition-fast);
}

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

.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);
}

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

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

.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);
}

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

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

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

.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: zf-faq-slide-down 0.3s ease;
}

.faq-item p + p {
    padding-top: 0;
}

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

/* FAQ: colored left accent per item */
.faq-item:nth-child(1) { border-left: 3px solid var(--mint); }
.faq-item:nth-child(2) { border-left: 3px solid var(--teal-light); }
.faq-item:nth-child(3) { border-left: 3px solid var(--peach); }
.faq-item:nth-child(4) { border-left: 3px solid var(--lavender); }
.faq-item:nth-child(5) { border-left: 3px solid var(--pink); }
.faq-item:nth-child(6) { border-left: 3px solid var(--orange); }
.faq-item:nth-child(7) { border-left: 3px solid var(--mint); }
.faq-item:nth-child(8) { border-left: 3px solid var(--teal-light); }
.faq-item:nth-child(9) { border-left: 3px solid var(--peach); }


/* ============================================
   LEAD MAGNET SECTION — Glass Card
   ============================================ */
.zf-lead-magnet {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--peach-light) 0%, #fef9f5 50%, var(--mint-light) 100%);
}

.zf-lead-magnet-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-elevated);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Decorative blob */
.zf-lead-magnet-card::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--peach-light);
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
}

.zf-lead-magnet-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 200px;
    height: 200px;
    background: var(--mint-light);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}

.zf-lead-magnet-content {
    position: relative;
    z-index: 1;
}

.zf-lead-magnet-form {
    position: relative;
    z-index: 1;
}

.zf-lead-magnet-content h2 {
    font-size: 1.5rem;
    color: var(--teal-dark);
    margin-bottom: var(--space-sm);
}
.zf-lead-magnet-content p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}
.zf-lead-magnet-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}
.zf-lead-magnet-benefits li {
    padding: 0.4rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
}
.zf-lead-magnet-benefits li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: white;
    font-weight: 700;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    background: var(--teal);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: 0.4rem;
}

/* Input: focus glow */
.zf-lead-input {
    display: block;
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid rgba(245, 242, 237, 0.8);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    margin-bottom: var(--space-sm);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    background: rgba(253, 252, 250, 0.8);
}
.zf-lead-input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(26, 95, 106, 0.1);
    background: white;
}
.zf-lead-form .btn-full {
    width: 100%;
}

/* Submit button glow */
.zf-lead-form .btn-primary {
    animation: zf-lead-btn-glow 3s ease-in-out infinite;
}

@keyframes zf-lead-btn-glow {
    0%, 100% { box-shadow: 0 4px 12px rgba(232, 148, 90, 0.25); }
    50% { box-shadow: 0 6px 20px rgba(232, 148, 90, 0.4); }
}

.zf-lead-gdpr {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .zf-lead-magnet-card {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: var(--space-lg) var(--space-md);
    }
}


/* ============================================
   FOOTER SUMMARY SECTION — Glass
   ============================================ */
.zf-footer-summary {
    padding: var(--space-xl) 0 var(--space-lg);
    background: var(--cream);
}

.zf-summary-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    box-shadow: var(--shadow-elevated);
    text-align: center;
    border: 2px solid var(--mint);
    position: relative;
    overflow: hidden;
}

/* Warm accent glow */
.zf-summary-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: linear-gradient(180deg, rgba(143, 212, 200, 0.12) 0%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
}

.zf-summary-card h3 {
    color: var(--teal-dark);
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    position: relative;
}

.zf-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm) var(--space-lg);
    text-align: left;
    margin-bottom: var(--space-md);
}
.zf-summary-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.zf-summary-grid li {
    padding: 0.35rem 0;
    padding-left: 1.6rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text);
}
.zf-summary-grid li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: white;
    font-weight: 700;
    font-size: 0.65rem;
    width: 16px;
    height: 16px;
    background: var(--teal);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: 0.4rem;
}

.zf-summary-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}
.zf-summary-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
}
.zf-summary-new {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--teal-dark);
}
.zf-summary-label {
    font-size: 0.85rem;
    color: var(--orange-dark);
    font-weight: 600;
    background: var(--peach-light);
    padding: 2px 10px;
    border-radius: 100px;
}

@media (max-width: 600px) {
    .zf-summary-grid {
        grid-template-columns: 1fr;
    }
    .zf-summary-card {
        padding: var(--space-md);
    }
}


/* ============================================
   CATALOG RUNNING TOTAL — Glass + Gradient Border
   ============================================ */

.catalog-running-total {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.catalog-running-total::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(90deg, var(--teal-light), var(--peach), var(--lavender));
    z-index: -1;
    opacity: 0.4;
}


/* ============================================
   TABLE SUMMARY — Enhanced
   ============================================ */

.table-summary {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.table-summary::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: var(--mint);
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}


/* ============================================
   MID-CTA BUTTONS — Enhanced
   ============================================ */

.mid-cta .btn-ghost-teal {
    position: relative;
    overflow: hidden;
}

.mid-cta .btn-ghost-teal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(26, 95, 106, 0.06);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.mid-cta .btn-ghost-teal:hover::before {
    width: 300px;
    height: 300px;
}


/* ============================================
   GUARANTEE — Glass Card
   ============================================ */

.v2-guarantee-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.v2-guarantee-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: var(--mint-light);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}

.v2-guarantee-highlight {
    position: relative;
    display: inline-block;
}

.v2-guarantee-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -2px;
    right: -2px;
    height: 6px;
    background: var(--peach);
    opacity: 0.3;
    border-radius: 3px;
}


/* ============================================
   FINAL CTA — Enhanced with Blobs
   ============================================ */

.v2-final-cta {
    position: relative;
    overflow: hidden;
}

.v2-final-cta::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--mint-light);
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
    filter: blur(60px);
}

.v2-final-cta::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: var(--lavender-light);
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
    filter: blur(60px);
}

.v2-final-cta-content {
    position: relative;
    z-index: 1;
}


/* ============================================
   PRICING — Glass Enhancement
   ============================================ */

.v2-pricing-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.v2-pricing-featured {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


/* ============================================
   RESPONSIVE FIXES
   ============================================ */

/* Problem grid: responsive bento → stacked */
@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
    .problem-card:nth-child(1),
    .problem-card:nth-child(2),
    .problem-card:nth-child(3),
    .problem-card:nth-child(4),
    .problem-card:nth-child(5),
    .problem-card:nth-child(6) {
        grid-column: span 1;
    }
    .problem-card:nth-child(6) {
        text-align: left;
    }
    .problem-card:nth-child(6) .problem-icon {
        margin-left: 0;
        margin-right: 0;
    }
    .problem-card {
        border-left-width: 3px;
    }
}

/* Problem grid: tablet 2-column fallback */
@media (min-width: 769px) and (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .problem-card:nth-child(1),
    .problem-card:nth-child(2),
    .problem-card:nth-child(3),
    .problem-card:nth-child(4),
    .problem-card:nth-child(5) {
        grid-column: span 1;
    }
    .problem-card:nth-child(6) {
        grid-column: span 2;
    }
}

/* Guarantee icon: too large on mobile */
@media (max-width: 768px) {
    .v2-guarantee .v2-guarantee-icon {
        width: 72px;
        height: 72px;
    }
    .v2-guarantee .v2-guarantee-icon svg {
        width: 42px;
        height: 42px;
    }
}

/* Final CTA buttons: overflow on narrow screens */
@media (max-width: 480px) {
    .zf-final-cta-buttons .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Pricing grid: stack on tablets */
@media (max-width: 900px) {
    .v2-pricing-grid {
        grid-template-columns: 1fr;
    }
    .v2-pricing-featured {
        transform: none;
        order: -1;
        animation: none;
    }
}

/* Expert stats: wrap on mobile */
@media (max-width: 768px) {
    .expert-stats {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }
    .expert-stat {
        flex: 1 1 calc(50% - var(--space-sm));
        min-width: 0;
    }

    /* Expert ring animation off on mobile (perf) */
    .expert-image-frame::after {
        animation: none;
    }
}

/* Monthly themes: responsive */
@media (max-width: 768px) {
    .monthly-themes {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .monthly-themes {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Comparison card highlight: remove scale on mobile to prevent overflow */
@media (max-width: 768px) {
    .comparison-card.highlight {
        transform: none;
    }
    .comparison-card.highlight::before {
        display: none;
    }
}

/* Section images: reduce radius on mobile */
@media (max-width: 768px) {
    .section-image,
    .section-image--dream,
    .section-image--community {
        border-radius: 16px;
    }
}


/* ============================================
   ACCESSIBILITY: Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .v2-pricing-featured {
        animation: none !important;
    }
    .v2-pricing-featured .v2-pricing-badge {
        animation: none !important;
    }
    .v2-hero-cta .btn-primary {
        animation: none !important;
    }
    .card-animate {
        transition: none !important;
    }
    .catalog-running-total * {
        transition: none !important;
    }
    .expert-image-frame::after {
        animation: none !important;
    }
    .comparison-card.highlight::before {
        animation: none !important;
    }
    .comparison-ribbon {
        animation: none !important;
    }
    .community-detail::before {
        animation: none !important;
    }
    .zf-lead-form .btn-primary {
        animation: none !important;
    }
    .dream-icon,
    .community-icon {
        transition: none !important;
    }
    .v2-testimonial,
    .theme-item,
    .future-badge,
    .expert-stat {
        transition: none !important;
    }
}

/* BagolykaLand badge styles consolidated in v2-landing.css */
