/* ─────────────────────────────────────────────
     Hero & Media Elements
     ───────────────────────────────────────────── */
.hero-section {
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 600px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    /* Left aligned content */
    overflow: hidden !important;
    z-index: 5 !important;
    /* Sit on top of nerve-canvas to block it */
}

body.rtl-layout .hero-section {
    justify-content: flex-start !important;
    /* Start is right side in RTL flow */
}

.hero-bg-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

iframe.hero-embed-iframe {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 115vw !important;
    height: 115vh !important;
    min-width: 115% !important;
    min-height: 115% !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
    object-fit: cover !important;
    border: 0 !important;
    pointer-events: none !important;
}

.image-cover-bg {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.video-overlay,
.image-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
    background: rgba(0, 0, 0, 0.25) !important;
    /* Subtle dark overlay for contrast without washing out */
    display: block !important;
    opacity: 1 !important;
}

body:not(.dark-theme) .video-overlay,
body:not(.dark-theme) .image-overlay {
    background: rgba(255, 255, 255, 0.15) !important;
    /* Light mode subtle overlay */
}

.video-container,
.image-cover-bg,
.fallback-gradient-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    overflow: hidden !important;
}

/* Desktop Glassmorphic Content Card Layout */
@media (min-width: 992px) {
    .hero-content-wrapper {
        position: relative !important;
        width: 100% !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 80px !important;
        display: flex !important;
        justify-content: flex-start !important;
        z-index: 3 !important;
        background: transparent !important;
    }

    body.rtl-layout .hero-content-wrapper {
        justify-content: flex-start !important;
        /* Start is right side in RTL flow */
    }
}

/* Mobile Stacking Layout */
@media (max-width: 991px) {
    .hero-section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100vh !important;
        min-height: 560px !important;
        background: transparent !important;
    }

    .hero-content-wrapper {
        position: relative !important;
        width: 100% !important;
        padding: 0 24px !important;
        z-index: 3 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        background: transparent !important;
    }

    iframe.hero-embed-iframe {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 177.77vh !important;
        /* Maintain 16:9 aspect scale on mobile height */
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        transform: translate(-50%, -50%) scale(1.1) !important;
    }
}

.hero-card {
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    max-width: 580px !important;
    width: 100% !important;
    text-align: left;
    transition: all 0.3s ease;
}

body.rtl-layout .hero-card {
    text-align: right;
}

body.dark-theme .hero-card {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
}

.hero-card:hover {
    transform: translateY(-2px);
}

body.dark-theme .hero-card:hover {
    transform: translateY(-2px);
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800 !important;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.03em !important;
    color: var(--text) !important;
    /* Premium Business Slate */
    text-shadow: none !important;
    /* Remove fuzzy outlines */
}

body.dark-theme .hero-title {
    color: #ffffff !important;
    text-shadow: none !important;
}

body.rtl-layout .hero-title {
    letter-spacing: 0;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 28px;
    color: var(--text-muted) !important;
    /* Premium Slate Gray */
    max-width: 540px;
    margin-left: 0;
    margin-right: 0;
    text-shadow: none !important;
}

body.dark-theme .hero-description {
    color: var(--text-subtle) !important;
    text-shadow: none !important;
}

body.rtl-layout .hero-description {
    margin-left: 0;
    margin-right: 0;
}

.hero-cta-btn {
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: var(--btn-radius);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-cta-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 0 var(--accent-green-shadow), 0 20px 50px var(--accent-green-glow);
}

/* ─────────────────────────────────────────────
     Guest Marketing Template
     ───────────────────────────────────────────── */
.guest-marketing-card {
    text-align: center;
    padding: 60px 40px;
    border-radius: 30px;
}

.marketing-logo-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.marketing-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.marketing-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.marketing-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Testimonial Avatar Styles ───────────────────────────────────────────── */
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ─────────────────────────────────────────────
     How It Works — 3-Step Timeline
     ───────────────────────────────────────────── */
.how-it-works-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 40px auto;
    max-width: 900px;
    position: relative;
}

.how-step-card {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    position: relative;
    z-index: 2;
}

.step-number.step-1 {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.step-number.step-2 {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-shadow));
}

.step-number.step-3 {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.how-step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.how-step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Connector line between steps (desktop) */
.how-it-works-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
    opacity: 0.3;
    z-index: 1;
}

@media (max-width: 768px) {
    .how-it-works-grid::before {
        display: none;
    }

    .how-it-works-grid {
        flex-direction: column;
        align-items: center;
    }
}







/* ─────────────────────────────────────────────
     FAQ Accordion Section
     ───────────────────────────────────────────── */
.marketing-faq-wrapper {
    width: 100%;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.marketing-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.marketing-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 992px) {
    .marketing-faq-grid {
        grid-template-columns: 1.2fr 1.8fr;
        gap: 64px;
    }
}

/* Left Column: Info */
.faq-info-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .faq-info-column {
        position: sticky;
        top: 100px;
    }
}

.faq-badge-capsule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 99px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    background: rgba(197, 160, 89, 0.04);
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.faq-badge-capsule i {
    font-size: 0.9rem;
}

.faq-main-title {
    font-family: var(--font-family);
    font-size: 2.75rem;
    font-weight: 850;
    line-height: 1.25;
    color: var(--text-primary);
    margin: 0 0 20px 0;
}

.faq-desc-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 32px 0;
}

/* Support Callout Card */
.faq-support-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 20px;
    width: 100%;
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.faq-support-card:hover {
    border-color: rgba(197, 160, 89, 0.25) !important;
    box-shadow: 0 25px 50px rgba(197, 160, 89, 0.05) !important;
    transform: translateY(-2px);
}

.support-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(197, 160, 89, 0.08);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.support-card-content {
    flex-grow: 1;
}

.support-card-content h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.support-card-content p {
    margin: 0 0 16px 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.faq-support-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--accent-green) !important;
    color: #0c0a09 !important;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.25);
}

.faq-support-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(197, 160, 89, 0.4);
    background: #d4b26f !important;
}

/* Right Column: Accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.faq-item {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(197, 160, 89, 0.2) !important;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.04), 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.faq-item.open {
    background: rgba(197, 160, 89, 0.01) !important;
    border-color: rgba(197, 160, 89, 0.3) !important;
    box-shadow: 0 20px 45px rgba(197, 160, 89, 0.06), 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: start;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-num-badge {
    font-family: var(--font-en);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--accent-green);
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.faq-item:hover .faq-num-badge,
.faq-item.open .faq-num-badge {
    opacity: 1;
}

.faq-q-text-span {
    flex-grow: 1;
    line-height: 1.4;
}

.faq-toggle-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--accent-green);
}

.faq-item:hover .faq-toggle-icon-wrapper {
    background: rgba(197, 160, 89, 0.06);
    border-color: rgba(197, 160, 89, 0.25);
}

.faq-item.open .faq-toggle-icon-wrapper {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #0c0a09;
}

.faq-toggle-icon {
    font-size: 0.85rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 26px 0 66px;
    /* Offset to align text beautifully */
}

body.rtl-layout .faq-answer {
    padding: 0 66px 0 26px;
    /* Swap padding for RTL */
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 26px 20px 66px;
}

body.rtl-layout .faq-item.open .faq-answer {
    padding: 0 66px 20px 26px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ─────────────────────────────────────────────
     Final CTA Section
     ───────────────────────────────────────────── */
.final-cta-section {
    text-align: center;
    padding: 60px 24px;
    margin: 40px auto;
    max-width: 700px;
    position: relative;
}

.final-cta-section .cta-emoji {
    font-size: 4rem;
    margin-bottom: 16px;
    display: block;
    animation: subtleBounce 2s ease-in-out infinite;
}

.final-cta-section h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.final-cta-section p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 48px;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: subtleBounce 2s ease-in-out infinite;
}

.final-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(197, 160, 89, 0.3);
}

/* ─────────────────────────────────────────────
     Visitor Sales Funnel & Marketing Elements
     ───────────────────────────────────────────── */
.fcp-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1200;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

body.dark-theme .fcp-topbar {
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-promo {
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

body.dark-theme .topbar-promo {
    color: var(--surface-raised);
}

.topbar-switchers {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: var(--font-family);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.dark-theme .topbar-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body.dark-theme .topbar-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.topbar-btn:active {
    transform: translateY(1px);
    box-shadow: none;
}

.topbar-btn i {
    font-size: 0.85rem;
}

.topbar-btn .theme-icon-light {
    display: none;
}

body.dark-theme .topbar-btn .theme-icon-dark {
    display: none;
}

body.dark-theme .topbar-btn .theme-icon-light {
    display: block;
}

/* Shift body and nav down */
/* body padding-top now managed by 03-nav.css */
/* .glass-nav positioning now in 03-nav.css */

@media (max-width: 768px) {
    .fcp-topbar {
        height: 40px;
    }

    .topbar-container {
        padding: 0 12px;
    }

    .topbar-promo {
        font-size: 0.7rem;
        max-width: 60%;
        line-height: 1.2;
    }

    body {
        padding-top: 104px;
    }

    .glass-nav {
        top: 40px !important;
        transform: none !important;
        left: 0 !important;
        right: 0 !important;
    }
}

.funnel-marketing-content {
    margin-top: 40px;
}

.marketing-section-header {
    margin-bottom: 56px;
    text-align: center;
}

.section-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 60%, var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

.section-sub-title {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 50px auto;
    line-height: 1.7;
}

.funnel-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.funnel-feature-card {
    text-align: center;
    border-radius: var(--card-radius);
    padding: 40px 28px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease,
        border-color 0.3s ease;
}

.funnel-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.funnel-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--box-shadow), 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feat-icon-badge {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 22px;
    color: #ffffff;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Icon glow halo effect */
.feat-icon-badge::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.funnel-feature-card:hover .feat-icon-badge::after {
    opacity: 1;
}

.feat-icon-badge.color-orange {
    background: linear-gradient(135deg, var(--accent-orange), #ea580c);
    box-shadow: 0 6px 0 var(--accent-orange-shadow);
}

.feat-icon-badge.color-orange::after {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3), transparent 70%);
}

.feat-icon-badge.color-blue {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 6px 0 var(--gold-shadow);
}

.feat-icon-badge.color-blue::after {
    background: radial-gradient(circle, rgba(197, 160, 89, 0.3), transparent 70%);
}

.feat-icon-badge.color-green {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 6px 0 var(--gold-shadow);
}

.feat-icon-badge.color-green::after {
    background: radial-gradient(circle, rgba(197, 160, 89, 0.3), transparent 70%);
}

.funnel-feature-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.funnel-feature-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}



/* Pricing Cards Design System */
.aura-pricing-section {
    --ap-primary-fixed: #ffdea5;
    --ap-outline: #7f7667;
    --ap-surface-variant: #e5e2e1;
    --ap-primary-container: #c5a059;
    --ap-on-tertiary-fixed: #1a1c1c;
    --ap-on-secondary: #ffffff;
    --ap-background: #fcf9f8;
    --ap-surface-bright: #fcf9f8;
    --ap-surface-container-highest: #e5e2e1;
    --ap-surface: #fcf9f8;
    --ap-on-primary-fixed-variant: #5d4201;
    --ap-surface-tint: #775a19;
    --ap-tertiary: #5d5f5f;
    --ap-primary: #775a19;
    --ap-on-secondary-fixed: #1b1c1b;
    --ap-surface-container-high: #eae7e7;
    --ap-on-background: #1c1b1b;
    --ap-primary-fixed-dim: #e9c176;
    --ap-on-surface: #1c1b1b;
    --ap-on-primary-container: #4e3700;
    --ap-surface-container: #f0eded;
    --ap-on-surface-variant: #4e4639;
    --ap-surface-container-lowest: #ffffff;
    --ap-surface-container-low: #f6f3f2;
    --ap-outline-variant: #d1c5b4;

    font-family: var(--font-ui), sans-serif;
    color: var(--ap-on-background);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    direction: rtl;
}

/* Header Section */
.aura-pricing-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 48px;
}

.aura-pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--ap-on-background);
    margin-bottom: 16px;
    font-family: 'Cairo', var(--font-display), sans-serif !important;
}

.aura-pricing-header p {
    font-size: 1.125rem;
    color: var(--ap-on-surface-variant);
    font-weight: 300;
    margin: 0;
    font-family: 'Cairo', var(--font-ui), sans-serif !important;
}

/* Billing Toggle */
.aura-billing-toggle-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
}

.aura-billing-toggle-bg {
    display: flex;
    background-color: var(--ap-surface-container-low);
    padding: 4px;
    border-radius: 9999px;
    position: relative;
}

.aura-billing-label {
    cursor: pointer;
    position: relative;
}

.aura-billing-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.aura-billing-pill {
    padding: 8px 24px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    color: var(--ap-on-surface-variant);
}

.aura-billing-input:checked+.aura-billing-pill {
    background-color: var(--ap-surface-container-lowest);
    color: var(--ap-on-background);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.aura-billing-badge {
    position: absolute;
    top: -12px;
    left: -24px;
    background-color: var(--ap-primary-container);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 9999px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

/* Pricing Grid */
.aura-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    max-width: 1100px;
}

@media (min-width: 768px) {
    .aura-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Pricing Card - World-Class Glassmorphic Aesthetic */
.aura-pricing-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
    position: relative;
    box-sizing: border-box;
}

.aura-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px -10px rgba(197, 160, 89, 0.2);
    border-color: rgba(197, 160, 89, 0.45);
}

/* Elite Featured Card */
.aura-pricing-card.aura-featured-card {
    border: 2px solid #c5a059;
    background: linear-gradient(180deg, rgba(197, 160, 89, 0.07) 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 12px 40px -8px rgba(197, 160, 89, 0.3);
    z-index: 10;
}

@media (min-width: 768px) {
    .aura-pricing-card.aura-featured-card {
        transform: scale(1.04);
    }

    .aura-pricing-card.aura-featured-card:hover {
        transform: scale(1.04) translateY(-6px);
        box-shadow: 0 22px 50px -10px rgba(197, 160, 89, 0.35);
    }
}

/* Popular Ribbon */
.aura-popular-ribbon {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #c5a059, #9e7d3b);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 9999px;
    box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* Card Header (Centered) */
.aura-card-header {
    margin-bottom: 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aura-card-header h3 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #1c1b1b;
    margin: 0 0 8px 0;
    text-align: center;
    font-family: 'Cairo', var(--font-display), sans-serif !important;
}

body:not(.dark-theme) .aura-card-header h3,
body:not(.dark-theme) .aura-card-price {
    color: #1c1b1b !important;
}

.dark-theme .aura-card-header h3,
.dark-theme .aura-card-price {
    color: #FDFBF7 !important;
}

.aura-card-target {
    font-size: 0.85rem;
    color: var(--ap-on-surface-variant);
    margin: 0 auto 16px auto;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    max-width: 90%;
}

.aura-card-price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 8px auto 0 auto;
    text-align: center;
}

.aura-currency-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c5a059;
    align-self: flex-start;
    margin-top: 4px;
}

.aura-card-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ap-on-background);
    font-family: 'Outfit', 'Cairo', sans-serif !important;
    letter-spacing: -0.02em;
    line-height: 1;
}

.aura-card-period {
    font-size: 0.9rem;
    color: var(--ap-on-surface-variant);
    font-weight: 500;
}

/* Features List */
.aura-card-features-list {
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: right;
}

.aura-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
}

.aura-feature-check {
    font-size: 1.05rem;
    color: #c5a059;
    flex-shrink: 0;
}

.aura-feature-text {
    font-size: 0.88rem;
    color: var(--ap-on-surface-variant);
    line-height: 1.5;
}

.aura-feature-text.aura-bold-feature {
    color: var(--ap-on-background);
    font-weight: 700;
}

/* Card Footer & Action Buttons */
.aura-card-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    width: 100%;
    align-items: center;
    justify-content: center;
}

/* All Pricing Buttons Normal State: Gold Background, White Text, White Icon */
.aura-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, #c5a059, #b38b43) !important;
    background-color: #c5a059 !important;
    border: 1.5px solid #c5a059 !important;
    color: #ffffff !important;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.35);
    transition: all 0.25s ease-in-out;
    box-sizing: border-box;
}

.aura-card-btn span {
    color: #ffffff !important;
    font-weight: 700;
}

.aura-card-btn i,
.aura-card-btn .aura-wa-main-icon,
.aura-card-btn .aura-btn-icon {
    font-size: 1.15rem;
    color: #ffffff !important;
    margin-left: 6px;
    transition: color 0.25s ease, transform 0.25s ease;
}

/* Hover, Focus, Active State: Black Background, White Text, Gold Icon */
.aura-card-btn:hover,
.aura-card-btn:focus,
.aura-card-btn:active {
    background: #000000 !important;
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
    transform: translateY(-2px);
}

.aura-card-btn:hover span,
.aura-card-btn:focus span,
.aura-card-btn:active span {
    color: #ffffff !important;
}

.aura-card-btn:hover i,
.aura-card-btn:hover .aura-wa-main-icon,
.aura-card-btn:hover .aura-btn-icon,
.aura-card-btn:focus i,
.aura-card-btn:focus .aura-wa-main-icon,
.aura-card-btn:focus .aura-btn-icon,
.aura-card-btn:active i,
.aura-card-btn:active .aura-wa-main-icon,
.aura-card-btn:active .aura-btn-icon {
    color: #c5a059 !important;
    transform: scale(1.15) rotate(-5deg);
}

/* Dedicated WhatsApp Instant Order Button */
.aura-card-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 44px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    background: rgba(37, 211, 102, 0.08);
    color: #1eb954;
    border: 1.5px solid rgba(37, 211, 102, 0.35);
    text-decoration: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.aura-card-wa-btn i {
    font-size: 1.1rem;
}

.aura-card-wa-btn:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Dark Theme Overrides */
.dark-theme .aura-pricing-card {
    background: rgba(22, 21, 19, 0.85);
    border-color: rgba(197, 160, 89, 0.22);
}

.dark-theme .aura-pricing-card.aura-featured-card {
    background: linear-gradient(180deg, rgba(197, 160, 89, 0.12) 0%, rgba(22, 21, 19, 0.95) 100%);
}

.dark-theme .aura-btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.dark-theme .aura-btn-outline-dark:hover {
    background-color: #ffffff;
    color: #121212;
}

/* Dark Mode Overrides */
.dark-theme .aura-pricing-section {
    --ap-background: #0F0E0D;
    --ap-on-background: #FDFBF7;
    --ap-surface-container-low: #1c1b19;
    --ap-surface-container-lowest: #191816;
    --ap-surface-container: rgba(197, 160, 89, 0.15);
    --ap-on-surface-variant: #a6a5a2;
    --ap-outline-variant: rgba(197, 160, 89, 0.25);
    --ap-on-surface: #FDFBF7;
}

.dark-theme .aura-pricing-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dark-theme .aura-pricing-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dark-theme .aura-billing-input:checked+.aura-billing-pill {
    background-color: #222120;
    color: #FDFBF7;
}

.dark-theme .aura-btn-outline-gold:hover {
    background-color: #222120;
}

.dark-theme .aura-btn-outline-dark:hover {
    background-color: #222120;
}



.confetti-overlay-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    pointer-events: none;
    display: none;
}

/* ─────────────────────────────────────────────
     Premium Polish & Micro-Animations
/* Hero section parallax-like depth */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: 2;
    pointer-events: none;
}

/* Section reveal animation */
.marketing-section-header,
.funnel-features-grid,
.fcp-podium-section,
.funnel-pricing-cards-flex {
    opacity: 0;
    transform: translateY(30px);
    animation: sectionReveal 0.8s ease-out forwards;
}

.funnel-features-grid {
    animation-delay: 0.1s;
}

.fcp-podium-section {
    animation-delay: 0.2s;
}

.funnel-pricing-cards-flex {
    animation-delay: 0.3s;
}

@keyframes sectionReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature cards stagger animation */
.funnel-feature-card:nth-child(1) {
    animation: cardPop 0.5s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.funnel-feature-card:nth-child(2) {
    animation: cardPop 0.5s 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.funnel-feature-card:nth-child(3) {
    animation: cardPop 0.5s 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes cardPop {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Pricing card hover glow with perspective tilt */
.pricing-plan-card:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(2deg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.premium-plan-card:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 24px 64px rgba(234, 179, 8, 0.2), 0 0 40px rgba(234, 179, 8, 0.1);
}

.elite-plan-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 24px 64px rgba(239, 68, 68, 0.2), 0 0 40px rgba(239, 68, 68, 0.1);
}

/* Hero title gradient text effect */
.hero-title {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 60%, var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* Section title underline accent — premium glow */
.section-main-title {
    position: relative;
    display: inline-block;
}

.section-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
    box-shadow: 0 0 12px var(--accent-green-glow, rgba(197, 160, 89, 0.3));
}

/* Plan CTA button bounce hint */
.plan-cta-btn {
    transition: all 0.2s ease;
}

.premium-plan-card .plan-cta-btn {
    animation: subtleBounce 2s ease-in-out infinite;
}

@keyframes subtleBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Below-the-fold rendering optimization */
#features-section,
#how-it-works-section,
#transformations-section,
#testimonials-section,
#faq-section,
#pricing-plans-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* ═══════════════════════════════════════════════
   Universal Section Alignment & Responsiveness
   ═══════════════════════════════════════════════ */
.how-it-works-grid {
    max-width: 1200px !important;
    width: 100% !important;
}

.fcp-transformations-container {
    max-width: 1200px !important;
    width: 100% !important;
}

.faq-list {
    max-width: 1200px !important;
    width: 100% !important;
}

.final-cta-section {
    max-width: 1200px !important;
    width: 100% !important;
}


/* ═══════════════════════════════════════════════
   Section Width & Spacing Overrides
   ═══════════════════════════════════════════════ */

/* Normalize all sections to match Leaderboard Champions (1200px max) */
.how-it-works-grid {
    max-width: 1200px !important;
    width: 100% !important;
    gap: 30px !important;
}

.how-step-card {
    max-width: 380px !important;
    min-width: 280px !important;
}

.fcp-transformations-container {
    max-width: 1200px !important;
    width: 100% !important;
    gap: 30px !important;
}

.faq-list {
    max-width: 1200px !important;
    width: 100% !important;
    gap: 16px !important;
}

.final-cta-section {
    max-width: 1200px !important;
    width: 100% !important;
    padding: 80px 40px !important;
}

.final-cta-section p {
    max-width: 720px !important;
    margin: 0 auto 30px !important;
}

/* Standardize vertical spacing between sections (100px) and headers (40px) */
.marketing-section-header {
    margin-top: 0 !important;
    margin-bottom: 40px !important;
}

.funnel-features-grid,
.how-it-works-grid,
.fcp-transformations-container,
.fcp-podium-section,
.funnel-pricing-cards-flex,
.faq-list,
.final-cta-section {
    margin-top: 0 !important;
    margin-bottom: 100px !important;
}





/* ==========================================================================
   UNIFIED SECTION HEADERS & SUBTITLES TYPOGRAPHY & SPACING
   ========================================================================== */
.marketing-section-header, 
.aura-pricing-header {
    margin-top: 0 !important;
    margin-bottom: 40px !important;
    text-align: center !important;
}

.section-main-title,
.faq-main-title {
    font-family: 'Cairo', var(--font-display), sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: var(--text) !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    margin-bottom: 12px !important;
    display: inline-block !important;
}

/* Hide the gold underline globally for all sections */
.section-main-title::after {
    display: none !important;
}

.section-sub-title,
.faq-desc-text {
    font-family: 'Cairo', var(--font-ui), sans-serif !important;
    color: var(--text-secondary) !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    max-width: 680px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Restoring sidebar alignment for FAQ info elements to prevent default centering */
.faq-info-column .faq-main-title {
    font-size: 2.75rem !important;
    font-weight: 850 !important;
    line-height: 1.25 !important;
    display: block !important;
    text-align: left !important;
    margin-bottom: 20px !important;
}

body.rtl-layout .faq-info-column .faq-main-title {
    text-align: right !important;
}

.faq-info-column .faq-desc-text {
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
    max-width: 100% !important;
    margin-bottom: 32px !important;
}

body.rtl-layout .faq-info-column .faq-desc-text {
    margin-right: 0 !important;
    margin-left: auto !important;
    text-align: right !important;
}

/* Hide connection timeline line in 'How It Works' when not exactly 3 steps */
.how-it-works-grid.dynamic-steps::before {
    display: none !important;
}