/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (Updated to Red/Yellow/Chocolate theme)
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-primary: #FFFDF9; /* Warm cream */
    --color-bg-secondary: #F7EFE5; /* Soft pastel cream */
    --color-text-dark: #2D201A; /* Deep chocolate brown */
    --color-text-muted: #5C4A42; /* Soft clay brown */
    --color-primary: #e02b20; /* Urgency Red */
    --color-primary-hover: #b81e15;
    --color-secondary: #ffcc00; /* Urgency Gold/Yellow */
    --color-secondary-hover: #e0b200;
    --color-dark: #1C110C; /* Dark chocolate coffee */
    --color-white: #FFFFFF;
    --color-success: #2A9D8F; /* Forest sage green */
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-headers: 'Outfit', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    /* Shadows & Border Radius */
    --shadow-sm: 0 4px 12px rgba(45, 32, 26, 0.05);
    --shadow-md: 0 10px 30px rgba(45, 32, 26, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.25);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Max Widths */
    --container-width: 1140px;
    --container-md: 800px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth; /* Smooth scrolling to sections */
}

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 50px; /* Offset for sticky top bar */
    padding-bottom: 70px; /* Offset for sticky bottom bar */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headers);
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.25;
}

p {
    margin-bottom: 1.5rem;
}

p.lead {
    font-size: 1.15rem;
    color: var(--color-text-muted);
}

strong {
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.max-width-md {
    max-width: var(--container-md);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-white) !important;
}

.opacity-8 {
    opacity: 0.8;
}

.spacer-y {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

/* ==========================================================================
   UTILITY COMPONENTS (Buttons, Badges)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2.2rem;
    font-family: var(--font-headers);
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    width: 100%;
    text-transform: uppercase;
}

@media(min-width: 576px) {
    .btn {
        width: auto;
    }
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-dark);
}

.btn-primary:hover {
    background-color: var(--color-secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 43, 32, 0.4);
}

.btn-large {
    padding: 1.25rem 3.5rem;
    font-size: 1.25rem;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 204, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Premium Button Shimmer Sweep Effect */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
}

@keyframes shimmer-sweep {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

.shimmer-effect::after {
    animation: shimmer-sweep 3.5s infinite ease-in-out;
}

.sub-title {
    font-family: var(--font-headers);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: -0.5rem auto 3rem auto;
}

/* ==========================================================================
   HANDWRITTEN ELEMENETS (Typography additions)
   ========================================================================== */
.handwritten-accent {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.instructor-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 3.2rem;
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

.instructor-subquote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   FLOATING DECORATIVE BACKGROUND ICONS
   ========================================================================== */
.bg-deco-icon {
    position: absolute;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.05); /* Soft white on dark backgrounds */
    pointer-events: none;
    z-index: 1;
    animation: float-slow 7s infinite ease-in-out;
}

.bg-deco-icon:nth-of-type(even) {
    animation-duration: 9s;
    animation-delay: 1.5s;
}

@keyframes float-slow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(6deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================================================
   STICKY TOP BAR
   ========================================================================== */
.sticky-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 0;
    font-size: 0.95rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.sticky-top-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-top-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-headers);
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: inline-block;
    animation: beacon 1.5s infinite;
}

@keyframes beacon {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(0.9); opacity: 1; }
}

.sticky-top-btn {
    background-color: var(--color-secondary);
    color: var(--color-dark);
    text-decoration: none;
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sticky-top-btn:hover {
    background-color: var(--color-secondary-hover);
    transform: scale(1.05);
}

/* ==========================================================================
   HERO SECTION (With Background Image and Overlay)
   ========================================================================== */
.hero-rustic {
    background-image: url('images/hero-bg-pie.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 5rem 0 7rem 0; /* Add bottom padding for wave curve spacer */
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(28, 17, 12, 0.8) 0%, rgba(28, 17, 12, 0.9) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background-color: rgba(255, 204, 0, 0.15);
    color: var(--color-secondary);
    font-family: var(--font-headers);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: var(--font-headers);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-yellow-banner {
    background-color: var(--color-secondary);
    color: var(--color-dark);
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    max-width: 760px;
    margin: 0 auto 2.5rem auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* YouTube Video Container & Glowing Halo Frame */
.video-container-wrapper {
    max-width: 760px;
    width: 100%;
    margin: 0 auto 2.5rem auto;
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: #000;
    z-index: 2;
}

/* Glowing Aura effect on video frame */
@keyframes border-glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 204, 0, 0.4), var(--shadow-lg);
        border: 4px solid var(--color-secondary);
    }
    50% {
        box-shadow: 0 0 28px rgba(255, 204, 0, 0.75), var(--shadow-lg);
        border: 4px solid #FFFFFF;
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 204, 0, 0.4), var(--shadow-lg);
        border: 4px solid var(--color-secondary);
    }
}

.video-glow-effect {
    animation: border-glow 3s infinite ease-in-out;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Floating Discount Badge */
.video-badge-discount {
    position: absolute;
    top: -18px;
    right: -18px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-headers);
    font-weight: 850;
    font-size: 1.05rem;
    padding: 0.6rem 1.35rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(224, 43, 32, 0.45);
    border: 2px solid var(--color-secondary);
    transform: rotate(10deg);
    z-index: 10;
    animation: badge-wobble 2.5s infinite ease-in-out;
}

@keyframes badge-wobble {
    0% { transform: rotate(8deg) scale(1); }
    50% { transform: rotate(12deg) scale(1.08); }
    100% { transform: rotate(8deg) scale(1); }
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
}

.hero-cta-box {
    margin-bottom: 3.5rem;
}

.cta-notice {
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

.hero-image-wrapper {
    max-width: 650px;
    margin: 0 auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

.hero-image {
    width: 100%;
}

/* SVG Shape Dividers bottom transitions styles */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 5;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: var(--color-bg-secondary); /* Matches course-intro section bg */
}

/* ==========================================================================
   GRID LAYOUT SYSTEM
   ========================================================================== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media(min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    .reverse-tablet {
        direction: rtl;
    }
    .reverse-tablet > * {
        direction: ltr;
    }
}

/* ==========================================================================
   COURSE INTRO
   ========================================================================== */
.course-intro {
    padding: 5rem 0 7rem 0; /* Add space for bottom divider */
    background-color: var(--color-bg-secondary);
    position: relative;
}

.status-badge {
    background-color: var(--color-dark);
    color: var(--color-white);
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1rem;
}

.discount-tag-container {
    margin-bottom: 1.5rem;
}

.discount-tag-img {
    height: 48px;
    width: auto;
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.features-checklist {
    margin-top: 2rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.check-item i {
    color: var(--color-success);
    margin-top: 0.25rem;
    font-size: 1.2rem;
}

.intro-visual {
    display: flex;
    justify-content: center;
}

.video-placeholder-card {
    background: var(--color-white);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.03);
}

.infography-img {
    border-radius: var(--radius-sm);
    width: 100%;
}

.custom-shape-divider-bottom-intro {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 5;
}

.custom-shape-divider-bottom-intro svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.custom-shape-divider-bottom-intro .shape-fill-intro {
    fill: var(--color-bg-primary); /* Matches instructor-section bg */
}

/* ==========================================================================
   INSTRUCTOR
   ========================================================================== */
.instructor-section {
    padding: 5rem 0;
    background-color: var(--color-bg-primary);
    position: relative;
}

.avatar-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.03);
    max-width: 450px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.avatar-card:hover {
    transform: translateY(-5px);
}

.instructor-img {
    width: 100%;
    object-fit: cover;
}

.avatar-info {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-white) 100%);
}

.instructor-name {
    font-family: var(--font-headers);
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    color: var(--color-dark);
}

.instructor-role {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rating-box {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-bg-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.stars i {
    color: #F4A261;
}

/* ==========================================================================
   PRICING SUMMARY
   ========================================================================== */
.pricing-summary {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    position: relative;
}

.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(224, 43, 32, 0.1);
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.pricing-card-header h3 {
    font-size: 2rem;
    color: var(--color-dark);
}

.badge-promo {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.25rem 1rem;
    border-radius: 4px;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

.pricing-grid-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2.5rem 0;
}

@media(min-width: 768px) {
    .pricing-grid-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-tag {
    background-color: var(--color-bg-secondary);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-text-dark);
}

.benefit-tag i {
    color: var(--color-primary);
}

.pricing-desc {
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}

.pricing-desc .small {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.conversion-notice {
    border-top: 1px dashed rgba(0,0,0,0.1);
    margin-top: 2.5rem;
    padding-top: 2rem;
}

.conversion-notice .small {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.payment-logos {
    max-width: 250px;
    margin: 0 auto;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits-section {
    padding: 5rem 0;
    background-color: var(--color-bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 3rem 0;
}

@media(min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-img-wrapper {
    background: var(--color-white);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.benefit-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-img {
    width: 100%;
    border-radius: var(--radius-sm);
}

.benefits-action {
    margin-top: 3rem;
}

/* ==========================================================================
   SYLLABUS SECTION
   ========================================================================== */
.syllabus-section {
    padding: 5rem 0;
    background-color: var(--color-bg-secondary);
}

.syllabus-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.malla-img {
    width: 100%;
    border-radius: var(--radius-md);
}

/* ==========================================================================
   PREPARATIONS SECTION
   ========================================================================== */
.preparations-section {
    padding: 5rem 0;
    background-color: var(--color-bg-primary);
}

.preparations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media(min-width: 768px) {
    .preparations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prep-card {
    background: var(--color-white);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.prep-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.prep-img {
    width: 100%;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   CERTIFICATE SECTION
   ========================================================================== */
.certificate-section {
    padding: 5rem 0;
    background-color: var(--color-bg-secondary);
}

.certificate-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.cursive-quote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-top: 2rem;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-section {
    padding: 5rem 0;
    background-color: var(--color-bg-primary);
}

.reviews-gallery, .community-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media(min-width: 768px) {
    .reviews-gallery, .community-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-img, .com-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.review-img:hover, .com-img:hover {
    transform: scale(1.03);
    z-index: 2;
}

/* ==========================================================================
   ACCORDION (FAQ)
   ========================================================================== */
.faq-section {
    padding: 5rem 0;
    background-color: var(--color-bg-secondary);
}

.accordion {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-headers);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
}

.accordion-header .icon {
    font-size: 1rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--color-text-muted);
}

.accordion-body p {
    margin: 0;
    padding-bottom: 1.5rem;
}

/* Open accordion states classes dynamic */
.accordion-item.active {
    border-color: rgba(224, 43, 32, 0.2);
}

.accordion-item.active .accordion-header {
    color: var(--color-primary);
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-body {
    max-height: 1000px;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease;
}

/* ==========================================================================
   CHECKOUT FOOTER & COUNTDOWN
   ========================================================================== */
.checkout-footer {
    background: linear-gradient(135deg, var(--color-dark) 0%, #301E17 100%);
    color: var(--color-white);
    padding: 6rem 0;
    position: relative;
}

.badge-accent {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.35rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.lifetime-stamp-wrapper {
    max-width: 400px;
    margin: 0 auto 3rem auto;
}

.lifetime-img {
    width: 100%;
}

.price-comparison-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    max-width: 450px;
    margin: 0 auto 3rem auto;
    backdrop-filter: blur(10px);
}

.original-price {
    font-size: 1.25rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.original-price span {
    text-decoration: line-through;
    color: var(--color-primary);
}

.current-price {
    font-size: 3rem;
    font-family: var(--font-headers);
    color: var(--color-secondary);
    font-weight: 800;
}

.tax-info {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Countdown Timer layout styles */
.timer-wrapper {
    margin-bottom: 3.5rem;
}

.timer-title {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.time-num {
    font-size: 2.25rem;
    font-family: var(--font-headers);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
}

.time-label {
    font-size: 0.75rem;
    opacity: 0.7;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.timer-separator {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.final-cta {
    margin-bottom: 4rem;
}

.guarantee-footer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 3rem;
    text-align: left;
}

@media(min-width: 576px) {
    .guarantee-footer-box {
        flex-direction: row;
        align-items: flex-start;
    }
}

.guarantee-badge-img {
    width: 110px;
    height: auto;
    flex-shrink: 0;
}

.guarantee-text h3 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.guarantee-text .small {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==========================================================================
   STICKY BOTTOM COUNTDOWN & BUY BAR
   ========================================================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.8rem 0;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Closed state */
.sticky-bottom-bar.closed {
    transform: translateY(100%);
    pointer-events: none;
}

.sticky-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.sticky-bottom-close {
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--color-white);
    opacity: 0.6;
    transition: opacity 0.2s ease;
    padding: 0 0.5rem;
}

.sticky-bottom-close:hover {
    opacity: 1;
}

.sticky-bottom-text {
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.badge-discount-yellow {
    background-color: var(--color-secondary);
    color: var(--color-dark);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-right: 0.25rem;
}

.sticky-timer-num {
    background-color: rgba(0,0,0,0.3);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-weight: 800;
    color: var(--color-secondary);
}

.btn-sticky-buy {
    background-color: var(--color-secondary);
    color: var(--color-dark);
    text-decoration: none;
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.btn-sticky-buy:hover {
    background-color: var(--color-secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

@media(max-width: 767px) {
    .sticky-bottom-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .sticky-bottom-close {
        position: absolute;
        top: -5px;
        right: 0;
    }

    body {
        padding-bottom: 120px; /* More offset on mobile for double line bar */
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: #120A07;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.main-footer p {
    margin-bottom: 0.5rem;
}

.main-footer .disclaimer {
    max-width: 700px;
    margin: 1.5rem auto 0 auto;
    line-height: 1.4;
}
