/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #4A90E2;
    --light-blue: #E8F4F8;
    --medium-blue: #7BB3E0;
    --dark-blue: #2C5F8D;
    --accent-blue: #5BA3D0;
    --white: #FFFFFF;
    --off-white: #F8FBFD;
    --text-dark: #1A2332;
    --text-gray: #5A6C7D;
    --border-color: #D1E8F5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 2px;
}

.logo-subtext {
    font-size: 0.7rem;
    color: var(--text-gray);
    letter-spacing: 3px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Hydration Background Container */
.hydration-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Molecular Grid Pattern */
.molecular-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 50px, var(--primary-blue) 50px, var(--primary-blue) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, var(--primary-blue) 50px, var(--primary-blue) 51px);
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.06; }
    50% { opacity: 0.1; }
}

/* Flowing Water Effect */
.water-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(74, 144, 226, 0.02) 25%,
        rgba(74, 144, 226, 0.04) 50%,
        rgba(74, 144, 226, 0.02) 75%,
        transparent 100%);
    animation: flowDown 15s linear infinite;
}

@keyframes flowDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Water Droplets Layer */
.droplets-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Individual Water Droplet */
.water-droplet {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(74, 144, 226, 0.5) 20%,
        rgba(123, 179, 224, 0.4) 50%,
        rgba(74, 144, 226, 0.3) 100%);
    box-shadow:
        inset -1px -1px 3px rgba(255, 255, 255, 0.4),
        inset 1px 1px 2px rgba(74, 144, 226, 0.1),
        0 2px 8px rgba(74, 144, 226, 0.15),
        0 0 15px rgba(74, 144, 226, 0.1);
    animation: float 6s ease-in-out infinite;
}

.water-droplet::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 25%;
    width: 25%;
    height: 25%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    filter: blur(1px);
}

.water-droplet::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 15%;
    height: 15%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    filter: blur(1px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Droplet Sizes and Positions */
.water-droplet:nth-child(1) {
    width: 25px;
    height: 25px;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.water-droplet:nth-child(2) {
    width: 20px;
    height: 20px;
    top: 25%;
    right: 20%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.water-droplet:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 25%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.water-droplet:nth-child(4) {
    width: 22px;
    height: 22px;
    top: 70%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 5.5s;
}

.water-droplet:nth-child(5) {
    width: 28px;
    height: 28px;
    top: 40%;
    left: 60%;
    animation-delay: 1.5s;
    animation-duration: 6.5s;
}

.water-droplet:nth-child(6) {
    width: 18px;
    height: 18px;
    top: 15%;
    left: 45%;
    animation-delay: 4s;
    animation-duration: 5s;
}

.water-droplet:nth-child(7) {
    width: 24px;
    height: 24px;
    top: 80%;
    left: 50%;
    animation-delay: 2.5s;
    animation-duration: 6s;
}

.water-droplet:nth-child(8) {
    width: 26px;
    height: 26px;
    top: 35%;
    right: 35%;
    animation-delay: 3.5s;
    animation-duration: 7s;
}

/* Ripples Container */
.ripples-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ripple {
    position: absolute;
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 50%;
    opacity: 0;
    animation: rippleExpand 4s ease-out infinite;
}

@keyframes rippleExpand {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0.6;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.ripple:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.ripple:nth-child(2) {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
}

.ripple:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 3s;
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 10s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; }
.particle:nth-child(3) { left: 40%; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; animation-delay: 1s; }
.particle:nth-child(5) { left: 70%; animation-delay: 3s; }
.particle:nth-child(6) { left: 85%; animation-delay: 5s; }
.particle:nth-child(7) { left: 15%; animation-delay: 6s; }
.particle:nth-child(8) { left: 60%; animation-delay: 7s; }


.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--primary-blue) 20%,
        var(--medium-blue) 50%,
        var(--primary-blue) 80%,
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.6);
    animation: titleUnderlineGlow 3s ease-in-out infinite;
}

.hero-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, var(--primary-blue) 0%, rgba(74, 144, 226, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.8);
    animation: titleParticle 4s ease-in-out infinite;
}

@keyframes titleUnderlineGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.02);
    }
}

@keyframes titleParticle {
    0% {
        left: 0%;
        opacity: 0;
        transform: scale(0.5);
    }
    10% {
        opacity: 1;
    }
    50% {
        left: 50%;
        transform: scale(1.2);
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
        transform: scale(0.5);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.3);
    animation: subtitleGlow 3s ease-in-out infinite;
}

@keyframes subtitleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
    }
    50% {
        text-shadow: 0 0 35px rgba(74, 144, 226, 0.5);
    }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 0;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    background: linear-gradient(135deg,
                rgba(74, 144, 226, 0.08) 0%,
                rgba(255, 255, 255, 0.95) 50%,
                rgba(74, 144, 226, 0.08) 100%);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(74, 144, 226, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.15),
                inset 0 0 30px rgba(74, 144, 226, 0.05);
    min-width: 180px;
}

.stat::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
                var(--primary-blue),
                var(--medium-blue),
                var(--accent-blue),
                var(--primary-blue));
    background-size: 300% 300%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: statBorderFlow 4s ease-in-out infinite;
}

.stat:hover::before {
    opacity: 1;
}

.stat::after {
    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;
}

.stat:hover::after {
    left: 100%;
}

.stat:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.35),
                inset 0 0 40px rgba(74, 144, 226, 0.1);
    border-color: var(--primary-blue);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
    letter-spacing: 1px;
    position: relative;
    animation: statNumberPulse 3s ease-in-out infinite;
}

.stat:hover .stat-number {
    color: var(--dark-blue);
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.6),
                 0 0 40px rgba(74, 144, 226, 0.3);
    animation: none;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

@keyframes statBorderFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes statNumberPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Science Section */
.science-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8F4F8 0%, #D1E8F5 50%, #B8DCF0 100%);
    position: relative;
    overflow: hidden;
}

/* DNA Background Animation - Minimal Elegant */
.dna-bg-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.35;
    pointer-events: none;
}

.helix-wrapper {
    position: relative;
    width: 300px;
    height: 100%;
    transform-style: preserve-3d;
}

.strand {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: dnaRotate3D 30s linear infinite;
}

.base-pair {
    position: absolute;
    width: 100%;
    transform-style: preserve-3d;
}

.nucleotide {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.nucleotide.left {
    left: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--medium-blue));
    box-shadow:
        0 0 15px rgba(74, 144, 226, 0.5),
        0 0 30px rgba(74, 144, 226, 0.2);
}

.nucleotide.right {
    right: 0;
    background: linear-gradient(135deg, var(--medium-blue), var(--dark-blue));
    box-shadow:
        0 0 15px rgba(44, 95, 141, 0.5),
        0 0 30px rgba(44, 95, 141, 0.2);
}

.connector {
    position: absolute;
    height: 1.5px;
    top: 7px;
    background: linear-gradient(90deg,
        rgba(74, 144, 226, 0.3) 0%,
        rgba(74, 144, 226, 0.6) 50%,
        rgba(44, 95, 141, 0.3) 100%);
    box-shadow: 0 0 6px rgba(74, 144, 226, 0.3);
}

@keyframes dnaRotate3D {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.science-section .container {
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 1.2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(74, 144, 226, 0.3) 10%,
        var(--primary-blue) 30%,
        var(--medium-blue) 50%,
        var(--primary-blue) 70%,
        rgba(74, 144, 226, 0.3) 90%,
        transparent 100%
    );
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
    animation: sectionUnderline 4s ease-in-out infinite;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 10%;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(123, 179, 224, 0.9) 0%, rgba(74, 144, 226, 0.4) 70%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.7);
    animation: sectionParticle1 5s ease-in-out infinite;
}

.section-header {
    position: relative;
}

@keyframes sectionUnderline {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 25px rgba(74, 144, 226, 0.7);
    }
}

@keyframes sectionParticle1 {
    0% {
        left: 10%;
        opacity: 0;
        transform: scale(0.4);
    }
    15% {
        opacity: 1;
    }
    50% {
        left: 90%;
        transform: scale(1.1);
    }
    85% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
        transform: scale(0.4);
    }
}

@keyframes sectionParticle2 {
    0% {
        right: 10%;
        opacity: 0;
        transform: scale(0.4);
    }
    15% {
        opacity: 1;
    }
    50% {
        right: 90%;
        transform: scale(1.1);
    }
    85% {
        opacity: 1;
    }
    100% {
        right: 100%;
        opacity: 0;
        transform: scale(0.4);
    }
}

/* Unique particle animations for each section */

/* Science Section - Smooth crossing particles */
#science-title::before {
    animation: scienceParticle1 6s cubic-bezier(0.4, 0.0, 0.6, 1) infinite !important;
}

#science-title ~ .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 1.5rem;
    right: 15%;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(91, 163, 208, 0.95) 0%, rgba(74, 144, 226, 0.5) 70%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.8);
    animation: scienceParticle2 6s cubic-bezier(0.4, 0.0, 0.6, 1) infinite;
    animation-delay: 3s;
}

@keyframes scienceParticle1 {
    0% {
        left: 5%;
        bottom: -1.5px;
        opacity: 0;
        transform: scale(0.5);
    }
    10% {
        opacity: 1;
    }
    30% {
        bottom: 5px;
    }
    50% {
        left: 50%;
        bottom: -1.5px;
    }
    70% {
        bottom: 5px;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 95%;
        bottom: -1.5px;
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes scienceParticle2 {
    0% {
        right: 5%;
        bottom: 1.5rem;
        opacity: 0;
        transform: scale(0.5);
    }
    10% {
        opacity: 1;
    }
    30% {
        bottom: 2.5rem;
    }
    50% {
        right: 50%;
        bottom: 1.5rem;
    }
    70% {
        bottom: 2.5rem;
    }
    90% {
        opacity: 1;
    }
    100% {
        right: 95%;
        bottom: 1.5rem;
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Ingredients Section - Particles with underline preserved */
#ingredients-title::before {
    animation: ingredientsParticle1 4.5s ease-in-out infinite !important;
    width: 10px;
    height: 10px;
}

.ingredients-section .section-header::after {
    content: '';
    position: absolute;
    bottom: 0.8rem;
    right: 12%;
    width: 9px;
    height: 9px;
    background: radial-gradient(circle, rgba(123, 179, 224, 0.9) 0%, rgba(74, 144, 226, 0.4) 70%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.7);
    animation: ingredientsParticle2 5s ease-in-out infinite;
    animation-delay: 2.25s;
}

@keyframes ingredientsParticle1 {
    0% {
        left: 8%;
        opacity: 0;
        transform: scale(0.4);
    }
    15% {
        opacity: 1;
    }
    50% {
        left: 92%;
        transform: scale(1.1);
    }
    85% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
        transform: scale(0.4);
    }
}

@keyframes ingredientsParticle2 {
    0% {
        right: 12%;
        opacity: 0;
        transform: scale(0.4);
    }
    15% {
        opacity: 1;
    }
    50% {
        right: 88%;
        transform: scale(1.1);
    }
    85% {
        opacity: 1;
    }
    100% {
        right: 100%;
        opacity: 0;
        transform: scale(0.4);
    }
}

/* Benefits Section - Bouncy particles */
#benefits-title::before {
    animation: benefitsParticle1 5.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite !important;
    width: 11px;
    height: 11px;
}

#benefits-title ~ .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 1.5rem;
    right: 12%;
    width: 11px;
    height: 11px;
    background: radial-gradient(circle, rgba(91, 163, 208, 1) 0%, rgba(74, 144, 226, 0.5) 70%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(91, 163, 208, 0.9);
    animation: benefitsParticle2 5.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    animation-delay: 2.75s;
}

@keyframes benefitsParticle1 {
    0%, 100% {
        left: 12%;
        bottom: -1.5px;
        opacity: 0;
        transform: scale(0.4);
    }
    20% {
        opacity: 1;
        bottom: 8px;
        transform: scale(1.3);
    }
    40% {
        bottom: -1.5px;
        transform: scale(0.7);
    }
    60% {
        bottom: 8px;
        transform: scale(1.3);
    }
    80% {
        bottom: -1.5px;
        opacity: 1;
    }
    100% {
        left: 88%;
        opacity: 0;
    }
}

@keyframes benefitsParticle2 {
    0%, 100% {
        right: 12%;
        bottom: 1.5rem;
        opacity: 0;
        transform: scale(0.4);
    }
    20% {
        opacity: 1;
        bottom: 2.5rem;
        transform: scale(1.3);
    }
    40% {
        bottom: 1.5rem;
        transform: scale(0.7);
    }
    60% {
        bottom: 2.5rem;
        transform: scale(1.3);
    }
    80% {
        bottom: 1.5rem;
        opacity: 1;
    }
    100% {
        right: 88%;
        opacity: 0;
    }
}

/* Quality Section - Fast racing particle */
#quality-title::before {
    animation: qualityParticle 3s ease-in infinite !important;
    width: 13px;
    height: 13px;
    background: radial-gradient(circle, rgba(74, 144, 226, 1) 0%, rgba(123, 179, 224, 0.6) 60%, transparent 100%);
    box-shadow: 0 0 25px rgba(74, 144, 226, 1), 0 0 40px rgba(74, 144, 226, 0.5);
}

@keyframes qualityParticle {
    0% {
        left: 5%;
        opacity: 0;
        transform: scale(0.3);
    }
    15% {
        opacity: 1;
        transform: scale(1);
    }
    85% {
        opacity: 1;
        transform: scale(1.4);
    }
    100% {
        left: 95%;
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Contact Section - Wave-like motion */
#contact-title::before {
    animation: contactParticle1 6.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite !important;
    width: 10px;
    height: 10px;
}

#contact-title ~ .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 1.5rem;
    right: 18%;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(44, 95, 141, 1) 0%, rgba(74, 144, 226, 0.5) 70%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(44, 95, 141, 0.8);
    animation: contactParticle2 6.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    animation-delay: 3.25s;
}

@keyframes contactParticle1 {
    0%, 100% {
        left: 10%;
        bottom: -1.5px;
        opacity: 0;
        transform: scale(0.4);
    }
    15% {
        opacity: 1;
    }
    25% {
        bottom: 7px;
        transform: scale(1.1);
    }
    50% {
        bottom: -3px;
        transform: scale(0.9);
    }
    75% {
        bottom: 7px;
        transform: scale(1.1);
    }
    85% {
        opacity: 1;
    }
    100% {
        left: 90%;
        bottom: -1.5px;
        opacity: 0;
    }
}

@keyframes contactParticle2 {
    0%, 100% {
        right: 18%;
        bottom: 1.5rem;
        opacity: 0;
        transform: scale(0.4);
    }
    15% {
        opacity: 1;
    }
    25% {
        bottom: 2.7rem;
        transform: scale(1.1);
    }
    50% {
        bottom: 1.3rem;
        transform: scale(0.9);
    }
    75% {
        bottom: 2.7rem;
        transform: scale(1.1);
    }
    85% {
        opacity: 1;
    }
    100% {
        right: 82%;
        bottom: 1.5rem;
        opacity: 0;
    }
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    position: relative;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.science-card {
    background-color: var(--off-white);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.science-card::before,
.science-card::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow:
        0 0 15px rgba(74, 144, 226, 0.8),
        0 0 30px rgba(74, 144, 226, 0.4);
}

.science-card h3::before,
.science-card h3::after,
.science-card p::before,
.science-card p::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 0;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(74, 144, 226, 0.6),
        rgba(74, 144, 226, 0.3),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.science-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3),
                0 0 30px rgba(74, 144, 226, 0.4),
                inset 0 0 20px rgba(74, 144, 226, 0.1);
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, var(--off-white) 100%);
}

.science-card:hover::before,
.science-card:hover::after {
    opacity: 1;
    animation: dnaHelix 2s ease-in-out infinite;
}

.science-card:hover::before {
    animation-delay: 0s;
}

.science-card:hover::after {
    animation-delay: 1s;
}

.science-card:hover h3::before,
.science-card:hover h3::after,
.science-card:hover p::before,
.science-card:hover p::after {
    opacity: 1;
    height: 100px;
    animation: dnaStrandConnect 2s ease-in-out infinite;
}

.science-card:hover h3::before {
    animation-delay: 0.2s;
}

.science-card:hover h3::after {
    animation-delay: 1.2s;
}

.science-card:hover p::before {
    animation-delay: 0.6s;
}

.science-card:hover p::after {
    animation-delay: 1.6s;
}

@keyframes dnaHelix {
    0% {
        left: 20%;
        top: 10%;
        opacity: 0;
        transform: scale(0.8);
    }
    10% {
        opacity: 0.8;
    }
    25% {
        left: 80%;
        top: 30%;
        transform: scale(1.2);
    }
    50% {
        left: 20%;
        top: 50%;
        transform: scale(0.8);
    }
    75% {
        left: 80%;
        top: 70%;
        transform: scale(1.2);
    }
    90% {
        opacity: 0.8;
    }
    100% {
        left: 20%;
        top: 90%;
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes dnaStrandConnect {
    0% {
        left: 15%;
        top: 0%;
        height: 0px;
        opacity: 0;
        transform: rotate(15deg);
    }
    15% {
        opacity: 0.7;
        height: 80px;
    }
    25% {
        left: 75%;
        top: 20%;
        transform: rotate(-25deg);
    }
    50% {
        left: 25%;
        top: 40%;
        height: 60px;
        transform: rotate(20deg);
    }
    75% {
        left: 70%;
        top: 60%;
        height: 90px;
        transform: rotate(-30deg);
    }
    85% {
        opacity: 0.7;
    }
    100% {
        left: 20%;
        top: 80%;
        height: 0px;
        opacity: 0;
        transform: rotate(10deg);
    }
}

.science-icon {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.science-card:hover .science-icon {
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.6));
    transform: scale(1.05);
}

.science-icon::before,
.science-icon::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--medium-blue);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.8);
}

.science-card:hover .science-icon::before {
    opacity: 1;
    animation: dnaStrand1 3s ease-in-out infinite;
}

.science-card:hover .science-icon::after {
    opacity: 1;
    animation: dnaStrand2 3s ease-in-out infinite;
}

@keyframes dnaStrand1 {
    0%, 100% {
        left: -20px;
        top: -10px;
        transform: scale(0.8);
    }
    25% {
        left: 80px;
        top: 20px;
        transform: scale(1.2);
    }
    50% {
        left: -20px;
        top: 50px;
        transform: scale(0.8);
    }
    75% {
        left: 80px;
        top: 80px;
        transform: scale(1.2);
    }
}

@keyframes dnaStrand2 {
    0%, 100% {
        right: -20px;
        top: 80px;
        transform: scale(1.2);
    }
    25% {
        right: 80px;
        top: 50px;
        transform: scale(0.8);
    }
    50% {
        right: -20px;
        top: 20px;
        transform: scale(1.2);
    }
    75% {
        right: 80px;
        top: -10px;
        transform: scale(0.8);
    }
}

.science-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
}

.science-card p {
    color: var(--text-gray);
    line-height: 1.8;
    position: relative;
}

/* Ingredients Section */
.ingredients-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--light-blue) 50%, rgba(74, 144, 226, 0.12) 100%);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ingredients-grid .ingredient-card:first-child {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.ingredients-grid .ingredient-card:first-child .ingredient-header {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.ingredient-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ingredient-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3),
                0 0 30px rgba(74, 144, 226, 0.4),
                inset 0 0 20px rgba(74, 144, 226, 0.1);
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, var(--white) 100%);
}

.ingredient-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.ingredient-header h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
}

.ingredient-dose {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.4s ease;
}

.ingredient-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
}

.ingredient-badge {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.ingredient-card:hover .ingredient-badge {
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.8),
                0 0 25px rgba(74, 144, 226, 0.5);
    transform: scale(1.05);
}

.ingredient-card:hover .ingredient-dose {
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.6);
    transform: scale(1.05);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-blue) 0%, rgba(232, 244, 248, 0.6) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

/* Benefits Background - Hydration Theme 2 */
.benefits-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.benefits-bg-base {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(74, 144, 226, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 100%, rgba(123, 179, 224, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Dot Grid */
.benefits-dot-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: radial-gradient(circle, rgba(74, 144, 226, 0.12) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    animation: benefitsGridFade 6s ease-in-out infinite;
}

@keyframes benefitsGridFade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

/* Glow Accents */
.benefits-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 2;
    pointer-events: none;
    animation: benefitsGlowPulse 8s ease-in-out infinite;
}

.benefits-glow--top {
    width: 400px;
    height: 400px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(74, 144, 226, 0.12) 0%, transparent 70%);
}

.benefits-glow--bottom-left {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(123, 179, 224, 0.15) 0%, transparent 70%);
    animation-delay: 2s;
}

.benefits-glow--bottom-right {
    width: 350px;
    height: 350px;
    bottom: -100px;
    right: -50px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
    animation-delay: 4s;
}

@keyframes benefitsGlowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Flow Lines */
.benefits-flow-lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.4;
    overflow: hidden;
}

.benefits-flow-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-blue) 20%,
        var(--medium-blue) 50%,
        var(--primary-blue) 80%,
        transparent 100%);
    opacity: 0;
    animation: benefitsFlowAcross 8s ease-in-out infinite;
}

.benefits-flow-line:nth-child(1) { top: 15%; width: 40%; animation-delay: 0s; }
.benefits-flow-line:nth-child(2) { top: 28%; width: 60%; animation-delay: 1.5s; }
.benefits-flow-line:nth-child(3) { top: 45%; width: 35%; animation-delay: 3s; }
.benefits-flow-line:nth-child(4) { top: 62%; width: 50%; animation-delay: 4.5s; }
.benefits-flow-line:nth-child(5) { top: 78%; width: 45%; animation-delay: 6s; }
.benefits-flow-line:nth-child(6) { top: 88%; width: 30%; animation-delay: 2s; }

@keyframes benefitsFlowAcross {
    0% {
        left: -50%;
        opacity: 0;
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        left: 110%;
        opacity: 0;
    }
}

/* Geometric Crystals */
.benefits-crystals {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.benefits-crystal {
    position: absolute;
    border: 1px solid rgba(74, 144, 226, 0.25);
    background: linear-gradient(135deg,
        rgba(74, 144, 226, 0.04) 0%,
        transparent 100%);
    backdrop-filter: blur(1px);
    animation: benefitsCrystalFloat 12s ease-in-out infinite;
}

/* Hexagonal shapes */
.benefits-crystal--hex {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Diamond shapes */
.benefits-crystal--diamond {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Circle shapes */
.benefits-crystal--circle {
    border-radius: 50%;
}

.benefits-crystal:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 8%;
    left: 12%;
    animation-delay: 0s;
    opacity: 0.4;
}

.benefits-crystal:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    opacity: 0.25;
}

.benefits-crystal:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 55%;
    left: 8%;
    animation-delay: 4s;
    opacity: 0.35;
}

.benefits-crystal:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 65%;
    right: 20%;
    animation-delay: 1s;
    opacity: 0.3;
}

.benefits-crystal:nth-child(5) {
    width: 50px;
    height: 50px;
    top: 35%;
    left: 30%;
    animation-delay: 3s;
    opacity: 0.4;
}

.benefits-crystal:nth-child(6) {
    width: 70px;
    height: 70px;
    top: 80%;
    left: 45%;
    animation-delay: 5s;
    opacity: 0.25;
}

@keyframes benefitsCrystalFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

/* Ripple Rings */
.benefits-ripples {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.benefits-ripple-ring {
    position: absolute;
    border: 1px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    animation: benefitsRippleOut 6s ease-out infinite;
}

@keyframes benefitsRippleOut {
    0% {
        width: 0;
        height: 0;
        opacity: 0.4;
    }
    100% {
        width: 400px;
        height: 400px;
        margin-left: -200px;
        margin-top: -200px;
        opacity: 0;
    }
}

.benefits-ripple-ring:nth-child(1) { top: 25%; left: 20%; animation-delay: 0s; }
.benefits-ripple-ring:nth-child(2) { top: 70%; left: 75%; animation-delay: 2s; }
.benefits-ripple-ring:nth-child(3) { top: 50%; left: 50%; animation-delay: 4s; }

/* Light Streams */
.benefits-light-streams {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    opacity: 0.3;
}

.benefits-light-stream {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(180deg,
        transparent 0%,
        var(--primary-blue) 50%,
        transparent 100%);
    animation: benefitsStreamDown 10s linear infinite;
}

@keyframes benefitsStreamDown {
    0% {
        transform: translateY(-200px);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.benefits-light-stream:nth-child(1) { left: 10%; animation-delay: 0s; height: 150px; }
.benefits-light-stream:nth-child(2) { left: 25%; animation-delay: 2s; height: 180px; }
.benefits-light-stream:nth-child(3) { left: 45%; animation-delay: 4s; height: 120px; }
.benefits-light-stream:nth-child(4) { left: 65%; animation-delay: 1s; height: 200px; }
.benefits-light-stream:nth-child(5) { left: 80%; animation-delay: 3s; height: 160px; }
.benefits-light-stream:nth-child(6) { left: 92%; animation-delay: 5s; height: 140px; }

/* Noise Texture */
.benefits-noise {
    position: absolute;
    inset: 0;
    z-index: 4;
    opacity: 0.02;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.benefits-section .container {
    position: relative;
    z-index: 10;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 10;
}

.benefit-item {
    padding: 2rem;
    border-left: 4px solid var(--primary-blue);
    background-color: var(--off-white);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

.benefit-item::before,
.benefit-item::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.6) 0%, rgba(74, 144, 226, 0.2) 70%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
}

.benefit-item:hover {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--off-white) 100%);
    padding-left: 2.5rem;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2),
                0 0 20px rgba(74, 144, 226, 0.1);
    border-left-width: 6px;
}

.benefit-item:hover::before,
.benefit-item:hover::after {
    opacity: 1;
    animation: benefitParticles 3s ease-in-out infinite;
}

.benefit-item:hover::after {
    animation-delay: 1.5s;
}

@keyframes benefitParticles {
    0% {
        left: 10%;
        top: 20%;
        opacity: 0;
        transform: scale(0.5);
    }
    20% {
        opacity: 1;
        transform: scale(1.2);
    }
    40% {
        left: 50%;
        top: 50%;
    }
    60% {
        left: 80%;
        top: 70%;
        transform: scale(0.8);
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 90%;
        top: 90%;
        opacity: 0;
        transform: scale(0.5);
    }
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    opacity: 0.3;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-number {
    opacity: 0.6;
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    transition: all 0.4s ease;
}

.benefit-item:hover h3 {
    color: var(--primary-blue);
}

.benefit-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.benefit-item::after {
    content: '→';
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    font-size: 1.5rem;
    color: var(--primary-blue);
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateX(-10px);
}

.benefit-item:hover::after {
    opacity: 0.6;
    transform: translateX(0);
    animation: none;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

/* Quality Section */
.quality-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.quality-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.quality-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.quality-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--white);
}

.quality-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    font-weight: 300;
}

.quality-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.quality-badge {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.quality-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.3));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.quality-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.quality-badge:hover::before {
    opacity: 1;
}

.badge-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--white);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.quality-badge:hover .badge-icon {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

.badge-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.quality-badge h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quality-badge:hover h3 {
    transform: scale(1.05);
}

.quality-badge p {
    font-size: 0.95rem;
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-blue);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.contact-item h3 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Handcrafted Badge */
.handcrafted-badge {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.handcrafted-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.creator-name {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-transform: none;
    position: relative;
    text-shadow: 0 2px 10px rgba(74, 144, 226, 0.2);
    animation: nameGlow 3s ease-in-out infinite;
}

.creator-name::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-blue) 50%,
        transparent 100%);
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes nameGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(74, 144, 226, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.6));
    }
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 8px rgba(74, 144, 226, 0.4);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(74, 144, 226, 0.7);
    }
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .science-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
    }

    .ingredients-grid .ingredient-card:first-child {
        max-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .quality-badges {
        grid-template-columns: 1fr;
    }
}

/* Benefit Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(232, 244, 248, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    box-shadow:
        0 20px 60px rgba(74, 144, 226, 0.3),
        0 0 40px rgba(74, 144, 226, 0.2),
        inset 0 0 30px rgba(74, 144, 226, 0.05);
    border: 2px solid rgba(74, 144, 226, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10001;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(74, 144, 226, 0.1);
    border: 2px solid var(--primary-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
}

.modal-header {
    padding: 3rem 3rem 2rem;
    border-bottom: 2px solid rgba(74, 144, 226, 0.2);
    position: relative;
}

.modal-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-blue);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    left: 2rem;
    z-index: 0;
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.3);
}

.modal-title {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.modal-body {
    padding: 2.5rem 3rem 3rem;
    position: relative;
    overflow: hidden;
}

.modal-dna-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.modal-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.4) 0%, rgba(74, 144, 226, 0.1) 70%, transparent 100%);
    border-radius: 50%;
    box-shadow:
        0 0 20px rgba(74, 144, 226, 0.3),
        0 0 40px rgba(74, 144, 226, 0.2);
}

.modal-particle:nth-child(1) {
    animation: modalParticle1 8s ease-in-out infinite;
}

.modal-particle:nth-child(2) {
    animation: modalParticle2 10s ease-in-out infinite;
    animation-delay: 2s;
}

.modal-particle:nth-child(3) {
    animation: modalParticle3 12s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes modalParticle1 {
    0%, 100% {
        left: 10%;
        top: 10%;
        opacity: 0.3;
        transform: scale(0.8);
    }
    25% {
        left: 80%;
        top: 30%;
        opacity: 0.7;
        transform: scale(1.2);
    }
    50% {
        left: 20%;
        top: 60%;
        opacity: 0.4;
        transform: scale(0.9);
    }
    75% {
        left: 70%;
        top: 80%;
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes modalParticle2 {
    0%, 100% {
        left: 80%;
        top: 20%;
        opacity: 0.4;
        transform: scale(0.9);
    }
    33% {
        left: 30%;
        top: 40%;
        opacity: 0.7;
        transform: scale(1.3);
    }
    66% {
        left: 90%;
        top: 70%;
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes modalParticle3 {
    0%, 100% {
        left: 50%;
        top: 90%;
        opacity: 0.3;
        transform: scale(1);
    }
    40% {
        left: 15%;
        top: 50%;
        opacity: 0.8;
        transform: scale(1.2);
    }
    80% {
        left: 85%;
        top: 15%;
        opacity: 0.4;
        transform: scale(0.9);
    }
}

.modal-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.modal-details {
    position: relative;
    z-index: 1;
}

.modal-details h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-details ul {
    list-style: none;
    padding: 0;
}

.modal-details li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.7;
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.modal-details li:last-child {
    border-bottom: none;
}

.modal-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 1.8rem;
    height: 1.8rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--medium-blue) 100%);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--primary-blue);
    color: var(--white);
}
