/* ===== CSS Variables ===== */
:root {
    /* Color Palette - Green Garden Inspired */
    --primary-red: #2E7D32;
    --secondary-red: #43A047;
    --light-red: #C8E6C9;
    --dark-red: #1B5E20;
    
    /* Neutral Earth Tones */
    --beige-light: #F1F8F4;
    --beige: #E8F5E9;
    --beige-dark: #C8E6C9;
    --cream: #F9FFF9;
    
    /* Accent Colors */
    --text-dark: #1B5E20;
    --text-medium: #2E7D32;
    --text-light: #66BB6A;
    --white: #FFFFFF;
    
    /* Shadows and Effects */
    --shadow-sm: 0 2px 8px rgba(46, 125, 50, 0.08);
    --shadow-md: 0 4px 16px rgba(46, 125, 50, 0.12);
    --shadow-lg: 0 8px 32px rgba(46, 125, 50, 0.16);
    --shadow-xl: 0 12px 48px rgba(46, 125, 50, 0.2);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Lora', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--beige-light);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: default;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(211, 47, 47, 0.1);
    transform: translateY(0);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-red);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-medium);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.btn-nav {
    background: var(--primary-red);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== Mobile Menu Toggle ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--cream) 100%);
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float-slow 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float-slow 15s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.hero-title .highlight {
    color: var(--primary-red);
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    border-radius: 2px;
    animation: expand-width 1.5s ease-out 0.5s both;
}

@keyframes expand-width {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--beige-dark);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Product Bottle ===== */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s ease-out;
}

.product-spotlight {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Static Product Image ===== */
.product-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.08) 0%, transparent 70%);
    border-radius: var(--radius-lg);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 20px 40px rgba(211, 47, 47, 0.3));
    transition: transform 0.4s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.4);
    font-weight: 600;
    font-size: 1rem;
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.badge-text {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* Fallback for when image doesn't load */
.product-image-container::before {
    content: '🍅';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    z-index: -1;
}

/* ===== Comparison Section ===== */
.comparison-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--beige-light) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-lg);
    align-items: stretch;
    position: relative;
}

.comparison-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.comparison-card:hover::before {
    left: 100%;
}

.comparison-card.synthetic {
    border-color: rgba(255, 82, 82, 0.2);
}

.comparison-card.synthetic::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 82, 82, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.comparison-card.synthetic:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 82, 82, 0.2);
    border-color: rgba(255, 82, 82, 0.4);
}

.comparison-card.natural {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.03) 0%, var(--white) 50%, rgba(211, 47, 47, 0.05) 100%);
    border: 3px solid var(--light-red);
    position: relative;
}

.comparison-card.natural::after {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2) rotate(180deg);
    }
}

.comparison-card.natural:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(211, 47, 47, 0.25);
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.08) 0%, var(--white) 50%, rgba(211, 47, 47, 0.08) 100%);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--beige-dark);
}

.card-header .icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.comparison-card.synthetic .card-header .icon {
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.1) 0%, rgba(255, 82, 82, 0.05) 100%);
}

.comparison-card.natural .card-header .icon {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.15) 0%, rgba(211, 47, 47, 0.08) 100%);
}

.comparison-card:hover .card-header .icon {
    transform: scale(1.1) rotate(5deg);
}

.card-header h3 {
    font-size: 1.75rem;
    flex: 1;
}

.comparison-card.synthetic .card-header h3 {
    color: #D32F2F;
}

.comparison-card.natural .card-header h3 {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: var(--spacing-sm) var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 2.5rem;
}

.comparison-list li::before {
    content: '';
    position: absolute;
    left: var(--spacing-sm);
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.comparison-list li.negative {
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.08) 0%, rgba(255, 82, 82, 0.03) 100%);
    border-left: 4px solid #FF5252;
}

.comparison-list li.negative::before {
    content: '✗';
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF5252;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.comparison-list li.negative:hover {
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.12) 0%, rgba(255, 82, 82, 0.06) 100%);
    transform: translateX(-4px);
    box-shadow: -4px 0 12px rgba(255, 82, 82, 0.15);
}

.comparison-list li.positive {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.08) 0%, rgba(211, 47, 47, 0.03) 100%);
    border-left: 4px solid var(--primary-red);
}

.comparison-list li.positive::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-red);
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
}

.comparison-list li.positive:hover {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.15) 0%, rgba(211, 47, 47, 0.08) 100%);
    transform: translateX(4px);
    box-shadow: 4px 0 16px rgba(211, 47, 47, 0.2);
}

.comparison-list .ingredient {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.125rem;
    font-family: var(--font-heading);
}

.comparison-list .description {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vs-text {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2rem;
    font-family: var(--font-heading);
    box-shadow: 
        0 8px 32px rgba(211, 47, 47, 0.4),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
    animation: pulse-vs 3s ease-in-out infinite;
    position: relative;
    z-index: 3;
    border: 4px solid var(--white);
}

.vs-text::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    opacity: 0.4;
    animation: ping 2.5s ease-in-out infinite;
    z-index: -1;
}

.vs-text::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid var(--secondary-red);
    border-radius: 50%;
    opacity: 0.2;
    animation: ping 2.5s ease-in-out infinite 0.5s;
    z-index: -1;
}

@keyframes pulse-vs {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 
            0 8px 32px rgba(211, 47, 47, 0.4),
            inset 0 2px 8px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        box-shadow: 
            0 12px 48px rgba(211, 47, 47, 0.6),
            inset 0 2px 8px rgba(255, 255, 255, 0.3);
    }
}

@keyframes ping {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ===== Ingredients Section ===== */
.ingredients-section {
    padding: var(--spacing-xl) 0;
    background: var(--beige-light);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.ingredient-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ingredient-card:hover::before {
    opacity: 1;
}

.ingredient-card:hover {
    transform: translateY(-12px) rotate(-2deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--light-red);
}

.ingredient-card:hover .ingredient-icon {
    transform: scale(1.2) rotateZ(10deg);
    filter: drop-shadow(0 4px 8px rgba(211, 47, 47, 0.3));
}

.ingredient-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(211, 47, 47, 0.1));
}

.ingredient-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-red);
}

.ingredient-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===== Why Choose Section ===== */
.why-choose-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.benefit-card {
    background: var(--beige-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    transition: width 0.4s ease;
}

.benefit-card:hover::after {
    width: 100%;
}

.benefit-card:hover {
    border-color: var(--light-red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.03) 0%, var(--beige-light) 100%);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.4);
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    position: relative;
    transform-style: preserve-3d;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-red) 0%, var(--primary-red) 100%);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===== Trust Section ===== */
.trust-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
}

.trust-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.trust-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-text {
    font-weight: 600;
    font-size: 1rem;
}

/* ===== Social Impact Section ===== */
.social-impact-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--beige-light) 100%);
}

.impact-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.impact-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-md);
}

.impact-story {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-xl);
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.story-image {
    position: relative;
}

.story-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, rgba(211, 47, 47, 0.05) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--light-red);
    overflow: hidden;
    position: relative;
}

.story-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.story-placeholder:hover img {
    transform: scale(1.05);
}

.story-icon {
    font-size: 6rem;
    opacity: 0.5;
}

.story-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.impact-stat-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.impact-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--light-red);
}

.impact-stat-card .stat-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, rgba(211, 47, 47, 0.05) 100%);
    border-radius: var(--radius-md);
}

.impact-stat-card .stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.impact-stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-stat-card .stat-description {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.4;
}

.impact-principles {
    margin-bottom: var(--spacing-xl);
}

.impact-principles h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.principle-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--primary-red);
}

.principle-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.principle-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: rgba(211, 47, 47, 0.05);
    line-height: 1;
}

.principle-card h4 {
    font-size: 1.25rem;
    color: var(--primary-red);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.principle-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.impact-quote {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.impact-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 15rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.impact-quote blockquote {
    position: relative;
    z-index: 1;
}

.quote-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
    font-style: italic;
}

.quote-author {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    font-weight: 600;
}

.impact-cta {
    text-align: center;
    background: var(--beige-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-red);
}

.impact-cta h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.impact-cta p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--beige-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: var(--beige);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: var(--spacing-sm);
}

.footer-brand h3 {
    color: var(--primary-red);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    color: var(--beige-dark);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--beige-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--beige-dark);
    font-size: 0.875rem;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }

/* ===== Responsive Design ===== */
/* ===== Tablet & Medium Screens ===== */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(250, 247, 242, 0.98) 0%, rgba(255, 249, 240, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem var(--spacing-lg) var(--spacing-md);
        gap: 0;
        box-shadow: -4px 0 32px rgba(211, 47, 47, 0.2);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px;
        background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, transparent 100%);
        pointer-events: none;
    }

    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 1;
        pointer-events: all;
        z-index: 998;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--beige-dark);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: var(--spacing-sm);
    }

    .nav-menu a {
        display: block;
        padding: var(--spacing-sm) 0;
        font-size: 1.125rem;
    }

    .btn-nav {
        width: 100%;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }

    .product-spotlight {
        max-width: 380px;
        height: 500px;
        margin: 0 auto;
    }

    .product-image-container {
        max-width: 380px;
        height: 500px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .vs-divider {
        transform: rotate(90deg);
        margin: var(--spacing-md) 0;
    }

    .impact-story {
        grid-template-columns: 1fr;
    }

    .story-placeholder {
        height: 300px;
    }

    .principles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .quote-text {
        font-size: 1.25rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .ingredients-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-xs: 0.375rem;
        --spacing-sm: 0.75rem;
        --spacing-md: 1.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    html {
        font-size: 14px;
    }

    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar .container {
        padding: 0 var(--spacing-sm);
    }

    .logo {
        font-size: 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(250, 247, 242, 0.98) 0%, rgba(255, 249, 240, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem var(--spacing-md) var(--spacing-md);
        gap: 0;
        box-shadow: -4px 0 32px rgba(211, 47, 47, 0.2);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px;
        background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, transparent 100%);
        pointer-events: none;
    }

    /* Overlay for mobile menu */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: 998;
    }

    body.menu-open::after {
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--beige-dark);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: var(--spacing-sm);
    }

    .nav-menu a {
        display: block;
        padding: var(--spacing-sm) 0;
        font-size: 1.125rem;
        width: 100%;
    }

    .btn-nav {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem !important;
        display: block;
    }

    /* Hero Section */
    .hero {
        padding-top: 5rem;
        min-height: auto;
        padding-bottom: var(--spacing-md);
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-md) !important;
        text-align: center !important;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: var(--spacing-md);
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-sm);
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
        margin-bottom: var(--spacing-md);
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: var(--spacing-sm);
        padding-top: var(--spacing-sm);
        justify-content: center;
        border-top: 2px solid var(--beige-dark);
    }

    .stat-item {
        flex: 1;
        text-align: center;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .product-spotlight {
        width: 100%;
        max-width: 280px;
        height: 350px;
        margin: 0 auto;
    }

    .product-image-container {
        max-width: 280px;
        height: 350px;
    }

    .product-image {
        width: 100%;
        height: 100%;
    }

    .product-image:hover {
        transform: none;
    }

    .image-badge {
        bottom: 20px;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .badge-icon {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }

    /* Sections */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }

    /* Comparison Section */
    .comparison-section {
        padding: var(--spacing-lg) 0;
    }

    .comparison-grid {
        gap: var(--spacing-md);
    }

    .comparison-card {
        padding: var(--spacing-md);
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }

    .card-header .icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .card-header h3 {
        font-size: 1.25rem;
    }

    .comparison-list li {
        padding: 0.75rem 0.75rem 0.75rem 2rem;
        margin-bottom: 0.75rem;
    }

    .comparison-list .ingredient {
        font-size: 1rem;
    }

    .comparison-list .description {
        font-size: 0.8rem;
    }

    .vs-text {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .vs-text::before {
        width: 80px;
        height: 80px;
    }

    .vs-text::after {
        width: 100px;
        height: 100px;
    }

    /* Ingredients Grid */
    .benefits-grid,
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .ingredient-card,
    .benefit-card {
        padding: var(--spacing-md);
    }

    .ingredient-icon {
        font-size: 3rem;
        height: 80px;
    }

    .ingredient-card h3,
    .benefit-card h3 {
        font-size: 1.125rem;
    }

    /* Why Choose Section */
    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon svg {
        width: 26px;
        height: 26px;
    }

    /* Trust Section */
    .trust-section {
        padding: var(--spacing-lg) 0;
    }

    .trust-content h2 {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
    }

    .trust-content p {
        font-size: 1rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .badge-icon {
        font-size: 2rem;
    }

    /* Social Impact Section */
    .social-impact-section {
        padding: var(--spacing-lg) 0;
    }

    .impact-label {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .impact-story {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }

    .story-placeholder {
        height: 250px;
    }

    .story-text h3 {
        font-size: 1.5rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .impact-stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .impact-stat-card {
        padding: var(--spacing-sm);
        flex-direction: column;
        text-align: center;
    }

    .impact-stat-card .stat-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .impact-stat-card .stat-value {
        font-size: 2rem;
    }

    .impact-stat-card .stat-description {
        font-size: 0.8rem;
    }

    .impact-principles h3 {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-md);
    }

    .principles-grid {
        gap: var(--spacing-sm);
    }

    .principle-card {
        padding: var(--spacing-sm);
    }

    .principle-number {
        font-size: 3.5rem;
        top: -5px;
        right: 10px;
    }

    .principle-card h4 {
        font-size: 1.125rem;
    }

    .principle-card p {
        font-size: 0.9rem;
    }

    .impact-quote {
        padding: var(--spacing-md);
    }

    .impact-quote::before {
        font-size: 8rem;
        top: -10px;
        left: 10px;
    }

    .quote-text {
        font-size: 1.125rem;
        line-height: 1.6;
    }

    .quote-author {
        font-size: 0.9rem;
    }

    .impact-cta {
        padding: var(--spacing-md);
    }

    .impact-cta h3 {
        font-size: 1.5rem;
    }

    .impact-cta p {
        font-size: 1rem;
    }

    /* CTA Section */
    .cta-section {
        padding: var(--spacing-lg) 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer-column h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-bottom {
        padding-top: var(--spacing-md);
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* Disable 3D effects on mobile for performance */
    .card-3d:hover {
        transform: none !important;
    }

    .ingredient-card:hover,
    .benefit-card:hover,
    .comparison-card:hover {
        transform: translateY(-4px) !important;
    }

    .product-bottle:hover {
        transform: none !important;
    }

    /* Disable parallax on mobile */
    .hero-text,
    .hero-image {
        transform: none !important;
        opacity: 1 !important;
    }

    /* Adjust tooltips for mobile */
    [data-tooltip]::before,
    [data-tooltip]::after {
        display: none;
    }

    /* Particles disabled on mobile for performance */
    .particles {
        display: none;
    }

    /* Simplify animations on mobile */
    .shine::after {
        display: none;
    }

    /* Fix overflow issues */
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* ===== Smooth Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    z-index: 10001;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
}

/* ===== Floating Particles ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 20s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* ===== Tooltip Styles ===== */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    padding: 0.5rem 1rem;
    background: var(--text-dark);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--text-dark);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
}

/* ===== Shine Effect ===== */
.shine {
    position: relative;
    overflow: hidden;
}

.shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 150%;
    }
}

/* ===== Glassmorphism Cards ===== */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(211, 47, 47, 0.1);
}

/* ===== Gradient Text ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 50%, var(--primary-red) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* ===== Pulsing Dot ===== */
.pulse-dot {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--primary-red);
    border-radius: 50%;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    border-radius: 50%;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* ===== Enhanced Shadows on Scroll ===== */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.card-3d:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}
