/* ===== V2 SPECIFIC STYLES ===== */
/* Inherits base from style.css with overrides */

/* ===== HERO V2 - FULLSCREEN CENTERED ===== */
.hero-v2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(19, 27, 58, 0.3) 0%, rgba(10, 14, 26, 0.95) 70%);
    z-index: 1;
}

.hero-v2__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-v2__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: blur(2px);
}

.hero-v2__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-v2__symbol {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    opacity: 0.8;
    animation: rotate-slow 60s linear infinite;
    filter: drop-shadow(0 0 20px rgba(212, 168, 67, 0.3));
}

.hero-v2__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-v2__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-v2__trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.hero-v2__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-v2__trust-item span {
    color: var(--accent-gold);
}

/* ===== SPLIT SECTIONS V2 ===== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.split-section--reverse {
    direction: rtl;
}

.split-section--reverse > * {
    direction: ltr;
}

.split-section__visual {
    position: relative;
    overflow: hidden;
}

.split-section__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-section__visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 14, 26, 0.7) 0%, transparent 50%);
}

.split-section--reverse .split-section__visual-overlay {
    background: linear-gradient(-90deg, rgba(10, 14, 26, 0.7) 0%, transparent 50%);
}

.split-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

/* ===== PAIN V2 - HORIZONTAL SCROLL FEEL ===== */
.pain-v2 {
    text-align: center;
}

.pain-v2__items {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.pain-v2__item {
    background: rgba(196, 58, 58, 0.08);
    border: 1px solid rgba(196, 58, 58, 0.15);
    border-radius: 12px;
    padding: 24px 28px;
    max-width: 280px;
    text-align: left;
    transition: all 0.3s;
}

.pain-v2__item:hover {
    border-color: rgba(196, 58, 58, 0.4);
    transform: translateY(-4px);
}

.pain-v2__item-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.pain-v2__item-text {
    font-size: 1rem;
    color: var(--text-muted);
}

.pain-v2__quote {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 2rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===== CARDS V2 - LARGER, GLASSMORPHISM ===== */
.cards-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.card-v2 {
    background: rgba(19, 27, 58, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 168, 67, 0.08);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.card-v2::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.1), transparent, rgba(212, 168, 67, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.card-v2:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 168, 67, 0.3);
}

.card-v2:hover::after {
    opacity: 1;
}

.card-v2__emoji {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.card-v2__text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== RESULTS V2 - TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(212, 168, 67, 0.5), rgba(212, 168, 67, 0.1));
}

.timeline-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    position: relative;
}

.timeline-item__dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    z-index: 1;
}

.timeline-item__content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.timeline-item__content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ===== COURSE V2 - BENTO GRID ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

.bento-item {
    background: rgba(19, 27, 58, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.bento-item:hover {
    border-color: rgba(212, 168, 67, 0.2);
}

.bento-item--large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-item--video {
    position: relative;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.bento-item--video img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-item__icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.bento-item__title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.bento-item__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== TESTIMONIALS V2 - MASONRY ===== */
.testimonials-masonry {
    columns: 3;
    column-gap: 20px;
}

.testimonial-v2 {
    break-inside: avoid;
    background: rgba(19, 27, 58, 0.4);
    border: 1px solid rgba(212, 168, 67, 0.08);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.testimonial-v2:hover {
    border-color: rgba(212, 168, 67, 0.25);
    transform: translateY(-4px);
}

.testimonial-v2__stars {
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-v2__text {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-v2__author {
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-v2__role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== PRICING V2 - HORIZONTAL ===== */
.pricing-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 67, 0.15);
}

.pricing-v2__info {
    background: rgba(19, 27, 58, 0.6);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-v2__info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pricing-v2__list {
    margin-bottom: 24px;
}

.pricing-v2__list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-v2__list-item::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 700;
}

.pricing-v2__action {
    background: rgba(10, 14, 26, 0.8);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-v2__old_price {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    line-height: 1.1;
    color: var(--text-muted);
    position: relative;
    background-image: linear-gradient(transparent 50%, #000 50%, #000 55%, transparent 55%);
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
}
.pricing-v2__old_price::after {
    content: "";
    position: absolute;
    left: 0;
    top: 55%;
    width: 100%;
    height: 1px;
    background: var(--text-muted);
    transform: translateY(-50%);
}

.pricing-v2__old_price span {
    font-size: 0.75rem;
}

.pricing-v2__price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.pricing-v2__price span {
    font-size: 2.2rem;
}

.pricing-v2__note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-v2__urgency {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #f08080;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== FINAL CTA V2 ===== */
.final-v2 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-v2__bg-symbol {
    position: absolute;
    width: 600px;
    height: 600px;
    opacity: 0.03;
    z-index: 0;
    animation: rotate-slow 80s linear infinite reverse;
}

/* ===== MARQUEE BAR ===== */
.marquee-bar {
    overflow: hidden;
    white-space: nowrap;
    padding: 16px 0;
    background: rgba(212, 168, 67, 0.05);
    border-top: 1px solid rgba(212, 168, 67, 0.1);
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
}

.marquee-bar__inner {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-bar__item {
    display: inline-block;
    padding: 0 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.marquee-bar__item span {
    color: var(--accent-gold);
    margin-right: 8px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== RESPONSIVE V2 ===== */
@media (max-width: 1024px) {
    .split-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .split-section__visual {
        height: 55vh;
    }
    .split-section__content {
        padding: 40px 24px;
    }
    .cards-v2-grid {
        grid-template-columns: 1fr;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-item--large,
    .bento-item--video {
        grid-column: span 1;
        grid-row: span 1;
    }
    .testimonials-masonry {
        columns: 1;
    }
    .pricing-v2 {
        grid-template-columns: 1fr;
    }
    .hero-v2__trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .hero-v2__content{
        margin-top: 40px;
    }
    .hero-v2__bg img.hero-mobile{
        display: block !important;
    }
    .hero-v2__bg img.hero-desktop{
        display: none;
    }
    .pain-v2__items {
        flex-direction: column;
        align-items: center;
    }
    .pain-v2__item {
        max-width: 100%;
    }
    .split-section__content {
        padding: 32px 16px;
    }
    .hero-v2__symbol{display: none;}
}
