/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0b0b0b;
    color: #f3f3f3;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Luxurious Gold & Charcoal Color Tokens */
:root {
    --gold: #d4af37;
    --gold-bright: #f3e5ab;
    --gold-dark: #aa8410;
    --charcoal: #121212;
    --charcoal-light: #1c1c1c;
    --charcoal-deep: #080808;
    --text-muted: #a3a3a3;
}

/* Background Spotlights */
.spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.spotlight-1 {
    top: 5%;
    left: -10%;
}

.spotlight-2 {
    top: 45%;
    right: -10%;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #ffffff;
}

h2 {
    font-size: 2.8rem;
    color: #ffffff;
    text-align: center;
}

/* Header & Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: rgba(11, 11, 11, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
}

#lang-select {
    background-color: var(--charcoal);
    color: #f3f3f3;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#lang-select:hover {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    min-height: 85vh;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1.2;
    max-width: 650px;
}

.badge {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 20px;
    margin-bottom: 30px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.benefit-check {
    color: var(--gold);
    font-weight: bold;
}

.price-box {
    margin-bottom: 30px;
}

.original-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: #666;
    display: block;
    margin-bottom: 4px;
}

.current-price {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

/* Buttons & Glow Effect */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    text-align: center;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--charcoal-deep);
}

.btn-glow {
    position: relative;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.btn-primary:hover {
    background-color: var(--gold-bright);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25);
}

.btn-secondary {
    background-color: #ffffff;
    color: #0b0b0b;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

.btn-large {
    font-size: 1.05rem;
    padding: 22px 50px;
}

.social-proof {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #666;
}

/* 3D Interactive Book Mockup */
.hero-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-container {
    perspective: 1000px;
    width: 250px;
    height: 360px;
}

.book-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-20deg) rotateX(10deg);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.book-container:hover .book-3d {
    transform: rotateY(-5deg) rotateX(5deg) scale(1.05);
}

.book-cover {
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(135deg, #1c1c1c 0%, #111111 100%);
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: 5;
    padding: 15px;
    transform-origin: left;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.1);
}

.book-inner-border {
    border: 1px solid rgba(212, 175, 55, 0.25);
    height: 100%;
    width: 100%;
    padding: 25px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.book-author {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.book-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin: 15px 0 10px;
}

.book-separator {
    width: 40px;
    height: 1.5px;
    background-color: var(--gold);
    margin-bottom: 15px;
}

.book-tagline {
    font-size: 0.5rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.book-pages-count {
    font-size: 0.55rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.book-pages {
    position: absolute;
    width: 96%;
    height: 96%;
    background-color: #fff;
    top: 2%;
    left: 2%;
    border-radius: 4px;
    z-index: 4;
    transform: translateZ(-8px);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.book-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #111;
    border-radius: 4px;
    z-index: 3;
    transform: translateZ(-16px);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/* Method / Timeline Section */
.method-section {
    padding: 100px 8%;
    background-color: var(--charcoal-deep);
    position: relative;
    z-index: 1;
}

.timeline {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(212, 175, 55, 0.15);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--charcoal);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.timeline-content {
    background-color: var(--charcoal);
    border: 1px solid rgba(212, 175, 55, 0.05);
    padding: 30px;
    border-radius: 10px;
    flex-grow: 1;
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 100px 8%;
    background-color: var(--charcoal);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: 2.6rem;
    margin-bottom: 15px;
    color: #fff;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--charcoal-light);
    border: 1px solid rgba(212, 175, 55, 0.04);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Premium Bonuses Section */
.bonuses-section {
    padding: 100px 8%;
    background-color: var(--charcoal-deep);
    position: relative;
    z-index: 1;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-card {
    background: linear-gradient(145deg, #161616 0%, #0d0d0d 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 35px 30px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s;
    text-align: center;
}

.bonus-card:hover {
    border-color: var(--gold);
    transform: scale(1.03);
}

.bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--charcoal-deep);
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 1.5px;
}

.bonus-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 12px;
}

.bonus-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* About Jessica */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
    gap: 60px;
    background-color: var(--charcoal);
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.profile-frame {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.profile-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--charcoal-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--gold);
}

.about-content {
    flex: 1.5;
}

.about-content h2 {
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: left;
}

.about-content p {
    color: #c8c8c8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    padding: 100px 8%;
    background-color: var(--charcoal-deep);
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--charcoal);
    border: 1px solid rgba(212, 175, 55, 0.05);
    padding: 35px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #e0e0e0;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 20px;
}

.test-author {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 8%;
    background-color: var(--charcoal);
    position: relative;
    z-index: 1;
}

.guarantee-box {
    max-width: 750px;
    margin: 0 auto;
    background-color: var(--charcoal-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.guarantee-badge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.guarantee-content h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.guarantee-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Call to Action Section */
.cta-section {
    padding: 100px 8%;
    background-color: var(--charcoal-deep);
    position: relative;
    z-index: 1;
}

.cta-box {
    background-color: var(--charcoal);
    border: 2px solid var(--gold);
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6);
}

.cta-box h2 {
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 35px;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
}

.price-val {
    font-size: 3.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--gold);
}

.price-sub {
    font-size: 0.85rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-badges {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #666;
}

/* FAQ Section Accordion */
.faq-section {
    padding: 100px 8%;
    background-color: var(--charcoal);
    position: relative;
    z-index: 1;
}

.faq-accordion {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--charcoal-light);
    border: 1px solid rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 22px 30px;
    text-align: left;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 30px 22px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px;
    background-color: var(--charcoal-deep);
    border-top: 1px solid #111;
    color: #444;
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}

/* Ebook Preview Section */
.preview-section {
    padding: 100px 8%;
    background-color: var(--charcoal);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    position: relative;
    z-index: 1;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.preview-card {
    background-color: var(--charcoal-light);
    border: 1px solid rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.preview-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.preview-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 20px;
    background-color: #0b0b0b;
    transition: transform 0.5s ease;
}

.preview-card:hover .preview-img {
    transform: scale(1.02);
    border-color: var(--gold);
}

.preview-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.preview-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .about {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .about-content h2 {
        text-align: center;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        gap: 20px;
    }
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    .guarantee-content h2 {
        text-align: center;
    }
    .fb-comment.fb-reply {
        margin-left: 30px;
    }
    .sticky-cta-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .sticky-price-info {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    .sticky-price-val {
        font-size: 1.6rem;
    }
    #sticky-cta {
        padding: 10px 5%;
    }
    #cta-sticky-btn {
        width: 100%;
        padding: 10px;
        text-align: center;
        font-size: 0.85rem;
    }
}

/* Facebook Comments Section */
.fb-comments-section {
    padding: 80px 8%;
    background-color: var(--charcoal);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    position: relative;
    z-index: 1;
}

.fb-comments-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--charcoal-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.fb-comments-header {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.fb-comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fb-comment {
    display: flex;
    gap: 15px;
}

.fb-comment.fb-reply {
    margin-left: 60px;
    border-left: 2px solid rgba(212, 175, 55, 0.2);
    padding-left: 15px;
}

.fb-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #3b5998;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fb-body {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 15px 20px;
    position: relative;
}

.fb-comment.fb-reply .fb-body {
    background-color: rgba(212, 175, 55, 0.03);
}

.fb-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fb-author-badge {
    background-color: var(--gold);
    color: #121212;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.fb-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.fb-actions {
    font-size: 0.75rem;
    color: #777;
    display: flex;
    gap: 10px;
    align-items: center;
}

.fb-action-btn {
    cursor: pointer;
    font-weight: 600;
    color: #3b5998;
    text-decoration: none;
}

.fb-action-btn:hover {
    text-decoration: underline;
}

.fb-time {
    color: #666;
}

/* Sticky Bottom CTA */
#sticky-cta {
    position: fixed;
    bottom: -150px; /* Hide initially */
    left: 0;
    right: 0;
    background-color: rgba(18, 18, 18, 0.96);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    padding: 15px 8%;
    z-index: 1000;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: bottom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
}

#sticky-cta.show {
    bottom: 0;
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.sticky-price-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sticky-price-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.sticky-price-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

#cta-sticky-btn {
    padding: 14px 35px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Before & After Comparison Slider */
.comparison-section {
    padding: 100px 8%;
    background-color: var(--charcoal-deep);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    position: relative;
    z-index: 1;
}

.comparison-slider-container {
    max-width: 650px;
    margin: 40px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
}

.comparison-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.image-before-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.image-before {
    width: 650px; /* Keep exact container width to prevent image distortion */
    max-width: none;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--gold);
    cursor: ew-resize;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.handle-line {
    width: 2px;
    height: calc(50% - 20px);
    background-color: var(--gold);
}

.handle-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--charcoal-deep);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Interactive Certificate Section */
.interactive-cert-section {
    padding: 100px 8%;
    background-color: var(--charcoal);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    position: relative;
    z-index: 1;
}

.cert-input-container {
    max-width: 500px;
    margin: 40px auto 0;
    text-align: center;
}

.cert-input-container input {
    width: 100%;
    padding: 16px 24px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--charcoal-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    color: #fff;
    outline: none;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cert-input-container input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.cert-canvas-container {
    max-width: 750px;
    margin: 40px auto 0;
    perspective: 1000px;
}

.cert-card {
    background-color: #fffaf0; /* Elegant high-quality paper cream color */
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid #e2d1b7;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.cert-border-outer {
    border: 6px double #c5a059;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
}

.cert-border-inner {
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 30px 40px;
    text-align: center;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.cert-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #222;
}

.cert-logo-sub {
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: #666;
    margin-top: 4px;
}

.cert-border-inner h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #c5a059;
    letter-spacing: 4px;
    margin: 25px 0 10px;
}

.cert-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
}

.cert-student-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 700;
    font-style: italic;
    color: #111;
    margin: 20px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    min-width: 300px;
    text-align: center;
    letter-spacing: 1px;
}

.cert-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
    max-width: 580px;
    margin-bottom: 30px;
}

.cert-signatures {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-top: 10px;
}

.cert-sig-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
}

.cert-sig-line {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
}

.cert-sig-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: bold;
    font-style: italic;
    color: #222;
}

.cert-sig-title {
    font-size: 0.65rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cert-stamp {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px dashed #c5a059;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-15deg);
    opacity: 0.85;
}

.cert-stamp-inner {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: rgba(197, 160, 89, 0.1);
    border: 1px solid #c5a059;
    color: #c5a059;
    font-size: 0.55rem;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Live Sale Notification Popups */
.live-sale-popup {
    position: fixed;
    bottom: 20px;
    left: -400px; /* Hidden initially offscreen */
    background-color: #121212;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 320px;
}

.live-sale-popup.show {
    left: 20px;
}

.live-sale-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--gold);
    color: #121212;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.live-sale-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.live-sale-text {
    font-size: 0.8rem;
    color: #fff;
    line-height: 1.3;
}

.live-sale-text strong {
    color: var(--gold);
}

.live-sale-time {
    font-size: 0.65rem;
    color: #777;
}

/* New Responsive Overrides */
@media (max-width: 900px) {
    .comparison-slider {
        height: 230px;
    }
    .image-before {
        width: 100%;
        max-width: none;
    }
    .cert-border-inner {
        padding: 20px 15px;
    }
    .cert-border-inner h3 {
        font-size: 1.4rem;
    }
    .cert-student-name {
        font-size: 1.8rem;
        min-width: 100%;
        margin: 15px 0;
    }
    .cert-description {
        font-size: 0.75rem;
        margin-bottom: 20px;
    }
    .cert-signatures {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .cert-sig-item {
        width: 100%;
    }
    .live-sale-popup {
        display: none !important;
    }
}

/* Earnings Calculator Section */
.earnings-section {
    padding: 100px 8%;
    background-color: var(--charcoal);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    position: relative;
    z-index: 1;
}

.earnings-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 40px auto 0;
    align-items: center;
}

.earnings-inputs {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: var(--charcoal-light);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

.slider-val {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Custom range slider styling */
.slider-group input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: background 0.3s;
}

.slider-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: transform 0.1s;
}

.slider-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.earnings-dashboard {
    background-color: var(--charcoal-deep);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dashboard-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.dashboard-main-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.dashboard-sub-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.metric-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
}

.dashboard-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid var(--gold);
}

/* Henna Timer Calculator Section */
.henna-calc-section {
    padding: 100px 8%;
    background-color: var(--charcoal-deep);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    position: relative;
    z-index: 1;
}

.henna-calc-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 40px auto 0;
    align-items: stretch;
}

.henna-calc-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: var(--charcoal-light);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.calc-group-title {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.calc-grid-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 15px;
}

.calc-option-card {
    background-color: var(--charcoal);
    border: 1.5px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
}

.calc-option-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    color: #fff;
}

.calc-option-card.selected {
    background-color: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.henna-result-box {
    background-color: var(--charcoal-light);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.henna-result-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.result-time-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.result-time-display {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.result-tip-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-tip-content {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    background-color: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 8px;
    border-top: 1.5px solid rgba(212, 175, 55, 0.15);
    max-width: 320px;
}

/* Responsive styles for calculators */
@media (max-width: 900px) {
    .earnings-container, .henna-calc-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .earnings-inputs, .earnings-dashboard, .henna-calc-form, .henna-result-box {
        padding: 30px 20px;
    }
    .dashboard-main-val {
        font-size: 2.5rem;
    }
    .result-time-display {
        font-size: 3rem;
    }
}


