:root {
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --primary-glow: #00f2ff;
    --secondary-glow: #bd00ff;
    --accent-red: #ff0055;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-main: 'Cairo', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Effects */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -2;
    animation: float 10s infinite ease-in-out;
}

.bg-glow-1 {
    top: -100px;
    left: -100px;
    background: var(--primary-glow);
}

.bg-glow-2 {
    bottom: -100px;
    right: -100px;
    background: var(--secondary-glow);
    animation-delay: -5s;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Glass Effect Utility */
.glass-effect {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Top Bar - IMPROVED DESIGN */
.top-bar {
    position: sticky;
    top: 10px;
    margin: 0 auto 15px;
    max-width: 1200px;
    padding: 18px 30px;
    text-align: center;
    z-index: 100;
    border-radius: 50px;
    border: 2px solid rgba(255, 0, 85, 0.4);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 10, 15, 0.95));
    box-shadow: 0 10px 40px rgba(255, 0, 85, 0.3), 0 0 60px rgba(0, 242, 255, 0.1);
    backdrop-filter: blur(20px);
}

.urgency-text {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.sub-urgency {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0;
    opacity: 0.9;
}

/* Top Bar Glows */
.glow-pulse {
    color: #00ff88;
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    animation: textPulseGreen 2s infinite;
}

.glow-red {
    color: white;
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.8);
    font-weight: 700;
}

@keyframes textPulseGreen {

    0%,
    100% {
        text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 25px rgba(0, 255, 136, 0.9);
        transform: scale(1.05);
    }
}

/* Main Content */
.main-content {
    padding: 30px 0;
    text-align: center;
}

/* Typography */
.main-headline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 15px;
    letter-spacing: -1px;
    max-width: 100%;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
}

.sub-headline {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.highlight {
    color: var(--accent-red);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
}

.story-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 100%;
}

/* Audience Card */
.audience-card {
    padding: 25px;
    margin: 0 auto 30px;
    max-width: 100%;
    font-size: 1.4rem;
    color: var(--text-muted);
    border-left: 4px solid var(--primary-glow);
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
}

.audience-intro {
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    background: linear-gradient(to right, #FFD700, #FF8C00, #FFD700);
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 3s linear infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tag {
    padding: 15px 35px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tag:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.tag-cyan {
    color: var(--primary-glow);
}

.tag-purple {
    color: var(--secondary-glow);
}

.tag-pink {
    color: #ff0088;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

.audience-conclusion {
    line-height: 1.8;
    margin-top: 20px;
    font-size: 1.3rem;
}

.highlight-white {
    color: white;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.play-button-outer {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.play-button-outer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid var(--primary-glow);
    border-top-color: transparent;
    border-left-color: transparent;
    animation: spin 3s linear infinite;
}

.play-button {
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 8px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.video-placeholder:hover .play-button-outer {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.video-text {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    margin-top: 80px;
    position: relative;
}

.cta-button {
    position: relative;
    display: inline-block;
    padding: 25px 70px;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    background: linear-gradient(90deg, #ff0055, #ff0088);
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 50px rgba(255, 0, 85, 0.6);
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

.guarantee {
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Animations */
.scroll-hidden {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-hidden.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

/* ============================================== */
/* NEW SECTIONS STYLING */
/* ============================================== */

/* General Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* After-Video Transition */
.after-video-text {
    margin: 40px 0;
    text-align: center;
}

.after-video-text p {
    font-size: 1.5rem;
    color: var(--text-main);
    line-height: 1.8;
}

/* Founder Story Section */
.founder-story {
    margin: 60px 0;
    padding: 50px;
    text-align: right;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-intro {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-glow);
}

.story-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--text-main);
}

.story-struggle {
    color: rgba(255, 100, 100, 0.9);
    font-weight: 600;
}

.story-turning-point {
    font-weight: 600;
    font-size: 1.3rem;
}

.glow-text {
    color: var(--primary-glow);
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
    font-weight: 700;
}

.highlight-red {
    color: var(--accent-red);
    font-weight: 700;
}

.story-results {
    list-style: none;
    margin: 30px 0;
    padding: 30px;
    background: rgba(0, 242, 255, 0.05);
    border-right: 3px solid var(--primary-glow);
    border-radius: 12px;
}

.story-results li {
    font-size: 1.15rem;
    margin-bottom: 15px;
    padding-right: 10px;
    line-height: 1.7;
}

.story-conclusion {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(189, 0, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(189, 0, 255, 0.3);
}

/* Social Proof Section */
.social-proof {
    margin: 60px 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.proof-item,
.testimonial-card {
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proof-item:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 242, 255, 0.2);
}

.proof-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-glow);
}

.price-highlight {
    color: #00ff88;
    font-size: 1.6rem;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.proof-images {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.proof-placeholder {
    flex: 1;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--text-muted);
    font-size: 1rem;
}

/* What You Get Section */
.what-you-get {
    margin: 60px 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 242, 255, 0.3);
    border-color: var(--primary-glow);
}

.pillar-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-main);
}

.pillar-card ul {
    list-style: none;
    text-align: right;
    margin: 20px 0;
}

.pillar-card li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pillar-card li::before {
    content: "◆";
    color: var(--primary-glow);
    flex-shrink: 0;
}

.pillar-value {
    margin-top: 25px;
    font-size: 1rem;
    color: var(--primary-glow);
    font-weight: 600;
    font-style: italic;
}

/* Bonuses Section */
.bonuses-section {
    margin: 60px 0;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.bonus-card {
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.bonus-card:hover::before {
    left: 100%;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(189, 0, 255, 0.3);
    border-color: var(--secondary-glow);
}

.bonus-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-glow);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
}

.bonus-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.bonus-badge {
    margin-top: 25px;
    padding: 10px 20px;
    background: rgba(189, 0, 255, 0.2);
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-glow);
    display: inline-block;
}

/* Offer Stacking Section */
.offer-stacking {
    margin: 60px 0;
}

.value-breakdown {
    max-width: 700px;
    margin: 40px auto;
    padding: 50px;
}

.value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item {
    font-size: 1.2rem;
    color: var(--text-main);
}

.value-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-muted);
}

.value-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
    margin: 20px 0;
}

.total-value {
    border-bottom: none;
}

.total-value .value-item {
    font-size: 1.5rem;
    font-weight: 700;
}

.real-value {
    font-size: 1.8rem !important;
    color: var(--primary-glow) !important;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

.old-price-row .value-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.3);
}

.current-price-row {
    background: rgba(0, 255, 136, 0.1);
    padding: 25px !important;
    border-radius: 12px;
    margin-top: 10px;
}

.current-price-row .value-item {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00ff88;
}

.current-price {
    font-size: 2.2rem !important;
    color: #00ff88 !important;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    font-weight: 900 !important;
}

.savings-badge {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.2), rgba(189, 0, 255, 0.2));
    border-radius: 16px;
    border: 1px solid rgba(255, 0, 85, 0.3);
}

.savings-badge p {
    font-size: 1.5rem;
    margin: 5px 0;
    color: var(--text-main);
}

.savings-percentage {
    font-size: 2rem !important;
    font-weight: 900 !important;
    color: var(--accent-red) !important;
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.6);
}

/* Requirements Section */
.requirements-section {
    margin: 60px 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.req-item {
    padding: 30px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.req-item:hover {
    background: rgba(0, 242, 255, 0.05);
    border-color: var(--primary-glow);
    transform: translateY(-5px);
}

.highlighted-req {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.3);
}

.highlighted-req:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: #00ff88;
}

.req-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.req-item p {
    font-size: 1.1rem;
    color: var(--text-main);
}

/* FAQ Section */
.faq-section {
    margin: 60px 0;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto;
}

.faq-item {
    margin-bottom: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.2);
    transform: translateX(-5px);
}

.faq-question {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
    cursor: pointer;
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-answer ul {
    list-style: none;
    margin: 15px 0;
    padding-right: 20px;
}

.faq-answer li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-answer li::before {
    content: "✓";
    color: var(--primary-glow);
    font-weight: 700;
    flex-shrink: 0;
}

.whatsapp-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
}

.whatsapp-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.whatsapp-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.whatsapp-card p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.whatsapp-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* Policies Section */
.policies-section {
    margin: 60px 0;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.policy-item {
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.policy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(189, 0, 255, 0.2);
}

.policy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.policy-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.policy-item p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .main-headline {
        font-size: 2rem;
    }

    .sub-headline {
        font-size: 1.4rem;
    }

    .cta-button {
        font-size: 1.3rem;
        padding: 20px 40px;
        width: 100%;
    }

    .top-bar {
        margin: 0 10px 20px;
        width: auto;
        border-radius: 20px;
        border: 1px solid rgba(255, 0, 85, 0.2);
    }

    .container {
        padding: 0 15px;
    }

    .audience-card {
        font-size: 1.1rem;
        padding: 20px;
    }

    .story-subtitle {
        font-size: 1.1rem;
    }

    .pillars-grid,
    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .policies-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================== */
/* VIDEO SECTION - SEPARATE STYLES */
/* ============================================== */

/* VSL Container */
.vsl-container {
    margin: 30px auto;
    max-width: 1200px;
    position: relative;
    border-radius: 20px;
    padding: 5px;
    background: linear-gradient(45deg, var(--primary-glow), var(--secondary-glow), var(--accent-red));
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    z-index: 2;
}

.main-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: contain;
    background: #000;
}


/* Text Highlighting - SEPARATE FROM VIDEO */
.highlight-white {
    color: white;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}


/* CTA Button Styles */
.cta-section {
    margin: 40px 0;
    text-align: center;
}

.cta-button {
    position: relative;
    display: inline-block;
    padding: 25px 70px;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    background: linear-gradient(90deg, #0066ff, #0088ff);
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 50px rgba(0, 136, 255, 0.6);
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

.guarantee {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


/* Price Highlight in CTA Button */
.price-highlight {
    color: #00ff88;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}


/* Journey Section Styles */
.journey-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.journey-step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-5px);
}

.step-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.5);
}

.journey-step h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #fff;
}

.step-image-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    cursor: pointer;
    /* Indicate clickable */
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journey-step:hover .step-image {
    transform: scale(1.05);
}

.step-desc {
    font-size: 0.95rem;
    color: #ccc;
}

.journey-arrow {
    color: rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-arrow svg {
    width: 100%;
    height: 100%;
    /* Flip arrow for RTL if needed, but the path draws left to right. 
       Since it's RTL, the flow is Right to Left visually? 
       Wait, Arabic is RTL. So step 1 is on the Right, Step 3 on the Left.
       The arrow should point to the Left (<-).
       The current SVG path M5 12H19... is a standard arrow.
       If I want it to point from Step 1 (Right) to Step 2 (Left), I need an arrow pointing Left.
    */
    transform: rotate(180deg);
}

@media (max-width: 900px) {
    .journey-container {
        flex-direction: column;
    }

    .journey-arrow {
        transform: rotate(90deg);
        /* Point down on mobile */
        margin: -10px 0;
    }

    .journey-arrow svg {
        transform: none;
        /* Reset internal rotation */
    }
}


/* Refine Image Display for Proofs */
.step-image-wrapper {
    background: #000;
    /* Dark background for letterboxing */
}

.step-image {
    object-fit: contain;
    /* Ensure full proof is visible */
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


/* Vertical Step Styles (Thinner Cards) */
.journey-step.vertical-step {
    max-width: 250px;
    /* Thinner card for vertical images */
    flex: 0 1 250px;
}

.journey-step.vertical-step .step-image-wrapper {
    background: transparent;
    /* Remove black background */
    border: none;
    /* Optional: remove border if desired, but keeping it is usually better for definition */
}

/* Ensure images fit nicely without black bars */
.step-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Keep contain to show full image, but now container is thinner so less black space */
}


/* Rotate First Image */
.rotated-image {
    transform: rotate(90deg) scale(1.5);
    /* Rotate and scale slightly to fill */
    transition: transform 0.3s ease;
}

.journey-step:hover .rotated-image {
    transform: rotate(90deg) scale(1.6);
    /* Maintain rotation on hover */
}

/* Delivery Card (What Happens After Purchase) */
.delivery-card {
    background: linear-gradient(145deg, rgba(0, 255, 136, 0.05), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.05);
}

.delivery-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.delivery-subtitle {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.delivery-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.delivery-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-glow);
}

.delivery-icon {
    font-size: 1.4rem;
}

@media (max-width: 600px) {
    .delivery-grid {
        grid-template-columns: 1fr;
    }
}


/* Fix for 3-item grids to avoid empty space */
.delivery-grid.three-items .delivery-item:last-child {
    grid-column: span 2;
}

@media (max-width: 600px) {
    .delivery-grid.three-items .delivery-item:last-child {
        grid-column: auto;
        /* Reset on mobile where it's 1 column */
    }
}


/* Payment Modal Styles */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.payment-modal-content {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
    border: 2px solid rgba(0, 242, 255, 0.3);
    margin: auto;
    padding: 50px;
    border-radius: 25px;
    width: 90%;
    max-width: 800px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 80px rgba(0, 242, 255, 0.25), 0 0 120px rgba(189, 0, 255, 0.15);
    animation: zoomIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.close-payment-modal {
    color: #888;
    float: right;
    font-size: 36px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.close-payment-modal:hover,
.close-payment-modal:focus {
    color: var(--primary-glow);
    transform: rotate(90deg);
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.8);
}

.payment-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 25px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.payment-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.payment-option:hover::before {
    left: 100%;
}

.payment-option:hover {
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(145deg, rgba(0, 242, 255, 0.15), rgba(189, 0, 255, 0.1));
    border-color: var(--primary-glow);
    box-shadow: 0 15px 50px rgba(0, 242, 255, 0.3), 0 0 30px rgba(0, 242, 255, 0.2);
}

.payment-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(0, 242, 255, 0.3));
    transition: all 0.3s ease;
}

.payment-option:hover .payment-icon {
    filter: drop-shadow(0 10px 25px rgba(0, 242, 255, 0.5));
}

.payment-option span:last-child {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .payment-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .payment-modal-content {
        padding: 40px 25px;
        max-width: 95%;
    }

    .payment-title {
        font-size: 1.8rem;
    }
}
/* Payment Warning Message */
.payment-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.1));
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 0 0 30px 0;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.6;
    color: #ffd54f;
    text-align: right;
}


/* ============================================== */
/* PAYMENT MODAL BUTTONS & EMAIL FORM STYLES */
/* ============================================== */

.next-button {
    display: block;
    width: 100%;
    padding: 18px;
    margin-top: 30px;
    background: linear-gradient(90deg, var(--primary-glow), #00c6ff);
    color: #000;
    font-size: 1.2rem;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.next-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}

.email-form-container {
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.3s ease;
}

.email-instruction {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 25px;
}

.email-input {
    width: 100%;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-family: var(--font-main);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-glow);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
}

.email-buttons-container {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.back-button {
    padding: 15px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: #fff;
}

.submit-email-btn {
    flex: 1;
    padding: 15px 30px;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.submit-email-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.submit-email-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}


.payment-confirm-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 68, 68, 0.2);
    line-height: 1.5;
    animation: fadeIn 0.5s ease;
}

