/* Enhanced Dopamine Reset Sales Page - Redesigned Styles */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Floating Background Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    animation: float 20s infinite ease-in-out;
}

.floating-circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
    animation-delay: 0s;
}

.floating-circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: -100px;
    animation-delay: 7s;
}

.floating-circle-3 {
    width: 150px;
    height: 150px;
    top: 80%;
    right: 10%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title-enhanced {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1a202c;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title-white {
    color: white;
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.section-subtitle-white {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Enhanced Hero Section */
.hero-enhanced {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-content-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: slideInDown 0.8s ease-out;
}

.hero-title-enhanced {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-enhanced {
    font-size: 1.4rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-weight: 400;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 3rem;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 24px;
    height: 24px;
}

.hero-feature span {
    font-weight: 500;
    color: #2d3748;
    font-size: 0.9rem;
}

.hero-cta-enhanced {
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.cta-button-enhanced {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.cta-button-enhanced.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-button-enhanced.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.cta-button-enhanced.primary:active {
    transform: translateY(-1px);
}

.cta-text {
    flex: 1;
}

.cta-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-left: 15px;
}

.cta-guarantee {
    margin-top: 1rem;
    color: #718096;
    font-size: 0.9rem;
    text-align: center;
}

.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: #2d3748;
    backdrop-filter: blur(10px);
}

/* Problem Section with Zigzag Layout */
.problem-section-enhanced {
    padding: 120px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
}

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

.zigzag-content {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

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

.content-block.right-content {
    direction: rtl;
}

.content-block.right-content > * {
    direction: ltr;
}

.content-text h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: scale(1.05);
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Enhanced Solution Section */
.solution-section-enhanced {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.solution-header {
    text-align: center;
    margin-bottom: 80px;
}

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

.benefit-card-enhanced {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.benefit-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.benefit-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.benefit-card-enhanced:hover .benefit-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon-large img {
    width: 60px;
    height: 60px;
}

.benefit-card-enhanced h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.benefit-card-enhanced p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefit-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
}

/* Enhanced Features Section */
.features-section-enhanced {
    padding: 120px 0;
    background: #ffffff;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.feature-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.feature-content h3 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.feature-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    color: #4a5568;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f7fafc;
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .feature-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

/* Enhanced Transformation Section */
.transformation-section-enhanced {
    padding: 120px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.transformation-header {
    text-align: center;
    margin-bottom: 80px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.before-state, .after-state {
    text-align: center;
}

.before-state h3, .after-state h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.before-state h3 {
    color: #e53e3e;
}

.after-state h3 {
    color: #38a169;
}

.state-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.state-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 500;
}

.state-item.negative {
    background: rgba(229, 62, 62, 0.1);
    color: #e53e3e;
}

.state-item.positive {
    background: rgba(56, 161, 105, 0.1);
    color: #38a169;
}

.state-icon {
    font-size: 1.5rem;
}

.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.arrow-graphic {
    font-size: 3rem;
    color: #667eea;
    font-weight: bold;
}

.transformation-arrow span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Enhanced Testimonials Section */
.testimonials-section-enhanced {
    padding: 120px 0;
    background: #ffffff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card-enhanced {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card-enhanced.featured {
    transform: scale(1.05);
    border: 2px solid #667eea;
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.testimonial-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-card-enhanced blockquote {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-card-enhanced blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #667eea;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info strong {
    color: #2d3748;
    font-size: 1.1rem;
    display: block;
}

.author-info span {
    color: #718096;
    font-size: 0.9rem;
}

/* Enhanced Final CTA Section */
.final-cta-enhanced {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    position: relative;
    overflow: hidden;
}

.cta-content-enhanced {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-urgency-badge {
    display: inline-block;
    background: #e53e3e;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

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

.cta-title-enhanced {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.cta-description-enhanced {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-offer {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.price-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 10px;
}

.price-amount {
    display: block;
    color: white;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cta-buttons-enhanced {
    margin-bottom: 2rem;
}

.cta-button-enhanced.large {
    padding: 25px 50px;
    font-size: 1.4rem;
    min-width: 350px;
}

.cta-arrow {
    font-size: 1.6rem;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.guarantee-icon {
    color: #48bb78;
    font-weight: bold;
}

/* Enhanced Footer */
.footer-enhanced {
    background: #1a202c;
    color: white;
    padding: 60px 0 30px;
}

.footer-content-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-enhanced {
        gap: 60px;
    }
    
    .content-block {
        gap: 40px;
    }
    
    .feature-main {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hero-content-enhanced,
    .content-block,
    .feature-main,
    .before-after {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-block.right-content {
        direction: ltr;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-feature {
        justify-content: center;
    }
    
    .benefits-grid-enhanced,
    .features-grid,
    .testimonials-carousel {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-guarantees {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content-enhanced {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .transformation-arrow .arrow-graphic {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-enhanced,
    .problem-section-enhanced,
    .solution-section-enhanced,
    .features-section-enhanced,
    .transformation-section-enhanced,
    .testimonials-section-enhanced,
    .final-cta-enhanced {
        padding: 80px 0;
    }
    
    .cta-button-enhanced {
        min-width: auto;
        width: 100%;
    }
    
    .cta-button-enhanced.large {
        min-width: auto;
        padding: 20px 30px;
        font-size: 1.2rem;
    }
    
    .benefit-card-enhanced,
    .testimonial-card-enhanced {
        padding: 30px 20px;
    }
    
    .cta-offer {
        padding: 30px 20px;
    }
    
    .testimonial-card-enhanced.featured {
        transform: none;
    }
}

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

/* Focus states for accessibility */
.cta-button-enhanced:focus,
.footer-links a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cta-button-enhanced.primary {
        border: 2px solid #000;
    }
    
    .benefit-card-enhanced,
    .testimonial-card-enhanced,
    .feature-card {
        border: 1px solid #000;
    }
}

