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

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #f59e0b;
    --text-primary: #ffffff;
    --text-secondary: #e5e7eb;
    --text-muted: #9ca3af;
    --bg-primary: #0f0f23;
    --bg-secondary: #1a1a2e;
    --bg-card: #16213e;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-cosmic: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(102, 102, 241, 0.3);
}

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

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

/* Cosmic Background Effect */
.stars-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(2px 2px at 20px 30px, #fff, transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
                radial-gradient(1px 1px at 90px 40px, #fff, transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
                radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.5;
}

@keyframes sparkle {
    from { transform: translateY(0px); }
    to { transform: translateY(-100px); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-brand i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.portal-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-weight: 600 !important;
    box-shadow: 0 5px 15px rgba(102, 102, 241, 0.3) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.portal-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 102, 241, 0.4) !important;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%) !important;
    color: white !important;
}

.portal-btn i {
    font-size: 1.1rem;
}

.portal-btn span {
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(102, 102, 241, 0.3) 50%, rgba(139, 92, 246, 0.4) 100%),
        url('https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(102, 102, 241, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(15, 15, 35, 0.6) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    backdrop-filter: blur(1px);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="200" cy="150" r="0.8" fill="white" opacity="0.8"><animate attributeName="opacity" values="0.3;1;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="400" cy="250" r="1" fill="white" opacity="0.6"><animate attributeName="opacity" values="0.2;0.8;0.2" dur="4s" repeatCount="indefinite"/></circle><circle cx="600" cy="180" r="0.5" fill="white" opacity="0.7"><animate attributeName="opacity" values="0.4;1;0.4" dur="2.5s" repeatCount="indefinite"/></circle><circle cx="800" cy="320" r="0.9" fill="white" opacity="0.5"><animate attributeName="opacity" values="0.3;0.9;0.3" dur="3.5s" repeatCount="indefinite"/></circle><circle cx="1000" cy="200" r="0.7" fill="white" opacity="0.6"><animate attributeName="opacity" values="0.2;0.7;0.2" dur="2.8s" repeatCount="indefinite"/></circle><circle cx="300" cy="400" r="0.6" fill="white" opacity="0.8"><animate attributeName="opacity" values="0.4;1;0.4" dur="3.2s" repeatCount="indefinite"/></circle></svg>');
    animation: cosmicDrift 30s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes cosmicDrift {
    from { transform: translateX(-50px) translateY(-20px); }
    to { transform: translateX(50px) translateY(20px); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(139, 92, 246, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.8);
    animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        text-shadow:
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(139, 92, 246, 0.6),
            0 5px 15px rgba(0, 0, 0, 0.8);
    }
    100% {
        text-shadow:
            0 0 30px rgba(255, 255, 255, 1),
            0 0 60px rgba(139, 92, 246, 0.8),
            0 5px 20px rgba(0, 0, 0, 1);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.8));
    animation: gradientShimmer 3s ease-in-out infinite;
}

@keyframes gradientShimmer {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
    padding: 1rem;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.2);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    color: var(--accent-color);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    color: white;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.6), 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: heroButtonGlow 3s ease-in-out infinite alternate;
}

@keyframes heroButtonGlow {
    0% {
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.6), 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 50px rgba(251, 191, 36, 0.8), 0 20px 60px rgba(0, 0, 0, 0.4);
    }
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.6);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.8), 0 25px 50px rgba(0, 0, 0, 0.4);
}

.cta-button::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;
}

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

/* Cosmic Transformation Section */
.cosmic-transformation {
    padding: 5rem 0;
    background: radial-gradient(ellipse at center, #1a1a3e 0%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.cosmic-transformation::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="100" cy="100" r="1" fill="white" opacity="0.5"/><circle cx="200" cy="150" r="1" fill="white" opacity="0.7"/><circle cx="350" cy="200" r="0.5" fill="white" opacity="0.5"/><circle cx="450" cy="100" r="1" fill="white" opacity="0.6"/><circle cx="600" cy="300" r="0.8" fill="white" opacity="0.5"/><circle cx="800" cy="200" r="1" fill="white" opacity="0.7"/><circle cx="900" cy="400" r="0.5" fill="white" opacity="0.5"/><circle cx="1000" cy="300" r="1" fill="white" opacity="0.6"/></svg>');
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.cosmic-card {
    background: linear-gradient(135deg, rgba(102, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cosmic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 102, 241, 0.3);
    border-color: var(--primary-color);
}

.cosmic-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(102, 102, 241, 0.5);
}

.zodiac-symbol {
    font-size: 2.5rem;
    color: white;
    font-weight: 300;
}

.cosmic-card blockquote {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author strong {
    color: white;
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Cosmic Journey Section */
.cosmic-journey {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
    overflow: hidden;
}

.cosmic-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    animation: cosmicRotate 20s linear infinite;
}

@keyframes cosmicRotate {
    from { transform: rotate(0deg) scale(1.5); }
    to { transform: rotate(360deg) scale(1.5); }
}

.astro-path {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 2;
}

.path-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.planet-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: radial-gradient(circle, rgba(102, 102, 241, 0.3), transparent);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: planetOrbit 4s ease-in-out infinite;
}

@keyframes planetOrbit {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.planet-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px currentColor);
}

.path-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.path-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cosmic-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    position: relative;
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cosmic-line::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    animation: lineTravel 2s linear infinite;
}

@keyframes lineTravel {
    from { left: -20px; }
    to { left: 120px; }
}

/* Sections */
.reports-section,
.pricing-section,
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 3rem;
}

.testimonials-wrapper {
    flex: 1;
    overflow: hidden;
    margin: 0 4rem;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    justify-content: flex-start;
}

.testimonial-nav {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.2rem;
    z-index: 2;
}

.testimonial-nav:hover {
    background: rgba(102, 102, 241, 0.3);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(102, 102, 241, 0.3);
}

.testimonial-nav:active {
    transform: scale(0.95);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(102, 102, 241, 0.6);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Reports Grid */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.report-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-color);
}

.report-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.report-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.report-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.report-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(102, 102, 241, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Free Pack Section */
.free-pack-section {
    background: radial-gradient(circle at 30% 50%, #667eea 0%, #764ba2 30%, #f093fb 60%, #f5576c 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.free-pack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: cosmicGlow 8s ease-in-out infinite alternate;
}

@keyframes cosmicGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.free-pack-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.free-pack-hero {
    width: 100%;
    padding: 0 2rem;
}

.gift-visual {
    position: relative;
    margin: 0 auto 3rem;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-main {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fbbf24 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 60px rgba(255, 215, 0, 0.8),
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: giftFloat 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

.gift-main::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 30px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.6);
}

.gift-main::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 170px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.6);
}

.gift-main i {
    font-size: 5rem;
    color: #7c2d12;
    z-index: 1;
    filter: drop-shadow(0 5px 10px rgba(124, 45, 18, 0.5));
    animation: giftIconPulse 2s ease-in-out infinite;
}

@keyframes giftFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    }
    50% {
        transform: translateY(-10px) rotateX(0deg) rotateY(10deg);
    }
    75% {
        transform: translateY(-20px) rotateX(-5deg) rotateY(5deg);
    }
}

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

.sparkle-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: sparkleRotate 15s linear infinite;
}

.sparkle {
    position: absolute;
    color: #fbbf24;
    font-size: 1.5rem;
    animation: sparkleGlow 2s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: 10%; left: 50%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 30%; right: 15%; animation-delay: 0.3s; }
.sparkle:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 0.6s; }
.sparkle:nth-child(4) { bottom: 10%; left: 50%; animation-delay: 0.9s; }
.sparkle:nth-child(5) { top: 50%; left: 10%; animation-delay: 1.2s; }
.sparkle:nth-child(6) { top: 50%; right: 10%; animation-delay: 1.5s; }

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

@keyframes sparkleGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.8);
        text-shadow: 0 0 5px currentColor;
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
        text-shadow: 0 0 20px currentColor, 0 0 30px currentColor;
    }
}

.explosion-ring {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 3px solid rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: explosionPulse 3s ease-in-out infinite;
}

.explosion-ring::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border: 2px solid rgba(255, 119, 198, 0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: explosionPulse 3s ease-in-out infinite 0.5s;
}

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

.free-pack-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 215, 0, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow:
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(255, 215, 0, 0.6),
            0 5px 15px rgba(0, 0, 0, 0.5);
    }
    100% {
        text-shadow:
            0 0 30px rgba(255, 255, 255, 1),
            0 0 60px rgba(255, 215, 0, 0.8),
            0 5px 20px rgba(0, 0, 0, 0.7);
    }
}

.highlight {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #fbbf24;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.8));
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.8));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(251, 191, 36, 1));
        transform: scale(1.05);
    }
}

.free-pack-description {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.value-comparison {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    margin: 3rem 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    font-size: 1.3rem;
    color: white;
}

.value-row.total {
    border-top: 2px solid rgba(255, 215, 0, 0.6);
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.value-row.total .price {
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
}

.original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-right: 1rem;
}

.savings-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    animation: savingsPulse 2s ease-in-out infinite;
}

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

.mega-cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff3838 100%);
    color: white;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 0 30px rgba(255, 107, 107, 0.6),
        0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: ctaGlow 3s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        box-shadow:
            0 0 30px rgba(255, 107, 107, 0.6),
            0 20px 40px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow:
            0 0 50px rgba(255, 107, 107, 0.8),
            0 20px 60px rgba(0, 0, 0, 0.4);
    }
}

.mega-cta::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.5s;
}

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

.mega-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 0 60px rgba(255, 107, 107, 0.8),
        0 30px 60px rgba(0, 0, 0, 0.4);
}

.mega-cta i {
    margin-left: 1rem;
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Price Breakdown Section */
.price-breakdown-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    padding: 6rem 0;
    position: relative;
}

.urgency-header {
    text-align: center;
    margin-bottom: 4rem;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    animation: urgencyPulse 2s ease-in-out infinite;
    margin-bottom: 2rem;
}

@keyframes urgencyPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(239, 68, 68, 0.6);
    }
}

.countdown-timer {
    color: white;
    font-family: 'Inter', sans-serif;
}

.timer-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.time-unit {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    min-width: 80px;
    text-align: center;
}

.time-number {
    display: block;
    font-size: 2rem;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
    animation: numberGlow 1s ease-in-out infinite alternate;
}

@keyframes numberGlow {
    0% { text-shadow: 0 0 15px rgba(251, 191, 36, 0.8); }
    100% { text-shadow: 0 0 25px rgba(251, 191, 36, 1); }
}

.time-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.timer-separator {
    font-size: 2rem;
    color: #fbbf24;
    font-weight: 700;
    animation: blink 1s linear infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.breakdown-content {
    max-width: 1200px;
    margin: 0 auto;
}

.breakdown-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.breakdown-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
}

.column-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    justify-content: center;
}

.column-title.special {
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.column-title i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.reports-column {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.report-price-list {
    space-y: 0.75rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

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

.report-name {
    font-size: 1rem;
}

.individual-price {
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
}

.subtotal-line,
.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 1.1rem;
}

.total-line {
    border-top: 3px solid var(--accent-color);
    font-size: 1.3rem;
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
}

.comparison-column {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.vs-divider {
    position: relative;
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 0 30px rgba(102, 102, 241, 0.6);
    animation: vsRotate 4s linear infinite;
}

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

.offer-column {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ef4444 100%);
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ef4444 100%); }
    50% { background: linear-gradient(135deg, #ef4444 0%, #f59e0b 50%, #fbbf24 100%); }
}

.mega-offer {
    position: relative;
    z-index: 2;
}

.strike-through {
    position: relative;
    margin-bottom: 1rem;
}

.original-total {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.strike-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #ef4444;
    transform: translateY(-50%) rotate(-5deg);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
    animation: strikeGlow 2s ease-in-out infinite;
}

@keyframes strikeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(239, 68, 68, 0.8); }
    50% { box-shadow: 0 0 20px rgba(239, 68, 68, 1); }
}

.final-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.final-price .currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.final-price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
    animation: priceGlow 3s ease-in-out infinite alternate;
}

@keyframes priceGlow {
    0% { text-shadow: 0 0 30px rgba(251, 191, 36, 0.8); }
    100% { text-shadow: 0 0 50px rgba(251, 191, 36, 1); }
}

.final-price .period {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.savings-percentage {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    margin: 1rem 0;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    animation: savingsShake 2s ease-in-out infinite;
}

@keyframes savingsShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
}

.savings-amount {
    font-size: 1.2rem;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bonus-reminder {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 2rem;
    animation: bonusPulse 2s ease-in-out infinite;
}

@keyframes bonusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.urgent-cta {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 0 30px rgba(239, 68, 68, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: urgentGlow 2s ease-in-out infinite alternate;
}

@keyframes urgentGlow {
    0% {
        box-shadow:
            0 0 30px rgba(239, 68, 68, 0.6),
            0 10px 30px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow:
            0 0 50px rgba(239, 68, 68, 0.8),
            0 15px 40px rgba(0, 0, 0, 0.4);
    }
}

.urgent-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 0 60px rgba(239, 68, 68, 0.8),
        0 20px 50px rgba(0, 0, 0, 0.4);
}

.urgent-cta i {
    margin-left: 0.75rem;
    animation: boltFlash 1.5s ease-in-out infinite;
}

@keyframes boltFlash {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.urgency-footer {
    margin-top: 3rem;
    text-align: center;
}

.urgency-warning {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 15px;
    padding: 1rem 2rem;
    color: #fca5a5;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.urgency-warning i {
    color: #ef4444;
    font-size: 1.2rem;
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { color: #ef4444; }
    50% { color: #fca5a5; }
}

/* Future Updates Section */
.future-updates-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 6rem 0;
    position: relative;
}

.updates-header {
    text-align: center;
    margin-bottom: 4rem;
}

.infinity-symbol {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: infinityGlow 3s ease-in-out infinite alternate;
}

.infinity-symbol i {
    font-size: 3rem;
    color: white;
    animation: infinitySpin 8s linear infinite;
}

@keyframes infinityGlow {
    0% {
        box-shadow: 0 0 30px rgba(102, 102, 241, 0.6);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 50px rgba(102, 102, 241, 0.9);
        transform: scale(1.05);
    }
}

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

.updates-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.subtitle-accent {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-top: 0.5rem;
}

.updates-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.updates-content {
    max-width: 1200px;
    margin: 0 auto;
}

.no-recurring-promise {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.promise-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
    animation: promisePulse 3s ease-in-out infinite;
    position: relative;
}

.promise-badge.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.promise-badge.clickable:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.promise-badge.clickable:active {
    transform: translateY(-2px) scale(1.01);
}

.badge-cta {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: all 0.3s ease;
}

.promise-badge.clickable:hover .badge-cta {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.badge-cta i {
    font-size: 1.2rem !important;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

@keyframes promisePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 20px 50px rgba(16, 185, 129, 0.4);
    }
}

.promise-badge i {
    font-size: 2rem;
}

.promise-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.promise-text span {
    font-size: 1rem;
    opacity: 0.9;
}

.updates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .updates-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.timeline-column {
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.timeline-header {
    margin-bottom: 2rem;
}

.timeline-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.timeline-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.compact-timeline {
    position: relative;
    flex: 1;
}

.compact-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color), var(--accent-color));
    animation: timelineGlow 4s ease-in-out infinite alternate;
}

@keyframes timelineGlow {
    0% { box-shadow: 0 0 10px var(--primary-color); }
    100% { box-shadow: 0 0 20px var(--accent-color); }
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    left: 6px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 102, 241, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(102, 102, 241, 0);
    }
}

.timeline-item.active .timeline-dot {
    background: var(--primary-color);
    border-color: #fbbf24;
    animation: activeDotGlow 2s ease-in-out infinite alternate;
}

@keyframes activeDotGlow {
    0% { box-shadow: 0 0 15px var(--primary-color); }
    100% { box-shadow: 0 0 25px #fbbf24; }
}

.timeline-item.infinite .infinity-dot {
    background: var(--gradient-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    left: 4px;
    animation: infinityDotSpin 4s linear infinite;
}

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

.infinity-dot i {
    font-size: 0.8rem;
    color: white;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.value-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: fit-content;
}

.value-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 102, 241, 0.2);
}

.value-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value-card i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.value-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.timeline-date {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-pill {
    background: rgba(102, 102, 241, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(102, 102, 241, 0.3);
}

.infinite-promise {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-color);
    font-weight: 600;
    font-style: italic;
}

.infinite-promise i {
    animation: rocketLaunch 2s ease-in-out infinite;
}

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

.value-projection {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.projection-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(102, 102, 241, 0.1) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.projection-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

.value-calculation {
    margin-bottom: 2rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.calc-row:last-child {
    border-bottom: none;
}

.value {
    font-weight: 600;
    color: white;
}

.calc-total {
    border-top: 2px solid var(--accent-color);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.total-value {
    font-size: 1.5rem;
    color: #fbbf24;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.your-price {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 15px;
    padding: 1rem;
    margin-top: 1rem;
}

.final-value {
    font-size: 1.8rem;
    color: #10b981;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
}

.lifetime-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 1rem;
}

.lifetime-badge i {
    font-size: 1.2rem;
    animation: crownShine 3s ease-in-out infinite;
}

@keyframes crownShine {
    0%, 100% { color: var(--accent-color); }
    50% { color: #fbbf24; }
}

.updates-cta {
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.future-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(102, 102, 241, 0.4);
    animation: futureCTAGlow 3s ease-in-out infinite alternate;
}

@keyframes futureCTAGlow {
    0% {
        box-shadow: 0 0 40px rgba(102, 102, 241, 0.4);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 60px rgba(102, 102, 241, 0.6);
        transform: scale(1.02);
    }
}

.future-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 80px rgba(102, 102, 241, 0.8);
}

.cta-main {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cta-sub {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.future-cta i {
    margin-left: 1rem;
    animation: arrowSlide 1.5s ease-in-out infinite;
}

@keyframes arrowSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-secondary);
}

.pricing-content {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.price-header {
    margin-bottom: 2rem;
}

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

.currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.period {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.price-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.bonus-offer {
    background: var(--gradient-secondary);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.bonus-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.bonus-text {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.features-list i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.payment-methods {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.payment-icons i {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background:
        linear-gradient(rgba(15, 15, 35, 0.85), rgba(15, 15, 35, 0.85)),
        url('https://images.unsplash.com/photo-1614313913007-2b4ae8ce32d6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80') center/cover,
        url('https://images.unsplash.com/photo-1446776653964-20c1d3a81b06?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(102, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(138, 43, 226, 0.06) 0%, transparent 50%);
    animation: cosmicFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes cosmicFloat {
    0% { transform: rotate(0deg) translate(-50px) rotate(0deg); }
    100% { transform: rotate(360deg) translate(-50px) rotate(-360deg); }
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.faq-section .section-title,
.faq-section .section-subtitle {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.faq-item {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(102, 102, 241, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(102, 102, 241, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 250px;
    max-width: 250px;
    flex-shrink: 0;
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(102, 102, 241, 0.2);
    transform: translateY(-5px);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--text-primary);
    display: block;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-card);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--text-muted);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

.close:hover {
    color: var(--text-primary);
}

.modal-header {
    background: var(--gradient-primary);
    padding: 2rem;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.modal-body {
    padding: 2rem;
}

.order-summary {
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.order-summary h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.order-bonus {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 500;
    margin: 1rem 0;
}

.order-total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.checkout-form h3,
.checkout-form h4 {
    margin: 2rem 0 1rem 0;
    color: var(--text-primary);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 102, 241, 0.1);
}

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

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.paypal-btn {
    background: #0070ba;
    color: white;
}

.stripe-btn {
    background: #635bff;
    color: white;
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

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

    /* Show portal button on mobile as floating button */
    .portal-btn {
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        z-index: 1000 !important;
        display: flex !important;
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
        border-radius: 20px !important;
    }

    .portal-btn span {
        display: none !important;
    }

    .portal-btn i {
        font-size: 1.2rem !important;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .reports-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gift-visual {
        width: 250px;
        height: 250px;
    }

    .gift-main {
        width: 150px;
        height: 150px;
    }

    .gift-main i {
        font-size: 3.5rem;
    }

    .gift-main::before {
        width: 170px;
        height: 25px;
    }

    .gift-main::after {
        width: 25px;
        height: 125px;
    }

    .explosion-ring {
        width: 200px;
        height: 200px;
    }

    .explosion-ring::before {
        width: 220px;
        height: 220px;
    }

    .value-comparison {
        padding: 1.5rem;
    }

    .value-row {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .value-row.total {
        font-size: 1.5rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .time-unit {
        min-width: 70px;
        padding: 0.75rem;
    }

    .time-number {
        font-size: 1.5rem;
    }

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

    .comparison-column {
        display: none;
    }

    .reports-column,
    .offer-column {
        padding: 1.5rem;
    }

    .final-price .amount {
        font-size: 3rem;
    }

    .promise-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 2rem;
        gap: 0.75rem;
    }

    .badge-cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-dot {
        left: 3px;
        width: 20px;
        height: 20px;
    }

    .timeline-item.infinite .infinity-dot {
        left: 0px;
        width: 26px;
        height: 26px;
    }

    .projection-card {
        padding: 2rem;
        margin: 0 1rem;
    }

    .calc-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .testimonials-wrapper {
        margin: 0 2rem;
    }

    .testimonial-nav {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .testimonials-container {
        margin-top: 2rem;
    }

    .testimonials-track {
        gap: 1rem;
    }

    .testimonial-card {
        width: 280px;
        max-width: 280px;
        padding: 1.25rem;
    }

    .testimonial-dots {
        display: none; /* Hide dots on mobile, show all 8 testimonials individually */
    }

    .astro-path {
        flex-direction: column;
        gap: 2rem;
    }

    .cosmic-line {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .planet-icon {
        width: 80px;
        height: 80px;
    }

    .planet-icon i {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .payment-options {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 1rem 0;
    }

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

    .report-card {
        padding: 1.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

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

.report-card {
    animation: fadeInUp 0.6s ease forwards;
}

.report-card:nth-child(1) { animation-delay: 0.1s; }
.report-card:nth-child(2) { animation-delay: 0.2s; }
.report-card:nth-child(3) { animation-delay: 0.3s; }
.report-card:nth-child(4) { animation-delay: 0.4s; }
.report-card:nth-child(5) { animation-delay: 0.5s; }
.report-card:nth-child(6) { animation-delay: 0.6s; }
.report-card:nth-child(7) { animation-delay: 0.7s; }
.report-card:nth-child(8) { animation-delay: 0.8s; }
.report-card:nth-child(9) { animation-delay: 0.9s; }

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 3rem 0 1rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(102, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-section h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-brand i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

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

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

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

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

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    padding: 0.75rem 1rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 102, 241, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-copyright {
    color: var(--text-secondary);
}

.footer-security {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* Modal Enhancements */
.modal-large {
    max-width: 800px;
    width: 90%;
}

.contact-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(102, 102, 241, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 102, 241, 0.4);
}

.policy-content {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 1rem;
}

.policy-content h3 {
    color: var(--accent-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content h3:first-child {
    margin-top: 0;
}

.policy-content p,
.policy-content li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.policy-content ul,
.policy-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .modal-large {
        width: 95%;
        max-width: none;
    }

    .policy-content {
        max-height: 300px;
    }
}
/* View Sample Button - Premium CTA */
.view-sample-btn {
    margin-top: 20px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 25px -5px rgba(16, 185, 129, 0.5),
        0 6px 10px -5px rgba(5, 150, 105, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-transform: none;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
}

/* Animated gradient background */
.view-sample-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Shimmer overlay */
.view-sample-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.view-sample-btn:hover::before {
    opacity: 1;
}

.view-sample-btn:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.view-sample-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 20px 40px -10px rgba(16, 185, 129, 0.6),
        0 10px 20px -5px rgba(5, 150, 105, 0.5),
        0 0 30px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.view-sample-btn:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        0 10px 20px -5px rgba(16, 185, 129, 0.5),
        0 6px 10px -5px rgba(5, 150, 105, 0.4);
}

.view-sample-btn i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.view-sample-btn:hover i {
    transform: scale(1.15) rotate(-10deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.view-sample-btn span {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Report Sample Modal - extends base .modal */
.modal-report {
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    height: 90vh;
}

.modal-body-report {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding: 0;
    height: calc(90vh - 100px);
}

.report-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: white;
}

.report-loading i {
    font-size: 3rem;
    color: #6666f1;
}

.report-loading p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.report-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: white;
    padding: 40px;
    color: #2c3e50;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Styles for report content inside modal */
.report-content .NAME {
    color: #6666f1 !important;
    font-weight: 700;
}

.report-content h2,
.report-content h3 {
    color: #6666f1 !important;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.report-content h2 {
    font-size: 1.5rem;
    padding-bottom: 12px;
    border-bottom: 2px solid #ecf0f1;
}

.report-content h3 {
    font-size: 1.25rem;
}

.report-content p {
    margin-bottom: 18px;
    text-align: justify;
    color: #444 !important;
    line-height: 1.8;
}

.report-content CENTER,
.report-content center {
    text-align: center;
    display: block;
    margin: 10px 0;
    color: #2c3e50 !important;
}

.report-content FONT,
.report-content font {
    font-family: inherit;
    color: #2c3e50 !important;
}

.report-content B,
.report-content b,
.report-content STRONG,
.report-content strong {
    font-weight: 600;
    color: #2c3e50 !important;
}

.report-content BR,
.report-content br {
    display: block;
    content: "";
    margin-top: 8px;
}

/* Ensure all text is visible */
.report-content * {
    color: inherit;
}

.report-content div,
.report-content span {
    color: #2c3e50;
}

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

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .report-modal-content {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }

    .report-modal-header {
        padding: 15px 20px;
        border-radius: 0;
    }

    .report-modal-header h3 {
        font-size: 1.2rem;
    }
}
