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

:root {
    --primary-color: #ff4757;
    --primary-dark: #ff3838;
    --secondary-color: #2c3e50;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --background: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --success: #27ae60;
    --warning: #f39c12;
    --error: #e74c3c;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 30px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(255, 71, 87, 0.3);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #ff4757 0%, #ff3838 50%, #ff6b7a 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #ffa0c9 75%, #ff4757 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 71, 87, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: floatingGradient 15s ease-in-out infinite;
}

@keyframes floatingGradient {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -20px) rotate(120deg); }
    66% { transform: translate(20px, -10px) rotate(240deg); }
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

/* CTA Navigation Button */
.cta-nav-button {
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    overflow: hidden;
}

.cta-nav-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-nav-button:hover::before {
    left: 100%;
}

.cta-nav-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-glow);
    color: white;
}

.nav-button-text {
    font-size: 1.2rem;
    font-weight: 800;
}

.nav-button-subtext {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-hero);
    opacity: 0.1;
    animation: heroBackground 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroBackground {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-30px, 30px) rotate(180deg) scale(1.1); }
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: lineGrow 2s ease-out;
}

@keyframes lineGrow {
    from { width: 0; opacity: 0; }
    to { width: 100px; opacity: 1; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.feature-icon {
    color: var(--success);
    margin-right: 0.75rem;
    font-weight: bold;
}

.cta-section {
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.button-arrow {
    transition: var(--transition);
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.cta-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
    transition: var(--transition);
    animation: floatImage 6s ease-in-out infinite;
}

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

.hero-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-glow);
}

/* Deals Section */
.deals-section {
    padding: 80px 0;
    background: var(--background);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.deal-card {
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

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

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

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

.deal-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff5f3 0%, #ffffff 100%);
}

.deal-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    animation: pulse 2s infinite;
}

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

.deal-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.deal-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1rem;
}

.price-new {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-detail {
    display: block;
    font-size: 0.9rem;
    color: var(--success);
    font-weight: 500;
    margin-top: 0.25rem;
}

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

.deal-discount {
    background: var(--success);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.deal-features {
    list-style: none;
    margin-bottom: 2rem;
}

.deal-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.deal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.deal-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.deal-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.forever-benefits {
    margin: 3rem 0;
}

.forever-benefits h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.price-comparison-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f3 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

.price-comparison-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.old-price-new, .new-price-highlight {
    text-align: center;
}

.old-price-new .price-amount {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price-highlight .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(255, 71, 87, 0.3);
}

.savings-new {
    font-size: 1.2rem;
    color: var(--success);
    font-weight: 600;
}

.final-cta {
    text-align: center;
    margin-top: 3rem;
}

.main-cta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: var(--shadow);
    }
    50% { 
        transform: scale(1.02); 
        box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3);
    }
}

.main-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.urgency-note {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.about-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.pricing-options {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f3 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

.pricing-options h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pricing-options ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-options li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.pricing-options li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.review-highlights {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.review-highlights h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.review-highlights p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* About Section */
.about-section {
    padding: 40px 0 80px;
    background: var(--light-gray);
}

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

.about-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--background);
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-stars {
    color: var(--warning);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.testimonial-author {
    color: var(--text-primary);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    padding: 1.5rem;
    max-width: 350px;
    z-index: 10000;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--success);
    color: white;
}

.cookie-accept:hover {
    background: #229954;
}

.cookie-decline {
    background: #e74c3c;
    color: white;
}

.cookie-decline:hover {
    background: #c0392b;
}

.hero-urgency {
    margin-bottom: 2.5rem;
}

.urgency-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    animation: urgencyPulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow); }
    50% { transform: scale(1.05); box-shadow: var(--shadow-glow); }
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.urgency-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

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

/* Lifetime Deal Section */
.lifetime-deal-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
}

.lifetime-deal-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-hover);
    border: 3px solid var(--primary-color);
}

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

.scarcity-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.deal-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.deal-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-section {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

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

.old-price, .new-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
}

.old-price .price-amount {
    color: var(--text-secondary);
    text-decoration: line-through;
}

.new-price .price-amount {
    color: var(--primary-color);
}

.arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.savings {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--success);
    background: rgba(39, 174, 96, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
}

.benefits-list {
    text-align: left;
    margin: 2rem 0;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.benefits-list h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.benefit-item:hover .benefit-icon {
    animation: iconSpin 0.5s ease;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.benefit-text {
    color: var(--text-secondary);
    line-height: 1.5;
}

.urgency-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-radius: var(--border-radius);
    border: 2px solid #e17055;
}

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

.countdown-label {
    font-weight: 600;
    color: var(--text-primary);
}

.countdown-time {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.urgency-text {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

.lifetime-cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: var(--border-radius);
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.lifetime-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.cta-main-text {
    font-size: 1.4rem;
    font-weight: 800;
}

.cta-sub-text {
    font-size: 1rem;
    opacity: 0.9;
}

.guarantee-text {
    color: var(--success);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.social-proof {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.proof-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.proof-subtext {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Simple Footer */
.footer-simple {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-simple p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .cta-nav-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero::before {
        display: none; /* Disable complex animations on mobile */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-img {
        max-width: 100%;
        height: auto;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
    }
    
    .lifetime-deal-content {
        padding: 2rem 1.5rem;
    }
    
    .about-description {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .about-description p {
        font-size: 1rem;
    }
    
    .pricing-options {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .pricing-options li {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    .review-highlights {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .price-comparison-new {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .main-cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .price-comparison-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .new-price-highlight .price-amount {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-consent {
        left: 20px;
        right: 20px;
        max-width: none;
        bottom: 10px;
    }
    
    /* Disable particles on mobile for performance */
    .particle {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .deal-card {
        padding: 1.5rem;
    }
    
    .price-new {
        font-size: 1.5rem;
    }
    
    .urgency-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .lifetime-cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Add smooth scrolling for better UX */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
}

/* Loading states and smooth transitions */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth transitions for all interactive elements */
a, button, .deal-card, .benefit-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus styles for accessibility */
a:focus, button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
    
    .cta-button, .cta-nav-button {
        border: 2px solid var(--text-primary);
    }
}