/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #0b2240;      /* Deep Medical Navy */
    --primary-light: #153258;
    --primary-dark: #061224;
    --accent: #0284c7;       /* Clinical Blue/Cyan */
    --accent-hover: #0369a1;
    --success: #10b981;      /* Bright Emerald Green */
    --success-hover: #059669;
    --warning: #e11d48;      /* Red/Rose for warnings & alerts */
    --warning-bg: #fff1f2;
    --warning-border: #fecdd3;
    --text-main: #334155;    /* Slate Dark Gray for readability */
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;

    /* Fonts - Native System Font Stack (Zero HTTP Requests) */
    --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Spacing & Borders */
    --container-width: 1200px;
    --container-narrow: 800px;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.25;
    font-weight: 700;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

ul {
    list-style: none;
}

/* ==========================================================================
   LAYOUT CONTAINERS & UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    width: 100%;
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

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

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

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.btn-primary {
    background-color: #10b981;
    color: var(--bg-white);
    box-shadow: none;
    border: none;
}

.btn-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: none;
    color: var(--bg-white);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--bg-white);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--bg-white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Animation Utilities */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(13, 148, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 148, 136, 0);
    }
}

/* ==========================================================================
   SITE HEADER (STICKY NAVIGATION)
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.footer-logo .logo-img {
    width: 32px;
    height: 32px;
}

.logo-icon {
    font-size: 1.75rem;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.header-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 20px;
}

/* Mobile Toggle & Responsive Nav */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
        order: 3;
    }
    
    .main-nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    
    .main-nav.active {
        max-height: 400px;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }
    
    .nav-link {
        display: block;
        padding: 8px 0;
    }
    
    .header-cta {
        display: none; /* Hide in simple layout or keep in menu */
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    background-color: var(--bg-light);
    color: var(--primary);
    padding: 70px 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
    gap: 48px;
}

/* Vertical Divider */
.hero-divider {
    background-color: rgba(11, 34, 64, 0.1);
    height: 80%;
    width: 1px;
}

.hero-content h1 {
    color: var(--primary);
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtext {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 30px;
}

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

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bullet-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(13, 148, 136, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
}

.bullet-text {
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    max-height: 495px;
    width: 100%;
    max-width: 485px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-white); /* White frame/polaroid look */
    border-radius: 12px;
}

.hero-image-badge {
    position: absolute;
    bottom: 80px;
    right: -35px; /* Moved to bottom-right edge to avoid body overlap and align with packaging */
    background-color: var(--warning);
    color: var(--bg-white);
    padding: 16px;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse-badge 2s infinite;
    z-index: 10;
}

.hero-image-badge .badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.hero-image-badge .badge-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}

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

@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-divider {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-image-wrapper {
        order: -1; /* Display image first on mobile for product hero impact */
    }
    
    .hero-image-badge {
        right: 10px; /* Safe position inside image boundaries on mobile */
        bottom: 10px;
    }
}

/* ==========================================================================
   SYMPTOMS & PROBLEMS SECTION (WITH MEDICAL WARNING ALERT)
   ========================================================================== */
.problems-section {
    background-color: var(--bg-white);
}

.content-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.alert-box {
    background-color: var(--warning-bg);
    border-left: 5px solid var(--warning);
    border-top: 1px solid var(--warning-border);
    border-right: 1px solid var(--warning-border);
    border-bottom: 1px solid var(--warning-border);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 20px;
    box-shadow: var(--shadow-sm);
}

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

.alert-icon {
    font-size: 1.5rem;
}

.alert-header h3 {
    font-size: 1.25rem;
    color: var(--warning);
    margin: 0;
}

.alert-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alert-bullets li {
    position: relative;
    padding-left: 24px;
    font-weight: 500;
}

.alert-bullets li::before {
    content: "•";
    color: var(--warning);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 8px;
    top: -3px;
}

/* ==========================================================================
   PRODUCT PRESENTATION (ABOUT SECTION)
   ========================================================================== */
.about-section {
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-main-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(11, 34, 64, 0.15));
}

@media (max-width: 576px) {
    .product-main-image {
        max-width: 280px;
    }
}

.certifications-row {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.cert-item {
    background-color: var(--bg-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    border: 1px solid var(--border-color);
    white-space: normal;
    text-align: center;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-cta-box {
    margin-top: 30px;
}

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

/* ==========================================================================
   PRACTICAL BENEFITS SECTION
   ========================================================================== */
.benefits-section {
    background-color: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.benefit-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(2, 132, 199, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   SCIENTIFIC INGREDIENTS SECTION (PUBMED REFS)
   ========================================================================== */
.ingredients-section {
    background-color: var(--bg-light);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 480px) {
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
}

.ingredient-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.ingredient-card:hover {
    box-shadow: var(--shadow-md);
}

.ingredient-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.ingredient-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.5s ease;
}

.ingredient-card:hover .ingredient-img-container img {
    transform: scale(1.05);
}

.ingredient-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ingredient-card-body h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.ingredient-desc {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Scientific Box */
.scientific-box {
    background-color: var(--bg-light);
    border-left: 3px solid var(--accent);
    padding: 16px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-top: auto; /* Push to bottom of card */
}

.scientific-box h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.scientific-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.scientific-reference {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    font-family: monospace;
    display: inline-block;
    transition: var(--transition);
}

a.scientific-reference:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* ==========================================================================
   USAGE & STEP-BY-STEP SECTION
   ========================================================================== */
.usage-section {
    background-color: var(--bg-white);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    align-items: center;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
}

.step-content {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary);
}

.usage-note {
    display: flex;
    gap: 12px;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 16px 20px;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    align-items: center;
    color: #166534;
}

.note-icon {
    font-size: 1.25rem;
}

/* ==========================================================================
   WARNINGS & SAFETY PRECAUTIONS SECTION
   ========================================================================== */
.warnings-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.warnings-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .warnings-blocks {
        grid-template-columns: 1fr;
    }
}

.warning-block-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius);
}

.warning-block-item h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.warning-block-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.warning-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.warning-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.warning-list li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 6px;
}

.red-flags {
    border-color: var(--warning-border);
    background-color: var(--warning-bg);
}

.red-flags h3 {
    color: var(--warning);
    border-bottom-color: var(--warning-border);
}

.warning-list-red {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.warning-list-red li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.warning-list-red li::before {
    content: "•";
    color: var(--warning);
    font-weight: bold;
    position: absolute;
    left: 6px;
}

/* ==========================================================================
   OFFICIAL DISTRIBUTION & PURCHASE WARNINGS
   ========================================================================== */
.purchase-section {
    background-color: var(--bg-white);
}

/* ==========================================================================
   REAL PHOTOS GALLERY (UNBOXING EVIDENCE)
   ========================================================================== */
.gallery-section {
    background-color: var(--bg-light);
}

/* Interactive Image Carousel Styling */
.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 40px auto 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-white);
    border: 4px solid var(--bg-white);
}

.carousel-slides {
    position: relative;
    height: 400px;
    width: 100%;
}

@media (max-width: 480px) {
    .carousel-slides {
        height: 280px;
    }
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 10;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Nav Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: rgba(11, 34, 64, 0.8);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.carousel-btn:hover {
    background-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 16px;
}

.carousel-btn-next {
    right: 16px;
}

/* Dots indicator */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1.5px solid rgba(11, 34, 64, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background-color: var(--bg-white);
    transform: scale(1.2);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   PRICING & CTA SECTION
   ========================================================================== */
.pricing-section {
    background-color: var(--bg-white);
}

.pricing-layout-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.pricing-info-col h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.pricing-intro-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.pricing-trust-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.pricing-trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
}

.pricing-note-box {
    display: flex;
    gap: 12px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--border-radius);
    align-items: center;
}

.note-box-icon {
    font-size: 1.25rem;
}

.note-box-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Price Card Component */
.pricing-card-col {
    display: flex;
    justify-content: center;
}

.price-card {
    background-color: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 360px;
    position: relative;
    text-align: center;
    padding-bottom: 30px;
}

.price-card.popular {
    border-color: var(--accent);
}

.price-card-badge {
    background-color: var(--warning);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 8px 16px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.price-card-img-wrapper {
    padding: 20px;
    display: flex;
    justify-content: center;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.price-card-img-wrapper img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(11, 34, 64, 0.1));
}

.price-card-details {
    padding: 24px;
}

.price-card-details h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

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

.price-old {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.price-new {
    font-size: 2.5rem;
    color: var(--warning);
    font-weight: 800;
    font-family: var(--font-heading);
}

@media (max-width: 991px) {
    .pricing-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .price-card {
        max-width: 400px;
    }
}

/* Timer Styling (Urgency) */
.timer-container {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 12px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-digits {
    color: #38bdf8; /* Soft blue */
    font-family: monospace;
    font-size: 1.15rem;
    font-weight: 700;
}

/* ==========================================================================
   SOCIAL PROOF & REVIEWS SECTION
   ========================================================================== */
.reviews-section {
    background-color: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.review-name {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
}

.review-stars {
    color: #fbbf24; /* Star Gold */
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--border-color);
}

.review-photo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
}

.review-footer {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: auto;
}

.review-verified {
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    background-color: var(--bg-white);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 45px;
}

.faq-item {
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.faq-trigger:hover .faq-question {
    color: var(--accent);
}

.faq-icon-indicator {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-icon-indicator::before,
.faq-icon-indicator::after {
    content: "";
    position: absolute;
    background-color: var(--primary);
    transition: var(--transition);
}

/* Horizontal line */
.faq-icon-indicator::before {
    top: 7px;
    left: 0;
    width: 100%;
    height: 2px;
}

/* Vertical line */
.faq-icon-indicator::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 100%;
}

.faq-item.active {
    border-color: var(--accent);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon-indicator::after {
    transform: rotate(90deg);
    opacity: 0;
}

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

.faq-content-inner {
    padding: 0 24px 24px 24px;
    font-size: 0.975rem;
    color: var(--text-main);
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-content {
    max-height: 500px; /* Large enough height to fit answers */
}

.faq-item.active .faq-content-inner {
    border-top-color: var(--border-color);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--text-muted);
    padding: 60px 0 40px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--bg-white);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-desc {
    line-height: 1.6;
    max-width: 500px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col h4 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================================================
   FLOATING BOTTOM BAR FOR MOBILE MOBILE CONVERSIONS
   ========================================================================== */
.floating-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    padding: 12px 24px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.15);
    z-index: 99;
    display: none;
    align-items: center;
    justify-content: space-between;
}

.floating-product-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-product-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.floating-product-meta {
    color: var(--bg-white);
    font-family: var(--font-heading);
}

.floating-product-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
}

.floating-product-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--warning);
    margin-top: 4px;
}

.floating-cta-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
    border-radius: 20px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 74px; /* Prevent floating bar from hiding footer elements */
    }
    
    .floating-action-bar {
        display: flex;
    }
}
