/* ============================================
   REDESIGNED MODERN CSS - FRESH UNIQUE DESIGN
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Joseph's Well Water Color Palette - Clean, Trustworthy, Refreshing */
    --primary-color: #0284c7;      /* Vivid Sky Blue (Water Source) */
    --secondary-color: #0369a1;    /* Deep Water Blue */
    --accent-color: #0ea5e9;       /* Bright Cyan/Sky (Air/Atmosphere) */
    --success-color: #10b981;      /* Turquoise Green (Safe/Clean) */
    --warning-color: #f59e0b;      /* Amber (Drought/Sun) */
    --danger-color: #dc2626;       /* Urgent Red (Crisis/CTA) */
    --dark-color: #0f172a;         /* Deep Slate (Depth/Professional) */
    --light-color: #f0f9ff;        /* Very Light Sky Tint */
    --text-primary: #0f172a;       /* Dark Slate */
    --text-secondary: #334155;     /* Slate Grey */
    
    /* Water & Atmosphere Gradients */
    --gradient-primary: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    --gradient-secondary: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-hero: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0ea5e9 100%); /* Deep Ocean to Sky */
    
    /* Shadows - slightly blue tinted */
    --shadow-sm: 0 1px 3px 0 rgba(3, 105, 161, 0.08);
    --shadow-md: 0 4px 12px -2px rgba(3, 105, 161, 0.12);
    --shadow-lg: 0 12px 24px -4px rgba(3, 105, 161, 0.15);
    --shadow-xl: 0 24px 48px -8px rgba(3, 105, 161, 0.2);
    
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(3, 105, 161, 0.15);
}

/* Modern Scroll Behavior */
html {
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    font-size: 16px;
}

@media (min-width: 992px) {
    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }
}

@media (min-width: 1400px) {
    html {
        font-size: 17px;
    }
}

body {
    width: 100%;
    position: relative;
}

body {
    font-family: 'Outfit', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 50%, #dbeafe 100%);
    overflow-x: hidden;
    font-size: 1rem;
}

/* Global Image Enhancement */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Product image enhancements for sharper, more vibrant display */
section img:not(.icon):not([width="20"]):not([height="20"]) {
    filter: contrast(1.03) saturate(1.1) brightness(1.01);
}

/* ============================================
   NAVIGATION - GLASSMORPHISM STYLE
   ============================================ */
.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(30, 64, 175, 0.05);
    padding: 0.3rem 0;
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.12);
    padding: 0.2rem 0;
}

.navbar-brand {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.text-warning {
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Modern Hamburger Menu */
.navbar-toggler {
    padding: 0;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    width: 32px;
    height: 32px;
    position: relative;
}

.hamburger-icon {
    display: block;
    width: 26px;
    height: 22px;
    position: relative;
    transform: rotate(0deg);
    transition: .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    border-radius: 12px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
    width: 70%;
}

.hamburger-icon span:nth-child(2) {
    top: 9px;
}

.hamburger-icon span:nth-child(3) {
    top: 18px;
    width: 85%;
}

/* Hamburger Animation - Modern Style */
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    top: 9px;
    width: 100%;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    top: 9px;
    width: 100%;
    transform: rotate(-45deg);
}

/* Mobile Navigation - Floating Card Style */
.navbar-collapse {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    margin-top: 1.2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 600;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.6rem 1rem !important;
    border-radius: 12px;
    margin: 0.3rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 1.2rem;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(37, 99, 235, 0.08) 100%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 2.4rem);
}

/* Mobile CTA - Modern Pill Buttons */
.navbar-cta {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--glass-border);
}

.navbar-cta .btn {
    width: 100%;
    margin-bottom: 0.6rem;
}

.btn-gradient {
    background: var(--gradient-primary);
    border: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(3, 105, 161, 0.3);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(3, 105, 161, 0.4);
    background: var(--gradient-primary);
    color: white;
}

.btn-outline-warning {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    background: transparent;
}

.btn-outline-teal {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    background: transparent;
}

.btn-outline-teal:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.btn-outline-warning:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.3);
}

/* ============================================
   HERO SECTION - COMPLETELY NEW DESIGN
   ============================================ */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ffffff; /* User requested white background */
    padding: 0 0 60px;
    padding-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(3, 105, 161, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 80%, rgba(3, 105, 161, 0.05) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230284c7' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
    opacity: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: rgba(3, 105, 161, 0.05);
    border-radius: 50%;
    animation: floatBubble 8s ease-in-out infinite;
    border: 1px solid rgba(3, 105, 161, 0.1);
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 55%;
    right: 5%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 25%;
    right: 25%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.floating-element:nth-child(4) {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 15%;
    animation-delay: 0.5s;
    animation-duration: 8s;
}

.floating-element:nth-child(5) {
    width: 45px;
    height: 45px;
    top: 65%;
    left: 55%;
    animation-delay: 1.5s;
    animation-duration: 5s;
}

@keyframes floatBubble {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(1); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-20px) translateX(10px) scale(1.05); 
    }
    50% { 
        transform: translateY(-10px) translateX(-10px) scale(0.95); 
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-25px) translateX(5px) scale(1.02); 
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--text-primary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(3, 105, 161, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(3, 105, 161, 0.2);
    color: var(--primary-color);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-badge i {
    color: var(--accent-color);
}

.hero-title {
    font-size: clamp(2.2rem, 9vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    font-family: 'Outfit', 'Montserrat', sans-serif;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #65a30d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    line-height: 1.7;
}

.hero-stats {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    background: #ffffff;
    padding: 1.5rem 1rem;
    border-radius: 24px;
    border: 1px solid rgba(21, 128, 61, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 128, 61, 0.2), transparent);
}

.stat-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(21, 128, 61, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: #ffffff;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(3, 105, 161, 0.1);
    border-color: rgba(3, 105, 161, 0.3);
}

.stat-number {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: clamp(0.85rem, 3vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.3;
    margin-top: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.stat-icon {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    opacity: 0.9;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.15);
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(21, 128, 61, 0.2);
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.btn-hero {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    border: none;
    color: #ffffff;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 35px rgba(245, 158, 11, 0.4),
        0 4px 15px rgba(180, 83, 9, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-hero::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;
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 10%;
    right: 10%;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    border-radius: 50px;
    pointer-events: none;
}

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

.btn-hero:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 20px 50px rgba(245, 158, 11, 0.5),
        0 8px 25px rgba(180, 83, 9, 0.4),
        0 0 60px rgba(245, 158, 11, 0.3);
    color: #ffffff;
}

.btn-hero small {
    opacity: 0.9;
    font-weight: 600;
}

.btn-outline-primary {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(30, 64, 175, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-outline-primary:hover::before {
    opacity: 1;
}

.btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(59, 130, 246, 0.8);
    color: white;
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(59, 130, 246, 0.2);
}

.btn-learn-more {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
}

.btn-learn-more:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(21, 128, 61, 0.2);
}

.trust-indicators {
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 128, 61, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(21, 128, 61, 0.1);
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(21, 128, 61, 0.1);
}

.trust-item i.text-success {
    color: var(--success-color) !important;
}

.trust-item i.text-warning {
    color: #fbbf24 !important;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Showcase - Modern Floating Style */
.hero-image-wrapper {
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    margin-top: 2rem;
}

.product-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.product-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, rgba(59, 130, 246, 0.25) 40%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes glowPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.15); 
        opacity: 0.9;
    }
}

.product-placeholder {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-secondary);
    width: 400px;
    height: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow-lg);
}

.product-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Floating badges - Mobile responsive */
.floating-badges {
    position: relative;
    z-index: 6;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 0.5rem 0.8rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 6;
}

.badge-1 {
    top: 10%;
    right: -10px;
    color: var(--accent-color);
    animation-delay: 0s;
}

.badge-1 i {
    color: var(--accent-color);
}

.badge-2 {
    bottom: 30%;
    left: -20px;
    color: var(--success-color);
    animation-delay: 1.5s;
}

.badge-2 i {
    color: var(--success-color);
}

.badge-3 {
    top: 60%;
    right: -15px;
    color: var(--primary-color);
    animation-delay: 3s;
}

.badge-3 i {
    color: var(--primary-color);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   WHY CHOOSE SECTION - REDESIGNED
   ============================================ */
.why-choose-section {
    padding: 2rem 0 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
}

.section-header {
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
}

.why-choose-section .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    padding: 10px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

@media (max-width:771px){
    .why-choose-section .section-title{
        font-size:1.8rem;
    }
};

.why-choose-section .container {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 2rem 12px;
}

.certification-card {
    background: white;
    border-radius: 28px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(30, 64, 175, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.certification-card:hover::before {
    transform: scaleX(1);
}

.certification-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.15);
}

.cert-image-wrapper {
    width: 130px;
    height: 130px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #bfdbfe;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.certification-card:hover .cert-image-wrapper {
    border-color: var(--primary-color);
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.2);
}

.cert-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.certification-card:hover .cert-image {
    transform: scale(1.1);
}

.cert-title {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
}

.cert-description {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   WHAT IS SECTION - REDESIGNED
   ============================================ */
.what-is-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.section-header-red {
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    padding: 1.3rem 0;
}

.section-header-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 50%, rgba(16, 185, 129, 0.12) 0%, transparent 40%);
}

.section-title-red{
    color: white;
}

.what-is-section .section-title-red {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.3px;
}

.what-is-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.what-is-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(30, 64, 175, 0.18);
}

.what-is-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.what-is-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: contrast(1.05) saturate(1.15) brightness(1.02);
    image-rendering: -webkit-optimize-contrast;
}

.what-is-image-wrapper:hover .what-is-image {
    transform: scale(1.06);
    filter: contrast(1.1) saturate(1.2) brightness(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.what-is-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.what-is-content {
    padding: 0 1rem;
}

.what-is-description {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: justify;
}

.what-is-highlights {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.04) 0%, rgba(59, 130, 246, 0.04) 100%);
    border-radius: 20px;
    border-left: 4px solid;
    border-image: var(--gradient-primary) 1;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-item:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.highlight-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

.what-is-cta {
    text-align: center;
}

.what-is-cta .btn {
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gradient-primary);
    border: none;
}

.what-is-cta .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.3);
}

/* Mobile Adjustments for What is Section */
@media (max-width: 991.98px) {
    .what-is-section .container {
        padding: 2rem 0;
    }
    
    .what-is-image-container {
        
        margin-bottom: 2rem;
    }
    
    .what-is-content {
        text-align: center;
        padding: 0;
    }
    
    .what-is-highlights {
        padding: 1.5rem;
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .section-header-red {
        padding: 1.5rem 0.2rem;
    }
    
    .what-is-description {
        text-align: left;
        font-size: 1rem;
    }
    
    .what-is-highlights {
        padding: 1.2rem;
    }
    
    .highlight-item {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .what-is-cta .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .what-is-image-container {
        width: 100%;
        height: auto;
    }
    
    .what-is-highlights {
        margin: 1.5rem 0;
    }
    
    .highlight-item {
        font-size: 0.85rem;
    }
}


/* ============================================
   HOW IT WORKS SECTION - REDESIGNED
   ============================================ */
.how-it-works-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 50%, #ffffff 100%);
}

.how-it-works-section .section-title-red {
    color: white;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.3px;
}

.how-it-works-intro {
    margin-bottom: 3rem;
    text-align: -webkit-center;
}

.intro-text {
    font-size: clamp(1.15rem, 3vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

.how-it-works-content {
    max-width: 1000px;
    margin: 0 auto;
}

.work-mechanism {
    margin-bottom: 3rem;
}

.mechanism-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.06);
    border: 1px solid rgba(30, 64, 175, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mechanism-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.mechanism-item:hover::before {
    transform: scaleY(1);
}

.mechanism-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.12);
    border-color: rgba(30, 64, 175, 0.12);
}
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.6s ease;
}

.mechanism-item:hover::before {
    left: 100%;
}

.mechanism-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.mechanism-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mechanism-header i {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.mechanism-header h4 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.mechanism-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    text-align: justify;
}

.summary-section {
    margin-top: 2rem;
}

.summary-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(37, 99, 235, 0.1);
    position: relative;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 20px;
}

.summary-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.summary-header i {
    font-size: 2rem;
    background: white;
    padding: 0.8rem;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.summary-header h4 {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.summary-text {
    font-size: clamp(1.05rem, 2.5vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
    position: relative;
    z-index: 2;
}

.summary-cta {
    position: relative;
    z-index: 2;
}

.summary-cta .btn {
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.summary-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Mobile Adjustments for How It Works Section */
@media (max-width: 991.98px) {
    .how-it-works-intro {
        margin-bottom: 2rem;
    }
    
    .mechanism-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mechanism-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .mechanism-header i {
        margin-bottom: 0.5rem;
    }
    
    .summary-card {
        padding: 2rem;
    }
    
    .summary-header {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .intro-text {
        text-align: left;
        padding: 0 1rem;
    }
    
    .mechanism-item {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .mechanism-header h4 {
        font-size: 1.1rem;
    }
    
    .mechanism-description {
        text-align: left;
        font-size: 0.95rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-text {
        text-align: left;
    }
    
    .summary-cta .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .mechanism-item {
        padding: 1rem;
    }
    
    .mechanism-header i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .summary-card {
        padding: 1.2rem;
    }
    
    .summary-header i {
        font-size: 1.5rem;
        padding: 0.6rem;
    }
}

/* ============================================
   CUSTOMER REVIEWS SECTION - REDESIGNED
   ============================================ */
.reviews-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 50%, #dbeafe 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.review-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.06);
    border: 1px solid rgba(30, 64, 175, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.review-item:hover::before {
    transform: scaleY(1);
}

.review-item:hover {
    transform: translateY(-8px) translateX(4px);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.12);
    border-color: rgba(30, 64, 175, 0.12);
}

.review-avatar {
    flex-shrink: 0;
    position: relative;
}

.avatar-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #bfdbfe;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-item:hover .avatar-image {
    border-color: var(--primary-color);
    transform: scale(1.08) rotate(5deg);
}

.review-content {
    flex: 1;
    min-width: 0;
}

.reviewer-info {
    margin-bottom: 1rem;
}

.reviewer-name {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.review-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.review-text {
    font-size: clamp(1.05rem, 2.5vw, 1.15rem);
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid;
    border-image: var(--gradient-primary) 1;
    position: relative;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    font-family: serif;
}

.review-text::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -1rem;
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    font-family: serif;
}

/* Reviews Summary - Modern Card */
.reviews-summary {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 28px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(30, 64, 175, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.06);
}

.reviews-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
    border-radius: 25px;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.stat-card .stat-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.stat-card .stat-label {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stars-display {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.stars-display i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.reviews-cta {
    position: relative;
    z-index: 2;
}

.reviews-cta h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.reviews-cta p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-cta .btn {
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.reviews-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Mobile Adjustments for Reviews Section */
@media (max-width: 991.98px) {
    .reviews-grid {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .review-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .reviews-summary {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .review-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .review-avatar {
        align-self: center;
    }
    
    .avatar-image {
        width: 70px;
        height: 70px;
    }
    
    .review-content {
        text-align: center;
    }
    
    .review-text {
        text-align: left;
        border-left: none;
        border-top: 3px solid var(--secondary-color);
        padding-left: 0;
        padding-top: 1rem;
    }
    
    .review-text::before,
    .review-text::after {
        display: none;
    }
    
    .reviewer-name {
        font-size: 1.1rem;
    }
    
    .reviews-summary {
        padding: 1.5rem 1rem;
    }
    
    .summary-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-card {
        padding: 1.2rem 0.8rem;
    }
    
    .reviews-cta .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .review-item {
        padding: 1rem;
    }
    
    .avatar-image {
        width: 60px;
        height: 60px;
    }
    
    .review-rating {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .rating-text {
        margin-left: 0;
        margin-top: 0.3rem;
        width: 100%;
        text-align: center;
    }
    
    .reviews-summary {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-card {
        padding: 1rem 0.6rem;
    }
}

/* ============================================
   DISCOUNTED PRICING SECTION - REDESIGNED
   ============================================ */
.pricing-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 50%, #ffffff 100%);
}

.pricing-header {
    background: var(--gradient-hero);
    color: white;
    text-align: center;
    padding: 3rem 0;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    padding-bottom: 5rem;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(168, 85, 247, 0.2) 0%, transparent 50%);
}

.pricing-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.3px;
}

.pricing-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 600;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    font-family: 'Outfit', sans-serif;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 0rem;
    position: relative;
    z-index: 10;
}

.pricing-package {
    background: white;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.08);
    /* overflow: hidden; */ 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(30, 64, 175, 0.08);
    position: relative;
}

.pricing-package:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(30, 64, 175, 0.15);
    border-color: var(--primary-color);
}

.best-value {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.2);
}

.best-value:hover {
    transform: scale(1.05) translateY(-12px);
}

.package-header {
    padding: 1.5rem 1rem;
    text-align: center;
    color: white;
    position: relative;
    border-radius: 28px 28px 0 0;
}

.package-header-primary {
    background: var(--gradient-primary);
}

.package-header h4 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.package-header p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin: 0;
    opacity: 0.9;
    font-weight: 600;
}

.best-value-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-secondary);
    color: #0f172a;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    z-index: 5;
    white-space: nowrap;
    letter-spacing: 1px;
    border: 4px solid white;
}

.best-value-badge::before {
    display: none;
}

.package-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.product-image-container {
    margin-bottom: 2rem;
    position: relative;
}

.pricing-image {
    max-width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: contrast(1.05) saturate(1.15) brightness(1.02);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.pricing-image:hover {
    transform: scale(1.08);
    filter: contrast(1.1) saturate(1.2) brightness(1.05);
}

.pricing-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pricing-image.multiple1 {
    max-width: 300px;
    height: auto;
    filter: contrast(1.05) saturate(1.15) brightness(1.02);
}

.pricing-image.multiple2 {
    max-width: 200px;
    height: auto;
    filter: contrast(1.05) saturate(1.15) brightness(1.02);
}

.bonus-ebooks {
    margin-top: 1rem;
    padding: 0.8rem 1.2rem;
    background: var(--gradient-secondary);
    color: #0f172a;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
    border: none;
}

.bonus-ebooks i {
    font-size: 1.1rem;
}

.package-pricing {
    text-align: center;
    padding: 0 0.5rem;
}

.package-price {
    margin-bottom: 0.8rem;
}

.price-amount {
    font-size: clamp(2.5rem, 6vw, 3rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Outfit', sans-serif;
}

.price-label {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    font-weight: 600;
}

.btn-buy-now {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(21, 128, 61, 0.3);
    margin-top: 1rem;
    margin-bottom: 0;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-buy-now:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(21, 128, 61, 0.4);
    color: white;
}

.btn-best-value {
    background: var(--gradient-secondary);
    color: #0f172a;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-best-value:hover {
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    color: #0f172a;
}

.total-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.total-label {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.original-total {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 600;
}

.discounted-total {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.payment-methods {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    
}

.payment-icon{
    max-width: 150px;
}

/* Savings Info Badge */
.savings-info {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.savings-info i {
    color: #d97706;
}

/* Free Shipping Badge - Above Button */
.free-shipping-badge {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.free-shipping-badge i {
    font-size: 0.85rem;
}

/* Free Shipping Below Total */
.free-shipping-total {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.free-shipping-total i {
    font-size: 0.85rem;
}

.payment-icon:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Mobile Adjustments for Pricing Section */
@media (max-width: 991.98px) {
    .pricing-header {
        padding: 2rem 0 4rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: -1rem;
    }
    
    .best-value {
        transform: none;
        order: -1;
    }
    
    .best-value:hover {
        transform: translateY(-5px);
    }
    
    .package-content {
        padding: 1.5rem 1rem;
    }
    
    .pricing-group {
        gap: 0.3rem;
    }
    
    .pricing-image.multiple {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 767.98px) {
    .pricing-header {
        padding: 1.5rem 0 3rem;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    }
    
    .pricing-package {
        border-radius: 15px;
    }
    
    .package-header {
        padding: 1.2rem 0.8rem;
    }
    
    .package-content {
        padding: 1.2rem 0.8rem;
    }
    
    .pricing-image {
        max-width: 100px;
        height: 130px;
    }
    
    .pricing-image.multiple {
        max-width: 60px;
        height: 80px;
    }
    
    .btn-buy-now {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .bonus-ebooks {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    
    .total-pricing {
        gap: 0.5rem;
    }
    
    .payment-methods {
        gap: 0.5rem;
    }
    
    .payment-icon {
        height: auto;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .pricing-grid {
        gap: 1rem;
    }
    
    .package-content {
        padding: 1rem 0.6rem;
    }
    
    .pricing-group {
        gap: 0.2rem;
    }
    
    .pricing-image.multiple {
        max-width: 120px;
        height: auto;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .btn-buy-now {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .total-pricing {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .payment-methods {
        gap: 0.3rem;
    }
    
    .payment-icon {
        height: auto;
        max-width: 60%;
    }
}

/* Bonuses Section */
.bonuses-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.bonuses-header {
    background: linear-gradient(135deg,#00424C 0%,#00424C 100%);
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: relative;
}

.bonuses-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.bonuses-subtitle {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.text-yellow {
    color: #fbbf24;
}

.underline {
    text-decoration: underline;
    text-decoration-color: #fbbf24;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    border: 2px solid #f1f5f9;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}

.bonus-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    text-align: center;
    margin: 10px 0px;
}

.bonus-book {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bonus-item:hover .bonus-book {
    transform: scale(1.05);
}

.digital-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bonus-content {
    padding: 2rem;
    text-align: center;
}

.bonus-number {
    color: #10b981;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.bonus-name {
    color: var(--text-primary);
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.bonus-value {
    color: #fbbf24;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.bonus-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(1.05rem, 2.5vw, 1.15rem);
    text-align: justify;
}

/* ============================================
   INGREDIENTS SECTION - REDESIGNED
   ============================================ */
.ingredients-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 50%, #ffffff 100%);
}

.ingredients-header {
    background: var(--gradient-hero);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    position: relative;
}

.ingredients-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
}

.ingredients-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.ingredients-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.intro-description {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.ingredients-list {
    max-width: 800px;
    margin: 0 auto;
}

.ingredient-item {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(30, 64, 175, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
}

.ingredient-item:last-child {
    border-bottom: none;
}

.ingredient-item:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    margin: 0 -1.5rem;
}

.ingredient-number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.2);
}

.ingredient-item:hover .ingredient-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.3);
}

.ingredient-content {
    flex: 1;
    min-width: 0;
}

.ingredient-name {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-family: 'Outfit', sans-serif;
}

.ingredient-description {
    color: var(--text-secondary);
    line-height: 1.85;
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    text-align: justify;
    margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bonus-image {
        height: 200px;
    }
    
    .bonus-content {
        padding: 1.5rem;
    }
    
    .ingredient-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .ingredient-number {
        align-self: center;
    }
}

@media (max-width: 767.98px) {
    .bonuses-header {
        padding: 2rem 0;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonus-image {
        height: 180px;
    }
    
    .bonus-content {
        padding: 1.2rem;
    }
    
    .bonus-description {
        text-align: left;
    }
    
    .ingredients-header {
        padding: 2rem 0;
    }
    
    .ingredients-intro {
        margin-bottom: 2rem;
    }
    
    .intro-description {
        text-align: left;
        padding: 0 1rem;
    }
    
    .ingredient-item {
        padding: 1.5rem 0;
    }
    
    .ingredient-item:hover {
        padding: 1.5rem 1rem;
        margin: 0 -1rem;
    }
    
    .ingredient-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .bonuses-grid {
        gap: 1rem;
    }
    
    .bonus-image {
        height: 160px;
        text-align: center;
        margin: 10px 0px;
    }
    
    .bonus-content {
        padding: 1rem;
    }
    
    .ingredient-item {
        padding: 1.2rem 0;
    }
    
    .ingredient-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Scientific Evidence Section */
.scientific-evidence-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.evidence-header {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    position: relative;
}

.evidence-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.evidence-intro {
    margin-bottom: 3rem;
}

.intro-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
    max-width: 900px;
    margin: 0 auto;
}

.intro-heading {
    color: var(--text-primary);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 1rem;
}

.intro-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(1.05rem, 2.5vw, 1.15rem);
    text-align: justify;
    margin: 0;
}

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

.evidence-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.evidence-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.03), transparent);
    transition: left 0.6s ease;
}

.evidence-item:hover::before {
    left: 100%;
}

.evidence-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.ingredient-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.ingredient-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.ingredient-title {
    font-size: clamp(1.15rem, 3vw, 1.35rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.evidence-content {
    display: grid;
    gap: 1.5rem;
}

.evidence-block,
.mechanism-block {
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.evidence-block {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.mechanism-block {
    background: linear-gradient(135deg, #fef3c7 0%, #fef7cd 100%);
}

.evidence-label,
.mechanism-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.evidence-label::before { content: ''; }

.mechanism-label::before { content: ''; }

.evidence-text,
.mechanism-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(1.05rem, 2.5vw, 1.15rem);
    margin: 0;
    text-align: justify;
}

.evidence-conclusion {
    margin-top: 2rem;
}

.conclusion-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--secondary-color);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.conclusion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.conclusion-title {
    color: var(--secondary-color);
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    position: relative;
    z-index: 2;
}

.conclusion-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.conclusion-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(1.05rem, 2.5vw, 1.15rem);
    text-align: justify;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .intro-card {
        padding: 2rem;
    }
    
    .evidence-item {
        padding: 1.5rem;
    }
    
    .ingredient-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .evidence-content {
        gap: 1rem;
    }
    
    .evidence-block,
    .mechanism-block {
        padding: 1.2rem;
    }
    
    .conclusion-card {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .evidence-header {
        padding: 2rem 0;
    }
    
    .intro-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .intro-text {
        text-align: left;
    }
    
    .evidence-item {
        padding: 1.2rem;
        margin: 0 0.5rem;
    }
    
    .ingredient-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .evidence-block,
    .mechanism-block {
        padding: 1rem;
    }
    
    .evidence-text,
    .mechanism-text {
        text-align: left;
    }
    
    .conclusion-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .conclusion-text {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .intro-card {
        padding: 1.2rem;
    }
    
    .evidence-item {
        padding: 1rem;
    }
    
    .ingredient-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .evidence-block,
    .mechanism-block {
        padding: 0.8rem;
    }
    
    .conclusion-card {
        padding: 1.2rem;
    }
}

/* Scientifically Formulated Section */
.formulation-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.formulation-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.formulation-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.formulation-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 1.5rem;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.step-item:hover .step-circle {
    transform: scale(1.1);
    background: var(--success-color);
}

.step-title {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    font-family: 'Poppins', sans-serif;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: clamp(1.05rem, 2.5vw, 1.15rem);
    text-align: center;
    margin: 0;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--danger-color);
    font-size: 1.5rem;
    margin-top: 3rem;
    flex-shrink: 0;
}

/* Guarantee Section */
.guarantee-section {
    background: var(--secondary-color);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.guarantee-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.guarantee-badge-container {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.guarantee-badge-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 1;
}

.guarantee-badge-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    border-radius: 50%;
    border: 4px solid var(--accent-color);
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-days {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.badge-main {
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.1rem;
}

.badge-bottom {
    font-size: 0.8rem;
    font-weight: 600;
}

.guarantee-details {
    color: white;
}

.guarantee-main-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guarantee-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.point-number {
    flex-shrink: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.point-content {
    flex: 1;
    line-height: 1.7;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.95);
}

.point-content strong {
    color: #fcd34d;
    font-weight: 700;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .guarantee-badge-container {
        justify-self: center;
        width: 150px;
        height: 150px;
    }
    
    .badge-days {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .formulation-section {
        padding: 3rem 0;
    }
    
    .formulation-header {
        margin-bottom: 3rem;
    }
    
    .process-steps {
        margin-bottom: 3rem;
    }
    
    .step-item {
        padding: 1rem;
        min-width: 200px;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .guarantee-section {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .guarantee-badge-container {
        width: 120px;
        height: 120px;
    }
    
    .badge-days {
        font-size: 1.5rem;
    }
    
    .badge-text,
    .badge-main,
    .badge-bottom {
        font-size: 0.7rem;
    }
    
    .guarantee-points {
        gap: 1rem;
    }
    
    .guarantee-point {
        flex-direction: column;
        text-align: left;
        gap: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .step-item {
        min-width: 100%;
    }
    
    .guarantee-section {
        padding: 1.5rem 1rem;
    }
    
    .guarantee-badge-container {
        width: 100px;
        height: 100px;
    }
    
    .badge-days {
        font-size: 1.3rem;
    }
    
    .step-description {
        text-align: center;
    }
}

/* ============================================
   BENEFITS SECTION - REDESIGNED
   ============================================ */
.benefits-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.benefits-header {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    position: relative;
}

.benefits-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
}

.benefits-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    letter-spacing: -0.3px;
}

.benefits-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(30, 64, 175, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 0 -1.5rem;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.06);
}

.benefit-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.35);
}

.benefit-content {
    flex: 1;
    min-width: 0;
}

.benefit-title {
    font-size: clamp(1.15rem, 3vw, 1.35rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(1.05rem, 2.5vw, 1.15rem);
    text-align: justify;
    margin: 0;
}

.benefits-cta {
    text-align: center;
    margin-top: 2rem;
}

.cta-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 28px;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.08);
    border: 1px solid rgba(30, 64, 175, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(30, 64, 175, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 2;
}

.cta-description {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cta-card .btn {
    position: relative;
    z-index: 2;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gradient-primary);
    border: none;
}

.cta-card .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.35);
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .benefits-intro {
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-icon {
        align-self: center;
    }
    
    .benefit-item:hover {
        padding: 1.5rem 1rem;
        margin: 0 -1rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .benefits-header {
        padding: 2rem 0;
    }
    
    .benefits-intro {
        padding: 0 1rem;
    }
    
    .benefit-item {
        padding: 1.2rem 0;
    }
    
    .benefit-item:hover {
        padding: 1.2rem 0.8rem;
        margin: 0 -0.8rem;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .benefit-description {
        text-align: left;
    }
    
    .cta-card {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
    }
    
    .cta-card .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .benefit-item {
        padding: 1rem 0;
    }
    
    .benefit-item:hover {
        padding: 1rem 0.5rem;
        margin: 0 -0.5rem;
    }
    
    .benefit-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .cta-card {
        padding: 1.2rem 0.8rem;
    }
}


/* ============================================
   FAQ SECTION - REDESIGNED
   ============================================ */
.faq-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 50%, #dbeafe 100%);
}

.faq-header {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    position: relative;
}

.faq-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
}

.faq-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    letter-spacing: -0.3px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.06);
    border: 1px solid rgba(30, 64, 175, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.1);
    border-color: rgba(30, 64, 175, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
}

.faq-question h4 {
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Outfit', sans-serif;
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    box-shadow: 0 6px 18px rgba(30, 64, 175, 0.3);
}

.faq-answer {
    border-top: 1px solid rgba(30, 64, 175, 0.08);
}

.faq-answer-content {
    padding: 1.5rem 2rem;
    color: var(--text-secondary);
    line-height: 1.85;
    font-size: clamp(1.05rem, 2.5vw, 1.15rem);
}

.faq-answer-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
    text-align: left;
}

.faq-answer-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.faq-cta {
    background: white;
    border-radius: 28px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.08);
    border: 1px solid rgba(30, 64, 175, 0.1);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(30, 64, 175, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.cta-content p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    min-width: 180px;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Bootstrap Collapse Animation Enhancement */
.faq-answer.collapsing {
    transition: height 0.3s ease;
}

.faq-answer.show {
    animation: fadeIn 0.3s ease;
}

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

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-answer-content {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        min-width: 200px;
    }
}

@media (max-width: 767.98px) {
    .faq-header {
        padding: 2rem 0;
    }
    
    .faq-item {
        margin: 0 1rem 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .faq-answer-content {
        padding: 1rem 1.2rem;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .faq-cta {
        padding: 1.5rem 1rem;
        margin: 2rem 1rem 0;
    }
    
    .cta-buttons .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem !important;
        min-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .faq-question {
        padding: 0.8rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .faq-answer-content {
        padding: 0.8rem 1rem;
    }
    
    .faq-answer-content p,
    .faq-answer-content li {
        text-align: left;
    }
    
    .faq-cta {
        padding: 1.2rem 0.8rem;
    }
}

/* Custom Scrollbar for FAQ Content */
.faq-answer-content::-webkit-scrollbar {
    width: 6px;
}

.faq-answer-content::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.faq-answer-content::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 3px;
}

.faq-answer-content::-webkit-scrollbar-thumb:hover {
    background: #c82333;
}

/* Security & Final CTA Section */
.security-cta-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.security-info {
    margin-bottom: 3rem;
}

.security-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
}

.security-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.security-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(1.05rem, 2.5vw, 1.15rem);
    text-align: justify;
    margin-bottom: 1.5rem;
}

.info-section {
    margin-bottom: 1.5rem;
}

.info-title {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.contact-info {
    background: rgba(37, 99, 235, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.support-email {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.support-email:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Final CTA Banner */
.final-cta-banner {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.final-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

/* Final Product Section */
.final-product-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.product-display {
    position: relative;
}

.product-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.main-product-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: contrast(1.05) saturate(1.15) brightness(1.02);
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.02);
    filter: contrast(1.1) saturate(1.2) brightness(1.05);
}

.savings-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
    border: 3px solid white;
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
}

.badge-amount {
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.guarantee-overlay {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.guarantee-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    border: 3px solid white;
    text-align: center;
    min-width: 120px;
}

.guarantee-text {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
}

.guarantee-subtext {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
}

.guarantee-bottom {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
}

.pricing-display {
    margin-bottom: 2rem;
    text-align: center;
}

.regular-price {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.price-label {
    font-size: 1rem;
    font-weight: 500;
}

.price-amount {
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: #94a3b8;
    margin-left: 0.5rem;
}

.special-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.special-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.special-amount {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--success-color);
    font-family: 'Poppins', sans-serif;
}

.final-cta-button {
    margin-top: 1.5rem;
}

.btn-final-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
    border: 3px solid black;
    position: relative;
    overflow: hidden;
}

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

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

.btn-final-order:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
    color: #ffffff;
    border-color: #f59e0b;
}

.btn-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.btn-icon {
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .security-card {
        padding: 2rem;
    }
    
    .final-cta-banner {
        padding: 1.5rem;
    }
    
    .main-product-image {
        max-width: 300px;
    }
    
    .savings-badge {
        width: 70px;
        height: 70px;
        top: -5px;
        right: -5px;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .badge-amount {
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .security-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .security-content p {
        text-align: left;
    }
    
    .final-cta-banner {
        padding: 1.2rem;
        margin: 0 1rem 2rem;
    }
    
    .main-product-image {
        max-width: 250px;
    }
    
    .savings-badge {
        width: 60px;
        height: 60px;
    }
    
    .badge-text {
        font-size: 0.6rem;
    }
    
    .badge-amount {
        font-size: 0.7rem;
    }
    
    .guarantee-badge {
        padding: 0.6rem 1rem;
        min-width: 100px;
    }
    
    .guarantee-text,
    .guarantee-subtext,
    .guarantee-bottom {
        font-size: 0.55rem;
    }
    
    .special-price {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-final-order {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .security-card {
        padding: 1.2rem;
    }
    
    .contact-info {
        padding: 0.8rem 1rem;
    }
    
    .main-product-image {
        max-width: 200px;
    }
    
    .savings-badge {
        width: 50px;
        height: 50px;
    }
    
    .badge-text,
    .badge-amount {
        font-size: 0.6rem;
    }
    
    .btn-final-order {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-text {
        font-size: 0.9rem;
    }
    
    .btn-icon {
        font-size: 1rem;
    }
}

/* ============================================
   FOOTER SECTION - REDESIGNED
   ============================================ */
.footer-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    margin-top: 0;
    padding: 0;
    border-top: 1px solid rgba(30, 64, 175, 0.08);
}

/* Full Width Disclaimers */
.footer-disclaimers-full {
    width: 100%;
    padding: 1.5rem 0;
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.footer-disclaimers-full .container-fluid {
    max-width: none;
    padding: 0 2rem;
}

.disclaimer-content {
    max-width: none;
    padding: 0;
    background: transparent;
    border: none;
}

.disclaimer-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    text-align: justify;
    font-weight: 400;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

/* Centered Footer Bottom */
.footer-bottom-centered {
    padding: 1.2rem 0;
    text-align: center;
    border-top: 1px solid rgba(30, 64, 175, 0.08);
    background: white;
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Social Media - Modern Pill Style */
.social-media-rounded {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.4rem;
    border: 1px solid rgba(30, 64, 175, 0.15);
    border-radius: 50px;
    background: white;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.06);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    background: transparent;
    border: none;
    border-radius: 50%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-link:nth-child(1):hover { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.social-link:nth-child(2):hover { background: linear-gradient(135deg, #00c6fb 0%, #005bea 100%); }
.social-link:nth-child(3):hover { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.social-link:nth-child(4):hover { background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%); }
.social-link:nth-child(5):hover { background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%); }
.social-link:nth-child(6):hover { background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 100%); }

/* Footer Legal Links */
.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.legal-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
}

.legal-link:hover {
    color: var(--primary-color);
    background: rgba(30, 64, 175, 0.06);
}

.link-separator {
    color: rgba(30, 64, 175, 0.3);
    margin: 0 0.2rem;
}

/* Footer Copyright */
.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

/* Mobile Optimizations */
@media (max-width: 767.98px) {
    .footer-disclaimers-full .container-fluid {
        padding: 0 1rem;
    }
    
    .disclaimer-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        text-align: left;
    }
    
    .footer-bottom-centered {
        padding: 0.8rem 0;
    }
    
    .footer-bottom-container {
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .social-media-rounded {
        padding: 0.6rem 1rem;
        gap: 0.8rem;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .legal-link {
        font-size: 0.75rem;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .footer-disclaimers-full .container-fluid {
        padding: 0 0.5rem;
    }
    
    .disclaimer-content p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .social-media-rounded {
        padding: 0.5rem 0.8rem;
        gap: 0.6rem;
    }
    
    .social-link {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .link-separator {
        display: none;
    }
    
    .legal-link {
        font-size: 0.7rem;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
}

/* Accessibility */
.social-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.legal-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 1px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .social-link {
        transition: none;
    }
    .social-link:hover {
        transform: none;
    }
}

/* High Contrast */
@media (prefers-contrast: high) {
    .footer-section {
        border-top: 2px solid #000;
    }
    .disclaimer-content p {
        color: #000;
    }
    .social-link {
        color: #000;
        border: 1px solid #000;
    }
    .legal-link {
        color: #000;
    }
    .footer-copyright p {
        color: #000;
    }
}

/* Product Section */
.product-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
}

.product-image-wrapper {
    position: relative;
}

.product-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-image-placeholder {
    background: #ffffff;
    border: 3px dashed rgba(37, 99, 235, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    width: 100%;
    max-width: 350px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.product-image-placeholder:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.image-upload-area {
    text-align: center;
    color: var(--text-secondary);
}

.image-upload-area i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.image-upload-area h5 {
    color: var(--text-primary);
}

.upload-instructions {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 4px solid var(--primary-color);
}

.upload-instructions code {
    background: #e2e8f0;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    word-break: break-all;
}

.product-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

.feature-point {
    position: absolute;
    cursor: pointer;
}

.point-1 { top: 20%; right: -10px; }
.point-2 { top: 50%; left: -10px; }
.point-3 { bottom: 20%; right: 10px; }

.point-indicator {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
    position: relative;
}

.point-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.feature-tooltip {
    position: absolute;
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--text-primary);
}

.point-1 .feature-tooltip {
    bottom: 100%;
    right: 0;
    margin-bottom: 10px;
}

.point-2 .feature-tooltip {
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-left: 10px;
}

.point-3 .feature-tooltip {
    top: 100%;
    right: 0;
    margin-top: 10px;
}

.feature-point:hover .feature-tooltip {
    opacity: 1;
    visibility: visible;
}

.benefits-grid {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-item i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-item i.text-warning {
    color: var(--secondary-color) !important;
}

.benefit-item i.text-danger {
    color: var(--danger-color) !important;
}

.benefit-item i.text-success {
    color: var(--success-color) !important;
}

.benefit-item i.text-info {
    color: var(--primary-color) !important;
}

.benefit-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.benefit-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 1.2rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.current-price {
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 800;
    color: var(--success-color);
}

.discount-badge {
    background: var(--danger-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.btn-cta {
    background: var(--gradient-accent);
    border: none;
    color: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    color: white;
}

.guarantee-text {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.guarantee-text i {
    color: var(--success-color);
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    bottom: 0;
    z-index: 100;
    box-shadow: var(--shadow-xl);
}

.urgency-banner .btn-warning {
    background: var(--accent-color);
    border: none;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.urgency-banner .btn-warning:hover {
    background: #d97706;
    transform: scale(1.05);
    color: white;
}

.fa-clock{
    color: var(--accent-color) !important;
}

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

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

/* Animate in effect */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }

/* Mobile Specific Adjustments */
@media (max-width: 991.98px) {
    .navbar-cta {
        display: block;
    }
    
    .navbar-cta .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .trust-item {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .product-showcase {
        min-height: 350px;
    }
    
    .product-placeholder {
        width: 280px;
        height: 350px;
    }
    
    .floating-badge {
        position: relative;
        margin: 0.5rem;
        position: static;
        display: inline-flex;
    }
    
    .certification-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .hero-section {
        padding: 90px 0 50px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .stat-item {
        padding: 0.8rem 0.5rem;
    }
    
    .btn-hero,
    .btn-cta {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem !important;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .product-placeholder {
        width: 260px;
        height: 320px;
        padding: 1rem;
    }
    
    .price-display {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cert-image-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .urgency-banner {
        padding: 1rem 0;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .floating-elements {
        opacity: 0.5;
    }
    
    .floating-element {
        width: 30px !important;
        height: 30px !important;
    }
    
    .product-placeholder {
        width: 240px;
        height: 300px;
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .certification-card {
        padding: 1.2rem 0.8rem;
    }
    
    .cert-title {
        font-size: 0.9rem;
    }
    
    .cert-description {
        font-size: 1.0rem;
    }
}

/* Desktop Improvements */
@media (min-width: 992px) {
    .navbar-cta {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        display: flex;
        align-items: center;
    }
    
    .navbar-cta .btn {
        width: auto;
        margin-bottom: 0;
    }
    
    .hero-section {
        text-align: left;
    }
    
    .hero-subtitle {
        text-align: left;
        margin: 0;
    }
    
    .trust-indicators .row {
        justify-content: start;
    }
    
    .product-glow {
        width: 450px;
        height: 450px;
    }
    
    .product-placeholder {
        width: 500px;
        height: 600px;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.navbar-toggler:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
    box-shadow: none !important;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .hero-section {
        background: #fff;
        color: #000;
    }
    
    .btn-hero,
    .btn-cta {
        background: #000;
        color: #fff;
        border: 2px solid #000;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn.loading {
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   Privacy Policy, Terms, Disclaimer Pages
   ======================================== */

.privacy-policy-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.privacy-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.privacy-header {
    background: linear-gradient(135deg, #00424C 0%, #006d7a 100%);
    padding: 1.5rem 2rem;
}

.privacy-section-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}

.privacy-section-title i {
    color: #f59e0b !important;
}

.privacy-content {
    padding: 2rem;
}

.privacy-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0;
}

.privacy-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #00424C;
    transition: background 0.3s ease;
}

.privacy-item:hover {
    background: #f1f5f9;
}

.privacy-item-title {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.privacy-item p {
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.7;
}

.privacy-cta-card {
    background: linear-gradient(135deg, #00424C 0%, #006d7a 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.privacy-cta-card .cta-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.privacy-cta-card .cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.privacy-cta-card .support-email {
    display: inline-flex;
    align-items: center;
    background: #f59e0b;
    color: #1f2937;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-cta-card .support-email:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .privacy-header {
        padding: 1rem 1.5rem;
    }
    
    .privacy-section-title {
        font-size: 1.2rem;
    }
    
    .privacy-content {
        padding: 1.5rem;
    }
    
    .privacy-item {
        padding: 1rem;
    }
    
    .privacy-cta-card {
        padding: 2rem 1.5rem;
    }
}


/* Benefits Row Hover Effects */
.benefit-row {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.benefit-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(30, 64, 175, 0.12) !important;
    border-color: rgba(37, 99, 235, 0.2) !important;
}

.benefit-row:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}


/* Custom Money Back Guarantee Seal */
.money-back-seal {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #9e7f07 100%);
    border: 4px dashed #fff;
    box-shadow: 0 0 0 8px #d4af37, 0 10px 25px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.money-back-seal:hover {
    transform: rotate(0) scale(1.05);
}

.seal-days-number {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.seal-text-top {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.seal-text-bottom {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    margin-top: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.seal-check {
    margin-top: 5px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
}

/* ============================================
   NEW SECTIONS - BING SEO CONTENT
   ============================================ */

/* How It Works - Step Grid */
.how-step-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.how-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-step-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.step-number-badge {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-detail h5 {
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.step-detail p {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Educational Content */
.educational-content h3 {
    color: var(--secondary-color);
    font-weight: 700;
}

.educational-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Science Sidebar */
.science-sidebar {
    position: sticky;
    top: 100px;
}

.science-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.science-facts-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.science-facts-list li:last-child {
    border-bottom: none;
}

.science-facts-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* Climate Output Table */
.climate-output span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Water Crisis Section */
.crisis-intro .lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.crisis-stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crisis-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.crisis-bullet-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.crisis-bullet-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.solution-benefits .sol-item {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Specs Table */
.specs-table-wrapper {
    height: 100%;
}

.specs-table td {
    vertical-align: middle;
    padding: 0.6rem 0.75rem;
    font-size: 0.92rem;
}

.specs-table td:first-child {
    width: 40%;
    color: var(--text-primary);
}

.specs-table td:last-child {
    color: var(--text-secondary);
}

/* Comparison Table */
.comparison-table {
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table thead th {
    background: var(--gradient-primary);
    color: #fff;
    padding: 1rem 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    vertical-align: middle;
}

.comparison-table thead th:first-child {
    border-radius: 12px 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 12px 0 0;
}

.comparison-table tbody td {
    padding: 0.75rem;
    font-size: 0.9rem;
    vertical-align: middle;
    border-color: #e2e8f0;
}

.comparison-table tbody tr:hover {
    background-color: #f0f9ff;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .how-step-item {
        padding: 0.75rem;
    }
    
    .step-number-badge {
        min-width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .science-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .crisis-stat-card {
        margin-bottom: 1rem;
    }
    
    .specs-table td {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
}


