/* ===================================
   GLYCOPEZIL LANDING PAGE STYLES
   Mobile-First Responsive Design
   Modern Gradient Theme
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
section {
    padding: 60px 0;
}

/* Typography */
.section-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    color: #6b7280;
    margin-bottom: 32px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 24px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #4F46E5 0%, #06B6D4 100%);
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.nav-menu.active {
    right: 0;
}

.nav-link {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-link:hover {
    padding-left: 10px;
    border-bottom-color: #ffffff;
}

.nav-cta {
    background: #ffffff;
    color: #4F46E5;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding-top: 120px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.floating-animation {
    animation: floatProduct 4s ease-in-out infinite;
}

.floating-animation img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(79, 70, 229, 0.3));
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.feature-icon {
    width: 24px;
    height: 24px;
    stroke: #10B981;
    flex-shrink: 0;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    min-height: 54px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.cta-primary {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.5);
}

.cta-primary:active {
    transform: scale(0.98);
}

.button-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.pulse-animation {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===================================
   WHY CHOOSE US
   =================================== */
.why-choose {
    background: #f9fafb;
}

.badges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.badge-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
}

.badge-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.badge-card:hover {
    transform: translateY(-10px) rotate(2deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.badge-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge-title {
    font-size: 18px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
}

.badge-description {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}

/* ===================================
   WHAT IS SECTION
   =================================== */
.what-is-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.what-is-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.what-is-image {
    width: 100%;
    max-width: 500px;
}

.what-is-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* ===================================
   HOW IT WORKS - ACCORDION
   =================================== */
.how-it-works {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
}

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

.accordion-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.15);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    min-height: 64px;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(79, 70, 229, 0.05);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    stroke: #4F46E5;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 24px 20px;
}

.accordion-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
}

/* ===================================
   CUSTOMER REVIEWS
   =================================== */
.reviews {
    background: #f9fafb;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9) translateY(30px);
}

.review-card.animate-in {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.review-header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4F46E5;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.review-location {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.review-rating img {
    width: auto;
    height: 18px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.verified-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.countdown-timer {
    max-width: 400px;
    margin: 0 auto 40px;
    text-align: center;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.timer-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 12px;
}

.timer-number {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.timer-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
}

.timer-separator {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-card {
    position: relative;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #4F46E5;
    border-width: 3px;
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.03) 0%, #ffffff 100%);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.pricing-label {
    font-size: 14px;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.pricing-bottles {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.pricing-supply {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.pricing-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 24px;
}

.pricing-price {
    margin-bottom: 12px;
}

.price-per-bottle {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.price-label {
    font-size: 14px;
    color: #6b7280;
}

.pricing-total {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.price-old {
    font-size: 24px;
    font-weight: 600;
    color: #9ca3af;
    text-decoration: line-through;
}

.price-new {
    font-size: 32px;
    font-weight: 900;
    color: #10B981;
}

.pricing-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.badge-free,
.badge-shipping {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 16px;
    min-height: 54px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    border-radius: 50px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.4);
}

.pricing-button:active {
    transform: scale(0.98);
}

.payment-logos {
    text-align: center;
}

.payment-logos img {
    margin: 0 auto;
    opacity: 0.7;
}

.rating-display {
    text-align: center;
    padding: 32px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.rating-display img {
    margin: 0 auto 12px;
}

.rating-text {
    font-size: 14px;
    color: #6b7280;
}

/* ===================================
   INGREDIENTS
   =================================== */
.ingredients {
    background: #f9fafb;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ingredient-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border-left: 4px solid #4F46E5;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.15);
}

.ingredient-name {
    font-size: 18px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
}

.ingredient-description {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 12px;
}

.ingredient-benefits {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}

/* ===================================
   SCIENTIFIC EVIDENCE
   =================================== */
.evidence-content {
    max-width: 900px;
    margin: 0 auto;
}

.evidence-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.evidence-heading {
    font-size: 22px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.evidence-subheading {
    font-size: 18px;
    font-weight: 700;
    color: #4F46E5;
    margin-bottom: 12px;
}

.evidence-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
}

/* ===================================
   MONEY BACK GUARANTEE
   =================================== */
.guarantee {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.guarantee-image {
    width: 100%;
    max-width: 300px;
}

.guarantee-image img {
    width: 100%;
    height: auto;
}

.guarantee-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.guarantee-heading {
    font-size: 18px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
}

.guarantee-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
}

/* ===================================
   BENEFITS
   =================================== */
.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 16px;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
}

.benefit-text h3 {
    font-size: 16px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    background: #f9fafb;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    min-height: 64px;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(79, 70, 229, 0.05);
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: #4F46E5;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
}

/* ===================================
   FINAL CTA
   =================================== */
.final-cta {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #ffffff;
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
}

.final-cta-image {
    width: 100%;
    max-width: 300px;
    animation: floatProduct 4s ease-in-out infinite;
}

.final-cta-image img {
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
}

.final-cta-title {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
}

.final-cta-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.final-price-old {
    font-size: 18px;
    text-decoration: line-through;
    opacity: 0.7;
}

.final-price-new {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
}

.cta-large {
    font-size: 18px;
    padding: 18px 40px;
    max-width: 400px;
    background: #ffffff;
    color: #4F46E5;
}

.final-cta-note {
    font-size: 14px;
    margin-top: 16px;
    opacity: 0.9;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 48px 0 24px;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-links a {
    color: #d1d5db;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-divider {
    color: #4b5563;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 32px;
    font-size: 13px;
    line-height: 1.8;
    color: #9ca3af;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: #6b7280;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.5);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

/* ===================================
   PURCHASE NOTIFICATION POPUP
   =================================== */
.purchase-popup {
    position: fixed;
    bottom: -100px;
    left: 20px;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    z-index: 998;
    transition: bottom 0.5s ease;
}

.purchase-popup.show {
    bottom: 20px;
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.popup-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    font-size: 20px;
    flex-shrink: 0;
}

.popup-text {
    font-size: 13px;
    line-height: 1.4;
}

.popup-text strong {
    display: block;
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 2px;
}

.popup-text p {
    color: #6b7280;
    margin: 0;
}

/* ===================================
   CTA POPUP
   =================================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cta-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 24px;
    max-width: 400px;
    width: calc(100% - 40px);
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cta-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    font-size: 28px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    color: #1f2937;
    transform: rotate(90deg);
}

.popup-inner {
    text-align: center;
}

.popup-title {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.popup-description {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
}

.popup-cta-button {
    display: block;
    width: 100%;
    padding: 16px 32px;
    min-height: 54px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
}

.popup-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.4);
}

.popup-note {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 16px;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

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

/* ===================================
   MEDIA QUERIES - TABLET
   =================================== */
@media (min-width: 576px) {
    .section-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timer-number {
        font-size: 48px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        flex-direction: row;
        gap: 32px;
        box-shadow: none;
    }
    
    .nav-link {
        color: #1f2937;
        font-size: 15px;
        padding: 0;
        border-bottom: none;
    }
    
    .nav-link:hover {
        padding-left: 0;
        color: #4F46E5;
    }
    
    .nav-cta {
        background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
        color: #ffffff;
        padding: 12px 24px;
    }
    
    .hero-container {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-features {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .cta-button {
        width: auto;
        display: inline-flex;
    }
    
    .what-is-content {
        flex-direction: row;
    }
    
    .guarantee-content {
        flex-direction: row;
    }
    
    .final-cta-content {
        flex-direction: row;
        text-align: left;
    }
}

/* ===================================
   MEDIA QUERIES - DESKTOP
   =================================== */
@media (min-width: 992px) {
    .section-title {
        font-size: 42px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 60px;
    }
}

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

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .navbar,
    .scroll-to-top,
    .purchase-popup,
    .cta-popup,
    .popup-overlay {
        display: none !important;
    }
}