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

:root {
    --primary-color: #00D4FF;
    --primary-dark: #0066FF;
    --primary-light: #00E5FF;
    --secondary-color: #00A3FF;
    --accent-color: #6B5FFF;
    --accent-light: #7B68EE;
    --dark-bg: #0a1628;
    --darker-bg: #050d1a;
    --light-bg: #ffffff;
    --text-dark: #1a1a2e;
    --text-light: #64748b;
    --text-white: #ffffff;
    --gradient-1: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
    --gradient-2: linear-gradient(135deg, #00A3FF 0%, #6B5FFF 100%);
    --gradient-3: linear-gradient(135deg, #00E5FF 0%, #00D4FF 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 102, 255, 0.2) 100%);
    --shadow-sm: 0 2px 12px rgba(0, 212, 255, 0.15);
    --shadow-md: 0 8px 24px rgba(0, 212, 255, 0.2);
    --shadow-lg: 0 16px 48px rgba(0, 212, 255, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.4);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--light-bg);
}

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

/* Animated SVG Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 50%, #f1f5f9 100%);
}

.bg-svg {
    width: 100%;
    height: 100%;
}

/* SVG Shape Animations */
.shape-circle-1 {
    animation: float-1 20s infinite ease-in-out;
    transform-origin: center;
}

.shape-circle-2 {
    animation: float-2 25s infinite ease-in-out;
    transform-origin: center;
}

.shape-circle-3 {
    animation: float-3 18s infinite ease-in-out;
    transform-origin: center;
}

.shape-circle-4 {
    animation: float-4 22s infinite ease-in-out;
    transform-origin: center;
}

.shape-triangle-1 {
    animation: rotate-float-1 30s infinite linear;
    transform-origin: center;
}

.shape-triangle-2 {
    animation: rotate-float-2 35s infinite linear;
    transform-origin: center;
}

.shape-triangle-3 {
    animation: rotate-float-3 28s infinite linear;
    transform-origin: center;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 40px) scale(0.9); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, 50px) scale(1.15); }
    66% { transform: translate(40px, -40px) scale(0.95); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -50px) scale(1.2); }
}

@keyframes float-4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-40px, 30px) scale(0.9); }
    50% { transform: translate(50px, -20px) scale(1.1); }
    75% { transform: translate(-20px, -40px) scale(1.05); }
}

@keyframes rotate-float-1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(90deg); }
    50% { transform: translate(-20px, 30px) rotate(180deg); }
    75% { transform: translate(20px, 10px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes rotate-float-2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-40px, 40px) rotate(120deg); }
    66% { transform: translate(40px, -30px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes rotate-float-3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(25px, -35px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
    letter-spacing: -0.5px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 32px;
    animation: pulse-heart 2s infinite ease-in-out;
}

@keyframes pulse-heart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-primary-nav {
    background: var(--gradient-1);
    color: var(--text-white);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-nav:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-md);
    padding: 25px;
    z-index: 999;
    border-bottom: 3px solid var(--primary-color);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 12px;
    border-radius: 12px;
    transition: var(--transition);
}

.mobile-link:hover {
    background: var(--gradient-glow);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    position: relative;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    animation: pulse-badge 3s infinite ease-in-out;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 5px rgba(0, 212, 255, 0.2); }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradient-shift 3s infinite ease-in-out;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(10deg); }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-large {
    padding: 20px 45px;
    font-size: 18px;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.product-showcase {
    position: relative;
    animation: float-product 6s infinite ease-in-out;
}

@keyframes float-product {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-25px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-2deg); }
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    animation: pulse-glow 3s infinite ease-in-out;
    z-index: -1;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.product-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 212, 255, 0.4));
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 15px 22px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.floating-badge svg {
    color: var(--primary-color);
}

.badge-1 {
    top: 5%;
    left: -8%;
    animation: float-badge-1 5s infinite ease-in-out;
}

.badge-2 {
    top: 45%;
    right: -12%;
    animation: float-badge-2 6s infinite ease-in-out;
}

.badge-3 {
    bottom: 10%;
    left: -5%;
    animation: float-badge-3 5.5s infinite ease-in-out;
}

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

@keyframes float-badge-2 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-25px) rotate(-3deg); }
}

@keyframes float-badge-3 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-18px) rotate(2deg); }
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: white;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 19px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.benefit-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-1);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.benefit-icon svg {
    color: white;
}

.benefit-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.card-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    opacity: 0.05;
    border-radius: 50%;
    transition: var(--transition);
}

.benefit-card:hover .card-decoration {
    transform: scale(1.5);
    opacity: 0.1;
}

/* Ingredients Section */
.ingredients {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.ingredients-grid {
    display: grid;
    gap: 50px;
}

.ingredient-card {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 50px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid rgba(0, 212, 255, 0.1);
}

.ingredient-card:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.ingredient-card.reverse {
    grid-template-columns: 1fr 450px;
}

.ingredient-card.reverse .ingredient-image {
    order: 2;
}

.ingredient-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ingredient-card:hover .ingredient-image img {
    transform: scale(1.15);
}

.ingredient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.95) 0%, rgba(0, 102, 255, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.ingredient-card:hover .ingredient-overlay {
    opacity: 1;
}

.research-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 35px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.research-link:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.ingredient-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.ingredient-number {
    font-size: 80px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.3;
}

.ingredient-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.ingredient-content p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 16px;
}

/* Symptoms Section */
.symptoms {
    padding: 120px 0;
    background: white;
}

.symptoms-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.symptoms-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.symptoms-intro {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 45px;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.symptom-item {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
    padding: 25px;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.symptom-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
}

.symptom-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.symptom-item:hover .symptom-icon {
    transform: rotate(10deg) scale(1.1);
}

.symptom-icon svg {
    color: white;
}

.symptom-content {
    flex: 1;
}

.symptom-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.symptom-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.symptoms-image {
    position: relative;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 30px;
    opacity: 0.2;
    z-index: 0;
}

/* Usage Section */
.usage {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
    position: relative;
    overflow: hidden;
}

.usage::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-1 20s infinite ease-in-out;
}

.usage::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107, 95, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-2 25s infinite ease-in-out;
}

.usage .section-title,
.usage .section-subtitle {
    color: white;
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 25px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.step-card:hover::before {
    opacity: 0.1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.step-number span {
    font-size: 32px;
    font-weight: 900;
    color: white;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 15px;
}

.step-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0.15;
    transition: var(--transition);
    z-index: 0;
}

.step-icon svg {
    color: var(--primary-color);
}

.step-card:hover .step-icon {
    opacity: 0.3;
    transform: scale(1.2) rotate(10deg);
}

/* Order Section */
.order-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.order-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.order-info h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.order-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.order-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.order-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
}

.order-features .feature-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.product-preview {
    position: relative;
    display: inline-block;
}

.product-preview img {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 212, 255, 0.3));
    animation: float-product 6s infinite ease-in-out;
}

.price-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--gradient-1);
    color: white;
    padding: 20px 30px;
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    animation: pulse-price 3s infinite ease-in-out;
}

@keyframes pulse-price {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.price-amount {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.order-form-container {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(0, 212, 255, 0.1);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label svg {
    color: var(--primary-color);
}

.form-group input {
    padding: 18px 22px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: #f8fafc;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
    background: white;
}

.btn-submit {
    background: var(--gradient-1);
    color: white;
    padding: 20px 45px;
    border: none;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.btn-submit:active {
    transform: translateY(-2px);
}

.form-notice {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.success-message,
.error-message {
    display: none;
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    margin-top: 25px;
}

.success-message {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(74, 222, 128, 0.1) 100%);
    border: 2px solid #22c55e;
}

.success-message svg {
    color: #22c55e;
    margin-bottom: 15px;
}

.success-message h3 {
    color: #15803d;
    margin-bottom: 10px;
    font-size: 24px;
}

.success-message p {
    color: #16a34a;
}

.error-message {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(248, 113, 113, 0.1) 100%);
    border: 2px solid #ef4444;
}

.error-message svg {
    color: #ef4444;
    margin-bottom: 15px;
}

.error-message h3 {
    color: #b91c1c;
    margin-bottom: 10px;
    font-size: 24px;
}

.error-message p {
    color: #dc2626;
}

/* Disclaimer Section */
.disclaimer {
    padding: 100px 0;
    background: white;
}

.disclaimer-content {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
    padding: 50px;
    border-radius: 25px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.disclaimer-icon {
    flex-shrink: 0;
}

.disclaimer-icon svg {
    color: var(--primary-color);
}

.disclaimer-content h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.disclaimer-content p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 16px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 15px;
}

.footer-section h4 {
    color: white;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-section ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .symptoms-wrapper,
    .order-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 40px;
    }

    .ingredient-card,
    .ingredient-card.reverse {
        grid-template-columns: 1fr !important;
    }

    .ingredient-card.reverse .ingredient-image {
        order: 0;
    }

    .ingredient-image {
        height: 300px;
    }

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

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }

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

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

    .usage-steps {
        grid-template-columns: 1fr;
    }

    .order-form-container {
        padding: 35px 25px;
    }

    .floating-badge {
        position: static;
        margin: 15px 0;
        display: inline-flex;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        padding: 18px 35px;
    }

    .section-title {
        font-size: 28px;
    }

    .benefit-card {
        padding: 35px 25px;
    }

    .ingredient-content {
        padding: 35px 25px;
    }

    .price-badge {
        width: 110px;
        height: 110px;
    }

    .price-amount {
        font-size: 28px;
    }
}