/* ==========================================================================
   Upgyanam Sales Landing Page Styling
   Brand Color Palette: Navy Blue (#0A192F) & Gold (#D4AF37, #8C6239)
   Optimized for Devanagari/Hindi Typography and Mobile-First Layouts
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --color-navy-dark: #07162C;
    --color-navy-main: #0B2240;
    --color-navy-light: #1B355A;
    --color-navy-tint: #F3F7FA;
    
    --color-gold-metallic: #D4AF37;
    --color-gold-dark: #A67C1E;
    --color-gold-light: #FAF4E5;
    
    /* Semantic Colors */
    --color-text-main: #2C3E50;
    --color-text-muted: #627284;
    --color-bg-white: #FFFFFF;
    --color-bg-alt: #F8FAFC;
    --color-accent-red: #D93838;
    --color-accent-green: #27AE60;
    
    /* Layout & UI Variables */
    --font-heading: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    --font-body: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    --shadow-sm: 0 2px 8px rgba(7, 22, 44, 0.04);
    --shadow-md: 0 8px 24px rgba(7, 22, 44, 0.08);
    --shadow-lg: 0 16px 40px rgba(7, 22, 44, 0.12);
    --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.3);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-white);
    color: var(--color-text-main);
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --------------------------------------------------------------------------
   3. Utility Classes & Component Styling
   -------------------------------------------------------------------------- */
.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

.bg-alt {
    background-color: var(--color-bg-alt);
}

.bg-navy {
    background-color: var(--color-navy-dark);
    color: var(--color-bg-white);
}

.bg-navy h2, .bg-navy h3, .bg-navy h4 {
    color: var(--color-bg-white);
}

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

.badge-gold {
    background-color: var(--color-gold-light);
    color: var(--color-gold-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    position: relative;
}

.section-title span {
    color: var(--color-gold-dark);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.bg-navy .section-subtitle {
    color: #A0B3CE;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
}

/* Call to Action Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold-metallic) 0%, var(--color-gold-dark) 100%);
    color: var(--color-navy-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 16px 40px;
    border-radius: 50px;
    border: 2px solid #FFF5D2;
    box-shadow: var(--shadow-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: cta-pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    transition: none;
    animation: cta-sheen 4s infinite linear;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
    color: var(--color-navy-dark);
}

.cta-button:active {
    transform: translateY(-1px);
}

@keyframes cta-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes cta-sheen {
    0% {
        left: -60%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

/* --------------------------------------------------------------------------
   4. Navigation & Floating Action
   -------------------------------------------------------------------------- */
.navbar {
    background-color: var(--color-bg-white);
    border-bottom: 1px solid rgba(7, 22, 44, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--color-gold-metallic);
}

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

.logo-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.nav-cta {
    background-color: var(--color-navy-main);
    color: var(--color-gold-metallic);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid var(--color-gold-metallic);
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    background-color: var(--color-navy-light);
    color: var(--color-bg-white);
}

/* --------------------------------------------------------------------------
   5. Section 1: Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding: 70px 0 60px 0;
    background: radial-gradient(circle at top right, rgba(250, 244, 229, 0.4) 0%, rgba(255, 255, 255, 1) 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .hero-content {
        align-items: center;
    }
}

.hero-hook {
    background-color: #FDE8E8;
    color: var(--color-accent-red);
    padding: 6px 14px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 20px;
    display: inline-block;
    border-left: 4px solid var(--color-accent-red);
}

.hero-title {
    font-size: 2.8rem;
    color: var(--color-navy-dark);
    margin-bottom: 16px;
    line-height: 1.35;
}

.hero-title span {
    color: var(--color-gold-dark);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 4px;
    background: var(--color-gold-metallic);
    opacity: 0.5;
    border-radius: 2px;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta-wrapper {
    margin-bottom: 24px;
    width: 100%;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 480px;
    margin-top: 10px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-main);
    font-weight: 600;
}

.badge-item svg {
    color: var(--color-accent-green);
    flex-shrink: 0;
}

/* Hero Book Image Mockup styling */
.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.book-shadow-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(7, 22, 44, 0.05) 50%, transparent 100%);
    z-index: 1;
    filter: blur(10px);
    pointer-events: none;
}

.hero-book-mockup {
    width: 100%;
    max-width: 320px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 45px rgba(7, 22, 44, 0.18);
    transform: rotate(2deg);
    transition: var(--transition-smooth);
    z-index: 2;
}

.hero-book-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subheadline {
        font-size: 1.05rem;
    }
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
        max-width: 250px;
    }
}

/* --------------------------------------------------------------------------
   6. Section 2: Problem Agitation
   -------------------------------------------------------------------------- */
.problem-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.problem-card {
    background-color: var(--color-bg-white);
    border-left: 4px solid var(--color-accent-red);
    padding: 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.problem-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.problem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #FDE8E8;
    color: var(--color-accent-red);
    border-radius: 50%;
    flex-shrink: 0;
}

.problem-card h3 {
    font-size: 1.15rem;
    color: var(--color-navy-dark);
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.problem-story {
    margin-top: 45px;
    padding: 30px;
    background-color: #FFF9F9;
    border: 1px dashed rgba(217, 56, 56, 0.25);
    border-radius: var(--radius-md);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.story-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-navy-dark);
    font-weight: 500;
    margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   7. Section 3: Why This Happens
   -------------------------------------------------------------------------- */
.science-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.science-card {
    background-color: var(--color-navy-main);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    text-align: center;
}

.science-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    background-color: var(--color-navy-light);
}

.science-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--color-gold-metallic);
    border-radius: 50%;
    margin-bottom: 20px;
}

.science-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-gold-metallic);
}

.science-card p {
    font-size: 0.95rem;
    color: #A0B3CE;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   8. Section 4: What You Will Learn
   -------------------------------------------------------------------------- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    background-color: var(--color-bg-white);
    border: 1px solid #E2E8F0;
    padding: 30px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--color-gold-metallic), var(--color-gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--color-gold-light);
    color: var(--color-gold-dark);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-navy-dark);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   9. Section 5: Inside The Ebook
   -------------------------------------------------------------------------- */
.inside-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 991px) {
    .inside-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.inside-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inside-check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.05rem;
}

.inside-check-item svg {
    color: var(--color-accent-green);
    margin-top: 5px;
    flex-shrink: 0;
}

.inside-check-item strong {
    color: var(--color-navy-dark);
}

.inside-image-container {
    background-color: var(--color-navy-tint);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(11, 34, 64, 0.05);
    display: flex;
    justify-content: center;
}

.inside-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.stat-box {
    background-color: var(--color-bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.25);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-gold-dark);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-navy-dark);
}

/* --------------------------------------------------------------------------
   10. Section 6: Transformation (Before & After)
   -------------------------------------------------------------------------- */
.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.trans-box {
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.trans-box.before {
    background-color: #FFF8F8;
    border: 1px solid #FDCFCF;
}

.trans-box.after {
    background-color: #F7FCF9;
    border: 1px solid #D1F2D9;
}

.trans-box h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.trans-box.before h3 {
    color: var(--color-accent-red);
}

.trans-box.after h3 {
    color: var(--color-accent-green);
}

.trans-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trans-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
}

.trans-box.before .trans-item {
    color: #6B4E4E;
}

.trans-box.after .trans-item {
    color: #385E48;
}

.trans-item svg {
    margin-top: 4px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   11. Section 7: Why Parents Love This (Testimonials)
   -------------------------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-bg-white);
    border: 1px solid #ECEFF2;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars-rating {
    display: flex;
    gap: 4px;
    color: var(--color-gold-metallic);
    margin-bottom: 16px;
}

.testimonial-content {
    font-size: 1rem;
    color: var(--color-text-main);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar-placeholder {
    width: 48px;
    height: 48px;
    background-color: var(--color-navy-tint);
    border: 2px solid var(--color-navy-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-navy-main);
}

.profile-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.profile-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   12. Section 8: Bonus Section
   -------------------------------------------------------------------------- */
.bonuses-container {
    max-width: 900px;
    margin: 0 auto;
}

.bonus-card {
    background-color: var(--color-bg-white);
    border: 2px solid var(--color-gold-metallic);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: grid;
    grid-template-columns: 80px 1fr 120px;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.bonus-card::after {
    content: 'FREE BONUS';
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--color-gold-dark);
    color: var(--color-bg-white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 30px;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .bonus-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
}

.bonus-num {
    width: 70px;
    height: 70px;
    background-color: var(--color-gold-light);
    color: var(--color-gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 0 auto;
}

.bonus-details h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--color-navy-dark);
}

.bonus-details p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.bonus-value {
    text-align: right;
    font-family: var(--font-heading);
}

@media (max-width: 768px) {
    .bonus-value {
        text-align: center;
    }
}

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

.value-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent-red);
    text-decoration: line-through;
}

.bonus-total-bar {
    background-color: var(--color-navy-main);
    color: var(--color-bg-white);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    border: 1px solid var(--color-gold-metallic);
}

@media (max-width: 576px) {
    .bonus-total-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

.total-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-bg-white);
}

.total-title span {
    color: var(--color-gold-metallic);
}

.total-val-txt {
    font-size: 1rem;
    color: #A0B3CE;
}

.total-val-txt span {
    color: var(--color-accent-green);
    font-weight: 700;
    font-size: 1.25rem;
}

/* --------------------------------------------------------------------------
   13. Section 9: Price Reveal & Urgency
   -------------------------------------------------------------------------- */
.price-box {
    background-color: var(--color-bg-white);
    border: 2px solid var(--color-gold-metallic);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 650px;
    margin: 0 auto;
    padding: 50px 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 576px) {
    .price-box {
        padding: 35px 20px;
    }
}

.price-title {
    font-size: 1.3rem;
    color: var(--color-navy-dark);
    margin-bottom: 24px;
}

.price-flex {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 12px;
}

.price-original {
    font-size: 1.8rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.price-offer {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    font-family: var(--font-heading);
}

.price-offer span {
    color: var(--color-gold-dark);
}

.payment-frequency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent-green);
    margin-bottom: 30px;
    display: inline-block;
    padding: 4px 16px;
    background-color: #EBF7EE;
    border-radius: 20px;
}

.timer-wrapper {
    background-color: var(--color-navy-tint);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(11, 34, 64, 0.06);
}

.timer-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-navy-dark);
}

.timer-countdown {
    display: flex;
    gap: 16px;
    font-family: var(--font-heading);
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    line-height: 1.2;
}

.time-lbl {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* Guarantee / Trust footer */
.price-guarantee {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
    border-top: 1px solid #ECEFF2;
    padding-top: 24px;
}

.guar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.guar-item svg {
    color: var(--color-gold-dark);
}

/* --------------------------------------------------------------------------
   14. Section 10: FAQ (Accordion)
   -------------------------------------------------------------------------- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-bg-white);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy-dark);
    cursor: pointer;
    outline: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--color-bg-alt);
    border-top: 1px solid transparent;
}

.faq-answer-content {
    padding: 20px 24px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.faq-icon-svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--color-gold-dark);
}

.faq-item.active {
    border-color: var(--color-gold-metallic);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-answer {
    border-top: 1px solid #ECEFF2;
}

.faq-item.active .faq-icon-svg {
    transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   15. Section 11: Final Emotional Close & Footer
   -------------------------------------------------------------------------- */
.emotional-close {
    background: linear-gradient(180deg, var(--color-navy-dark) 0%, #030C19 100%);
    padding: 90px 0;
    border-top: 3px solid var(--color-gold-metallic);
}

.close-content {
    max-width: 800px;
    margin: 0 auto;
}

.close-tagline {
    color: var(--color-gold-metallic);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
}

.close-heading {
    font-size: 2.6rem;
    margin-bottom: 24px;
    color: var(--color-bg-white);
    line-height: 1.4;
}

.close-desc {
    font-size: 1.15rem;
    color: #A0B3CE;
    margin-bottom: 40px;
}

.footer {
    background-color: #030811;
    color: var(--color-text-muted);
    padding: 40px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-layout {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.footer-brand {
    font-weight: 700;
    color: #ECEFF2;
}

.footer-links {
    display: flex;
    gap: 24px;
}

@media (max-width: 576px) {
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* --------------------------------------------------------------------------
   16. Notification Toast (Social Proof)
   -------------------------------------------------------------------------- */
.social-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background-color: var(--color-bg-white);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    max-width: 320px;
    transform: translateY(120px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.social-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 32px;
    height: 32px;
    background-color: var(--color-gold-light);
    color: var(--color-gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-text {
    display: flex;
    flex-direction: column;
}

.toast-message {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-navy-dark);
}

.toast-time {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   17. Simulated Checkout Modal
   -------------------------------------------------------------------------- */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 22, 44, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.checkout-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-gold-metallic);
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 480px;
    padding: 35px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.checkout-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
    outline: none;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--color-navy-dark);
}

.modal-header-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.modal-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-gold-metallic);
}

.modal-title {
    font-size: 1.4rem;
    color: var(--color-navy-dark);
    margin-bottom: 8px;
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-navy-dark);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #CBD5E1;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    border-color: var(--color-gold-metallic);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.modal-submit {
    margin-top: 10px;
    background: linear-gradient(135deg, var(--color-gold-metallic) 0%, var(--color-gold-dark) 100%);
    color: var(--color-navy-dark);
    font-weight: 700;
    padding: 14px 0;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.modal-submit:hover {
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.modal-footer {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.modal-footer svg {
    color: var(--color-accent-green);
}

/* --------------------------------------------------------------------------
   18. Sticky Buy Now Footer Bar (Laptop & Mobile)
   -------------------------------------------------------------------------- */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 22, 44, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 2px solid var(--color-gold-metallic);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    padding: 12px 16px;
    z-index: 999;
    display: block; /* Always enabled on all screens */
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.mobile-sticky-bar.show {
    transform: translateY(0);
    opacity: 1;
}

.sticky-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Aligns with website main container width */
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    gap: 16px;
}

.sticky-bar-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-bar-img {
    width: 36px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--color-gold-metallic);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.sticky-bar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sticky-bar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-bg-white);
    line-height: 1.2;
}

.sticky-bar-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-bar-price .price-offer {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-gold-metallic);
}

.sticky-bar-price .price-original {
    font-size: 0.85rem;
    color: #A0B3CE;
    text-decoration: line-through;
}

.sticky-bar-btn {
    background: linear-gradient(135deg, var(--color-gold-metallic) 0%, var(--color-gold-dark) 100%);
    color: var(--color-navy-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid #FFF5D2;
    box-shadow: var(--shadow-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    animation: cta-pulse 2.5s infinite;
}

.sticky-bar-btn:active {
    transform: scale(0.95);
}

/* Extra space at the bottom of the body so that the sticky bar doesn't overlap any content */
body {
    padding-bottom: 76px;
}

@media (max-width: 576px) {
    .sticky-bar-title {
        font-size: 0.85rem;
    }
    .sticky-bar-price .price-offer {
        font-size: 1.05rem;
    }
    .sticky-bar-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    .sticky-bar-container {
        padding: 0 8px;
        gap: 8px;
    }
}
