/* ==========================================================================
   Neuro Cinnamon - Stylesheet (Modern Red & Gold Theme with Enhanced Animations)
   ========================================================================== */

/* 1. Google Fonts & Reset */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Open+Sans:wght@400;600;700&display=swap');

:root {
    /* Color Palette - Red & Gold Theme */
    --primary: #c0392b;
    --primary-light: #e74c3c;
    --secondary: #b8860b;
    --secondary-light: #d4a02b;
    --accent: #d4a02b;
    --accent-light: #f5c842;
    --success: #10b981;
    --gold-gradient: linear-gradient(135deg, #d4a02b 0%, #b8860b 100%);
    --red-gradient: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    
    /* Backgrounds */
    --bg-dark: #fcf8f4;
    --bg-dark-deep: #f5ede4;
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-card-hover: #ffffff;
    --bg-card-popular: rgba(255, 248, 235, 0.95);
    
    /* Gradients */
    --primary-grad: var(--red-gradient);
    --bg-grad-radial: radial-gradient(circle at 50% 50%, rgba(212, 160, 43, 0.08) 0%, transparent 80%);
    --popular-grad: linear-gradient(135deg, rgba(212, 160, 43, 0.08) 0%, rgba(184, 134, 11, 0.08) 100%);
    
    /* Glassmorphism Border & Shadows */
    --border-glass: rgba(212, 160, 43, 0.15);
    --border-glass-bright: rgba(212, 160, 43, 0.3);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(212, 160, 43, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(212, 160, 43, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.05);
    --shadow-primary: 0 8px 30px rgba(212, 160, 43, 0.25);
    --shadow-secondary: 0 8px 30px rgba(192, 57, 43, 0.2);
    
    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-dark);
    color: #1f2937;
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(212, 160, 43, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 0% 40%, rgba(192, 57, 43, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 100% 80%, rgba(212, 160, 43, 0.03) 0%, transparent 45%);
    background-attachment: scroll;
}

/* Typography Mobile-First */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: #111827;
}

h1 {
    font-size: 1.625rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.375rem;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 2rem;
}

/* Elegant Heading Underline with Gold */
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.125rem;
    color: var(--secondary);
}

p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
    max-width: 70ch;
}

strong {
    color: #111827;
    font-weight: 700;
}

a {
    color: var(--secondary-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Accessibility & Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }

/* Grid System Mobile-First */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

/* Section Common Styles */
section {
    padding: 3.5rem 0;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
}

/* ============================================
   ENHANCED BUTTONS WITH GOLD THEME
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.125rem;
    padding: 0.75rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: none;
    box-shadow: var(--shadow-sm);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--red-gradient);
    color: #ffffff;
    box-shadow: var(--shadow-primary);
    border: 2px solid transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(192, 57, 43, 0.3);
    border-color: var(--secondary-light);
}

.btn-accent {
    background: var(--gold-gradient);
    color: #0f172a;
    box-shadow: 0 8px 35px rgba(212, 160, 43, 0.35);
    border: 2px solid transparent;
}

.btn-accent::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: var(--gold-gradient);
    z-index: -1;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-accent:hover::after {
    opacity: 1;
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 45px rgba(212, 160, 43, 0.5);
    border-color: #b8860b;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Badge Alert style */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    background: rgba(212, 160, 43, 0.15);
    border: 1px solid rgba(212, 160, 43, 0.3);
    color: var(--secondary);
    margin-bottom: 0.75rem;
    animation: badgePulse 3s ease-in-out infinite;
}

/* ============================================
   ENHANCED ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1.5deg); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 160, 43, 0.25); }
    50% { box-shadow: 0 0 50px rgba(212, 160, 43, 0.6); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes confettiFall {
    0% { transform: translateY(-100px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* Animations Classes */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
    animation: floatSlow 8s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.15) 50%, 
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2.5s ease-in-out infinite;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.active,
.scroll-reveal-left.active,
.scroll-reveal-right.active {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Staggered Delay for Children */
.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.5s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   SECTION 1: NAVIGATION MENU
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 248, 244, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--border-glass);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 248, 244, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.375rem;
}

header.scrolled .nav-container {
    height: 3.5rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid rgba(212, 160, 43, 0.2);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: #111827;
    letter-spacing: -0.03em;
}

.logo-text .text-gradient {
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: none;
}

.nav-cta-desktop {
    display: none;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--secondary);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--secondary);
}

/* Drawer Menu */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 248, 244, 0.98);
    backdrop-filter: blur(16px);
    border-left: 2px solid var(--border-glass);
    z-index: 999;
    padding: 6.25rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
}

.mobile-drawer.active {
    right: 0;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover::after {
    width: 50px;
}

.mobile-nav-link:hover {
    color: var(--secondary);
    padding-left: 10px;
}

.mobile-drawer .btn {
    margin-top: auto;
}

/* ============================================
   SECTION 2: HERO SECTION
   ============================================ */
.hero-section {
    padding-top: 6.5rem;
    background: linear-gradient(180deg, #fcf8f4 0%, #f5ede4 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 160, 43, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 15s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(192, 57, 43, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.hero-img-box {
    width: 100%;
    max-width: 280px;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-img-box::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 160, 43, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero-image {
    filter: drop-shadow(0 20px 60px rgba(212, 160, 43, 0.25));
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-content {
    text-align: center;
}

.hero-description {
    margin-top: 1rem;
    color: #6b7280;
    text-align: center;
}

.hero-cta-wrapper {
    margin-top: 1.5rem;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-trust-badges span {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    border: 1px solid var(--border-glass);
    transition: all 0.3s ease;
}

.hero-trust-badges span:hover {
    transform: translateY(-2px);
    border-color: var(--secondary-light);
    box-shadow: 0 4px 15px rgba(212, 160, 43, 0.15);
}

/* ============================================
   SECTION 3: WHY CHOOSE US
   ============================================ */
.why-choose-section {
    background: linear-gradient(180deg, #f5ede4 0%, #fcf8f4 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-card {
    background: var(--bg-card);
    border: 2px solid var(--border-glass);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.why-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 160, 43, 0.05) 0%, transparent 60%);
    transition: transform 0.6s ease;
    transform: scale(0);
    z-index: 0;
}

.why-card:hover::after {
    transform: scale(1);
}

.why-card > * {
    position: relative;
    z-index: 1;
}

.why-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--secondary-light);
    box-shadow: 0 20px 50px rgba(212, 160, 43, 0.15);
    background: var(--bg-card-hover);
}

.why-icon-box {
    width: 72px;
    height: 72px;
    background: rgba(212, 160, 43, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 2px solid var(--border-glass-bright);
    transition: all 0.4s ease;
}

.why-card:hover .why-icon-box {
    border-color: var(--secondary-light);
    transform: rotate(8deg) scale(1.08);
    box-shadow: 0 0 30px rgba(212, 160, 43, 0.15);
}

.why-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.why-card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.why-card-text {
    font-size: 0.925rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================================
   SECTION 4: WHAT IS SECTION
   ============================================ */
.what-is-section {
    background: #fcf8f4;
}

.what-is-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.what-is-img-box {
    width: 100%;
    max-width: 320px;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--border-glass-bright);
    box-shadow: 0 20px 60px rgba(212, 160, 43, 0.1);
    transition: all 0.5s ease;
}

.what-is-img-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(212, 160, 43, 0.15);
}

.what-is-img {
    transition: transform 0.6s ease;
}

.what-is-img-box:hover .what-is-img {
    transform: scale(1.03);
}

.what-is-content h2 {
    text-align: left;
}

.what-is-content h2::after {
    left: 0;
    transform: none;
}

/* ============================================
   SECTION 5: HOW IT WORKS ACCORDION
   ============================================ */
.how-it-works-section {
    background: linear-gradient(180deg, #fcf8f4 0%, #f5ede4 100%);
}

.accordion-wrapper {
    max-width: 800px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--bg-card);
    border: 2px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.accordion-header {
    width: 100%;
    min-height: 3.25rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(212, 160, 43, 0.04);
}

.accordion-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.5rem;
    background: rgba(212, 160, 43, 0.02);
}

.accordion-content-inner {
    padding: 1rem 0 1.5rem 0;
    border-top: 2px solid var(--border-glass);
}

.accordion-content-inner p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
}

.accordion-item.active {
    border-color: var(--secondary-light);
    box-shadow: 0 0 30px rgba(212, 160, 43, 0.08);
    background: var(--bg-card-hover);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    transition: max-height 0.7s cubic-bezier(1, 0, 1, 0);
}

/* ============================================
   SECTION 6: CUSTOMER REVIEWS
   ============================================ */
.reviews-section {
    background: #fcf8f4;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: var(--bg-card);
    border: 2px solid var(--border-glass);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    font-family: serif;
    color: rgba(212, 160, 43, 0.15);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-light);
    box-shadow: 0 20px 50px rgba(212, 160, 43, 0.1);
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-light);
    transition: all 0.3s ease;
}

.review-card:hover .review-avatar {
    border-color: var(--primary);
    transform: scale(1.05);
}

.review-meta h4 {
    margin-bottom: 0.25rem;
    color: #111827;
    font-size: 1rem;
}

.review-meta span {
    font-size: 0.85rem;
    color: #6b7280;
}

.review-stars-wrap {
    color: var(--secondary-light);
    font-size: 0.85rem;
    font-weight: 700;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 0;
    flex: 1;
}

/* ============================================
   SECTION 7 & 13: PRICING SECTIONS
   ============================================ */
.pricing-section {
    background: linear-gradient(180deg, #f5ede4 0%, #fcf8f4 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-sub-highlight {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(192, 57, 43, 0.08);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(192, 57, 43, 0.15);
    animation: badgePulse 3s ease-in-out infinite;
}

.timer-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 43, 0.1);
    border: 2px solid rgba(212, 160, 43, 0.3);
    border-radius: 16px;
    padding: 0.75rem 2.5rem;
    margin-top: 1rem;
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.timer-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.countdown-display {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
    align-items: stretch;
}

.price-card {
    background: var(--bg-card);
    border: 2px solid var(--border-glass);
    border-radius: 28px;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.price-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 28px;
    padding: 2px;
    background: var(--gold-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.price-card:hover::before {
    opacity: 1;
}

.price-card-label {
    position: absolute;
    top: -15px;
    background: var(--gold-gradient);
    color: #0f172a;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(212, 160, 43, 0.3);
}

.price-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.25rem;
    text-align: center;
}

.price-card-sub {
    font-size: 0.85rem;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.price-img {
    height: 180px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.price-card:hover .price-img {
    transform: scale(1.05) rotate(-2deg);
}

.price-box {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-label-per {
    font-size: 2.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #111827;
    line-height: 1;
}

.price-label-per span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b7280;
}

.price-strikethrough {
    font-size: 1.125rem;
    color: #ef4444;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.price-total {
    font-size: 1.25rem;
    color: var(--success);
    font-weight: 700;
}

.price-save {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    margin-top: 0.25rem;
}

.price-card-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.price-card-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
    font-size: 0.825rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.price-card-badge:hover {
    transform: scale(1.02);
}

.price-card-badge-bonus {
    background: rgba(212, 160, 43, 0.12);
    border: 1px solid rgba(212, 160, 43, 0.25);
    color: var(--secondary);
}

.price-card-badge-gold {
    background: var(--gold-gradient);
    color: #0f172a;
    border: none;
    font-weight: 800;
}

.atc-btn-wrapper {
    width: 100%;
    max-width: 240px;
    margin: 1.25rem auto;
    position: relative;
}

.payment-logos {
    max-width: 100%;
    height: 26px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-logos:hover {
    opacity: 1;
}

.price-card.popular {
    background: var(--bg-card-popular);
    border: 3px solid var(--secondary-light);
    box-shadow: 0 10px 40px rgba(212, 160, 43, 0.15);
    transform: scale(1.02);
}

.price-card.popular .price-card-label {
    background: var(--gold-gradient);
    box-shadow: 0 4px 20px rgba(212, 160, 43, 0.4);
    color: #0f172a;
}

.price-card.popular:hover {
    transform: translateY(-8px) scale(1.04);
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glass-bright);
}

.pricing-rating-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    gap: 0.5rem;
}

.pricing-rating-img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.pricing-rating-text {
    font-size: 0.875rem;
    color: #6b7280;
}

/* ============================================
   SECTION 8: BONUS SECTION
   ============================================ */
.bonus-section {
    background: linear-gradient(180deg, #fcf8f4 0%, #f5ede4 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.bonus-card {
    background: var(--bg-card);
    border: 2px solid var(--border-glass);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bonus-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.bonus-card:hover::before {
    opacity: 0.04;
}

.bonus-card > * {
    position: relative;
    z-index: 1;
}

.bonus-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-light);
    box-shadow: 0 20px 50px rgba(212, 160, 43, 0.1);
}

.bonus-tag {
    background: var(--gold-gradient);
    color: #0f172a;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(212, 160, 43, 0.2);
}

.bonus-img-wrapper {
    height: 160px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.bonus-img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-img {
    transform: scale(1.05);
}

.bonus-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.75rem;
}

.bonus-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   SECTION 9: INGREDIENTS
   ============================================ */
.ingredients-section {
    background: #fcf8f4;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.ingredient-card {
    background: var(--bg-card);
    border: 2px solid var(--border-glass);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ingredient-card:hover::before {
    transform: scaleX(1);
}

.ingredient-card:hover {
    border-color: var(--secondary-light);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    box-shadow: 0 15px 40px rgba(212, 160, 43, 0.08);
}

.ingredient-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ingredient-desc {
    font-size: 0.925rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ingredient-benefits {
    margin-top: auto;
    background: rgba(212, 160, 43, 0.04);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 160, 43, 0.08);
    transition: all 0.3s ease;
}

.ingredient-card:hover .ingredient-benefits {
    background: rgba(212, 160, 43, 0.08);
    border-color: rgba(212, 160, 43, 0.15);
}

.ingredient-benefits h5 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: #374151;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    letter-spacing: 0.05em;
}

.ingredient-benefits p {
    font-size: 0.875rem;
    color: var(--secondary);
    margin-bottom: 0;
    font-weight: 600;
}

/* ============================================
   SECTION 10: SCIENTIFIC EVIDENCE
   ============================================ */
.science-section {
    background: linear-gradient(180deg, #f5ede4 0%, #fcf8f4 100%);
}

.science-wrapper {
    max-width: 900px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.science-item {
    background: var(--bg-card);
    border: 2px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.science-header {
    width: 100%;
    min-height: 3.5rem;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.science-header:hover {
    background: rgba(212, 160, 43, 0.04);
}

.science-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.science-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.5rem;
    background: rgba(212, 160, 43, 0.02);
}

.science-content-inner {
    padding: 1.25rem 0 1.5rem 0;
    border-top: 2px solid var(--border-glass);
}

.science-content-inner p {
    font-size: 0.925rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.science-reference {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.825rem;
    color: #6b7280;
}

.science-tag {
    background: rgba(212, 160, 43, 0.1);
    border: 1px solid rgba(212, 160, 43, 0.2);
    color: var(--secondary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
}

.science-item.active {
    border-color: var(--secondary-light);
    box-shadow: 0 0 30px rgba(212, 160, 43, 0.06);
}

.science-item.active .science-content {
    max-height: 1000px;
    transition: max-height 0.7s cubic-bezier(1, 0, 1, 0);
}

/* ============================================
   SECTION 11: MONEY BACK GUARANTEE
   ============================================ */
.guarantee-section {
    background: #fcf8f4;
}

.guarantee-box {
    background: var(--bg-card);
    border: 3px dashed var(--border-glass-bright);
    border-radius: 28px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.guarantee-box:hover {
    border-color: var(--secondary-light);
    box-shadow: 0 10px 40px rgba(212, 160, 43, 0.06);
}

.guarantee-img-box {
    max-width: 150px;
    display: flex;
    justify-content: center;
}

.guarantee-img {
    max-width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.guarantee-box:hover .guarantee-img {
    transform: scale(1.05) rotate(-3deg);
}

.guarantee-content {
    text-align: center;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
    text-align: left;
}

.guarantee-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.guarantee-point:hover {
    background: rgba(212, 160, 43, 0.04);
    transform: translateX(6px);
}

.guarantee-point-icon {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.guarantee-point-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
    margin-bottom: 0.25rem;
}

.guarantee-point-desc {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

.guarantee-support {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(212, 160, 43, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(212, 160, 43, 0.1);
}

.guarantee-support p {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 0.25rem;
}

.guarantee-support a {
    color: var(--secondary);
    font-weight: 600;
}

.guarantee-support a:hover {
    color: var(--primary);
}

/* ============================================
   SECTION 12: BENEFITS LIST
   ============================================ */
.benefits-section {
    background: linear-gradient(180deg, #f5ede4 0%, #fcf8f4 100%);
}

.benefits-wrapper {
    max-width: 800px;
    margin: 2rem auto 0 auto;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-item {
    background: var(--bg-card);
    border: 2px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

.benefit-item:hover {
    transform: translateX(10px);
    border-color: var(--secondary-light);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(212, 160, 43, 0.06);
}

.benefit-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    border: 2px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-check {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.1);
}

.benefit-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
}

/* ============================================
   SECTION 14: FAQ SECTION
   ============================================ */
.faq-section {
    background: #fcf8f4;
}

.faq-wrapper {
    max-width: 800px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 2px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-header {
    width: 100%;
    min-height: 3.5rem;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background: rgba(212, 160, 43, 0.04);
}

.faq-question {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.5rem;
    background: rgba(212, 160, 43, 0.02);
}

.faq-answer-inner {
    padding: 1.25rem 0 1.5rem 0;
    border-top: 2px solid var(--border-glass);
}

.faq-answer-inner p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
}

.faq-item.active {
    border-color: var(--secondary-light);
    box-shadow: 0 0 30px rgba(212, 160, 43, 0.06);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.7s cubic-bezier(1, 0, 1, 0);
}

/* ============================================
   SECTION 15: FINAL CTA
   ============================================ */
.final-cta-section {
    background: linear-gradient(180deg, #fcf8f4 0%, rgba(212, 160, 43, 0.04) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 160, 43, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite;
}

.final-cta-box {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.final-cta-img-box {
    max-width: 260px;
    margin-bottom: 2rem;
}

.final-cta-headline {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.final-cta-price-box {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 1rem 2rem;
    border-radius: 16px;
    border: 2px solid var(--border-glass-bright);
}

.final-cta-regular {
    font-size: 1.125rem;
    color: #ef4444;
    text-decoration: line-through;
    margin-right: 0.75rem;
}

.final-cta-special {
    font-size: 1.75rem;
    color: var(--success);
    font-weight: 800;
}

.final-cta-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.final-cta-badges span {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    border: 1px solid var(--border-glass);
    transition: all 0.3s ease;
}

.final-cta-badges span:hover {
    border-color: var(--secondary-light);
    transform: translateY(-2px);
}

/* ============================================
   SECTION 16: FOOTER
   ============================================ */
footer {
    background-color: var(--bg-dark-deep);
    padding: 4rem 0 2rem 0;
    border-top: 2px solid var(--border-glass);
}

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 1rem 0;
}

.legal-link {
    font-size: 0.875rem;
    color: #6b7280;
    transition: var(--transition-fast);
    position: relative;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.legal-link:hover::after {
    width: 100%;
}

.legal-link:hover {
    color: var(--secondary);
}

.link-separator {
    color: var(--border-glass);
}

.footer-disclaimer-text {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    text-align: justify;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.4s ease;
}

.social-icon-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-icon-btn:hover {
    color: #ffffff;
    background: var(--gold-gradient);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 160, 43, 0.3);
    border-color: transparent;
}

.social-icon-btn:hover svg {
    transform: rotate(8deg);
}

.copyright-text {
    font-size: 0.8rem;
    color: #6b7280;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(212, 160, 43, 0.3);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 160, 43, 0.4);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
    stroke: #0f172a;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    max-width: 340px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 2px solid var(--border-glass-bright);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-img-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(212, 160, 43, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(212, 160, 43, 0.1);
}

.toast-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.15rem;
}

.toast-desc {
    font-size: 0.775rem;
    color: #6b7280;
    margin-bottom: 0.15rem;
}

.toast-time {
    font-size: 0.7rem;
    color: var(--success);
    font-weight: 700;
}

/* ============================================
   MODAL POPUP
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    padding: 1.25rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #fcf8f4;
    border: 2px solid var(--border-glass-bright);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--border-glass);
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    color: #0f172a;
    background: var(--gold-gradient);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-badge {
    background: rgba(212, 160, 43, 0.15);
    border: 1px solid rgba(212, 160, 43, 0.3);
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.modal-desc {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-img-box {
    max-width: 140px;
    margin-bottom: 1.5rem;
}

.modal-pricing {
    margin-bottom: 1.5rem;
}

.modal-price-original {
    font-size: 1rem;
    color: #ef4444;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.modal-price-now {
    font-size: 1.5rem;
    color: var(--success);
    font-weight: 800;
}

/* ============================================
   REDUCED MOTION SETTINGS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
    .animate-float,
    .animate-float-slow,
    .animate-pulse-glow {
        transform: none !important;
        animation: none !important;
    }
    .scroll-reveal,
    .scroll-reveal-left,
    .scroll-reveal-right {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   MEDIA QUERIES
   ============================================ */

/* 1. Small phones (320px) */
@media (min-width: 320px) {
    html { font-size: 16px; }
}

/* 2. Phones (480px) */
@media (min-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
}

/* 3. Large phones / Small tablets (576px) */
@media (min-width: 576px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .pricing-grid .price-card.popular {
        grid-column: span 2;
        transform: none;
    }
    .pricing-grid .price-card.popular:hover {
        transform: translateY(-5px);
    }
}

/* 4. Tablets (768px) */
@media (min-width: 768px) {
    section { padding: 5rem 0; }
    h1 { font-size: 2.25rem; }
    h2 { font-size: 2rem; }
    .btn { width: auto; padding: 0.85rem 2.5rem; }
    
    .hamburger { display: none; }
    .mobile-drawer { display: none; }
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
    .nav-link {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.95rem;
        color: #4b5563;
        transition: var(--transition-fast);
        position: relative;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gold-gradient);
        transition: width 0.3s ease;
    }
    .nav-link:hover::after {
        width: 100%;
    }
    .nav-link:hover {
        color: var(--secondary);
    }
    .nav-cta-desktop { display: block; }
    .nav-cta-desktop .btn {
        min-height: 2.5rem;
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero-grid {
        flex-direction: row;
        justify-content: space-between;
        gap: 4rem;
        text-align: left;
    }
    .hero-content { text-align: left; flex: 1; }
    .hero-img-box { max-width: 320px; flex-shrink: 0; }
    .hero-description { text-align: left; }
    .hero-trust-badges { justify-content: flex-start; }
    
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
    
    .what-is-grid {
        flex-direction: row;
        justify-content: space-between;
        gap: 4rem;
    }
    .what-is-content { flex: 1; }
    .what-is-img-box { max-width: 350px; flex-shrink: 0; }
    
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    
    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
    
    .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
    
    .guarantee-box {
        flex-direction: row;
        padding: 4rem 3rem;
    }
    .guarantee-img-box { max-width: 180px; }
    .guarantee-content { text-align: left; }
}

/* 5. Small laptops (1024px) */
@media (min-width: 1024px) {
    h1 { font-size: 2.75rem; }
    
    .why-choose-grid { grid-template-columns: repeat(4, 1fr); }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .pricing-grid .price-card.popular {
        grid-column: span 1;
        transform: scale(1.06);
    }
    .pricing-grid .price-card.popular:hover {
        transform: translateY(-8px) scale(1.08);
    }
    
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
    .ingredients-grid { grid-template-columns: repeat(3, 1fr); }
    .bonus-grid { grid-template-columns: repeat(3, 1fr); }
    
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }
    .footer-logo-box { align-items: flex-start; }
    .footer-legal-links { justify-content: flex-start; }
}

/* 6. Desktop (1440px) */
@media (min-width: 1440px) {
    h1 { font-size: 3rem; }
}