/* CSS Variables */
:root {
    --lime-green: #C1D943;
    --lips-red: #C21E26;
    --dark-gray: #2F2F2F;
    --light-gray: #f8f9fa;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 0;
    text-align: center;
}

.logo {
    margin-bottom: 40px;
}

.logo-img {
    height: 80px;
    width: auto;
}

.main-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.lips-text {
    font-family: 'Dancing Script', cursive;
    color: var(--lips-red);
    font-size: 4.5rem;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--lime-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.signature {
    font-size: 1.8rem;
    color: var(--lips-red);
    font-weight: 700;
    margin-bottom: 30px;
}

.description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
}

.highlight {
    color: var(--lips-red);
    font-weight: 600;
}

.cta-button {
    background: var(--lime-green);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #a8c234;
    transform: translateY(-2px);
}

/* Quote Section */
.quote-section {
    background: var(--lips-red);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quote-footer {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Transformation Section */
.transformation-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.transformation-column {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.column-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.de {
    color: var(--lips-red);
}

.para {
    color: var(--lime-green);
}

.transformation-list {
    list-style: none;
}

.transformation-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
}

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

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Target Section */
.target-section {
    padding: 80px 0;
    background: white;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.target-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.target-card:hover {
    border-color: var(--lime-green);
}

.target-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.target-card p {
    color: #666;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: var(--lips-red);
    color: white;
    text-align: center;
}

.results-section .section-title,
.results-section .section-subtitle {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    text-align: center;
}

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

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

.before-after-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
}

.before-after-img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

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

.about-image {
    text-align: center;
}

.doctor-img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.about-text h3 {
    font-size: 1.3rem;
    color: var(--lips-red);
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

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

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.module-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.module-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.module-number {
    width: 40px;
    height: 40px;
    background: var(--lime-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.module-number.red {
    background: var(--lips-red);
}

.module-number.dark {
    background: var(--dark-gray);
}

.module-header h3 {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.module-content {
    list-style: none;
}

.module-content li {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
}

.technique-card {
    border: 2px solid var(--lips-red);
}

.exclusive-card {
    border: 2px solid var(--lips-red);
    position: relative;
}

.exclusive-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--lips-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.video-content {
    display: flex;
    align-items: center;
    color: var(--lime-green);
    font-weight: 600;
}

.video-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

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

.testimonial-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: #e9ecef;
    border-radius: 10px;
    color: #666;
}

.video-placeholder .video-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--lips-red);
}

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

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

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

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

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin: 0;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--lime-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.faq-answer {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.6;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: white;
}

.offer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.offer-items {
    margin-bottom: 40px;
}

.offer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.offer-item h3 {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.offer-total {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
}

.total-original {
    margin-bottom: 20px;
}

.crossed-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
}

.final-price {
    margin-bottom: 30px;
}

.price-label {
    display: block;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
}

.price-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--lips-red);
}

.final-cta-button {
    background: var(--lips-red);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.final-cta-button:hover {
    background: #a01a20;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 40px 0;
    text-align: center;
}

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

.footer-logo {
    height: 60px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .lips-text {
        font-size: 3rem;
    }
    
    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .target-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .before-after-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .offer-items {
        gap: 15px;
    }
    
    .offer-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .lips-text {
        font-size: 2.5rem;
    }
    
    .before-after-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Fix for horizontal overflow */
.section {
    width: 100%;
    overflow-x: hidden;
}

.before-after-gallery,
.modules-grid,
.benefits-grid,
.target-grid,
.testimonials-grid,
.stats-grid,
.transformation-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.before-after-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Fix modal responsiveness */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 20px;
    }
}

