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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fdfdfd;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary: #ff6b9d;
    --secondary: #4ecdc4;
    --accent: #a8e6cf;
    --foreground: #2c3e50;
    --background: #fdfdfd;
    --muted: #95a5a6;
    --white: #ffffff;
    --black: #000000;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo i {
    margin-right: 0.5rem;
}

.header-cta-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.header-cta-btn:hover {
    background: #e55a89;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.btn-primary {
    background: var(--accent);
    color: var(--foreground);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.btn-primary:hover {
    background: #95d9b8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 230, 207, 0.4);
}

.guarantee-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent);
    color: var(--foreground);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

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

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: rgba(168, 230, 207, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.benefit-icon.primary {
    background: rgba(255, 107, 157, 0.1);
    color: var(--primary);
}

.benefit-icon.secondary {
    background: rgba(78, 205, 196, 0.1);
    color: var(--secondary);
}

.benefit-icon.accent {
    background: rgba(168, 230, 207, 0.1);
    color: #2d8659;
}

.benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.benefit-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Course Content Section */
.course-content {
    padding: 4rem 0;
    background: var(--background);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

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

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

.module-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.module-content {
    padding: 1.5rem;
}

.module-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.module-content p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.module-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: rgba(78, 205, 196, 0.1);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary);
}

.testimonial-info h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--muted);
    font-size: 0.9rem;
}

.testimonial-stars {
    margin-bottom: 1rem;
    color: #ffd700;
}

.testimonial-quote {
    color: var(--foreground);
    font-style: italic;
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee {
    padding: 3rem 0;
    background: rgba(168, 230, 207, 0.2);
}

.guarantee-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-simple {
    text-align: center;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.5rem;
    color: var(--foreground);
}

.guarantee-simple h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.guarantee-simple p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.guarantee-mini-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.guarantee-mini-features div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.guarantee-mini-features i {
    color: var(--secondary);
    font-size: 1rem;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(50%, 50%);
}

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

.final-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.stats-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    opacity: 0.8;
    font-size: 0.95rem;
}

.pricing {
    text-align: center;
}

.old-price {
    font-size: 1.1rem;
    opacity: 0.8;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.new-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.btn-final-cta {
    background: var(--accent);
    color: var(--foreground);
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 6px 25px rgba(168, 230, 207, 0.4);
    margin-bottom: 1rem;
}

.btn-final-cta:hover {
    background: #95d9b8;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 230, 207, 0.5);
}

.security-text {
    font-size: 0.9rem;
    opacity: 0.75;
}


/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 0 1rem;
}

.floating-cta-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    animation: pulse 2s infinite;
}

.floating-cta-btn:hover {
    background: #e55a89;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.5);
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 6px 25px rgba(255, 107, 157, 0.6);
    }
}

/* Global Mobile Fixes */
img {
    max-width: 100%;
    height: auto;
}

section, div, header, footer {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .header-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 0.75rem 0;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .header-cta-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border-radius: 20px;
    }
    
    .hero {
        padding: 5rem 0 2rem;
        overflow-x: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .hero-buttons {
        align-items: center;
        gap: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: auto;
        max-width: 280px;
        min-width: 200px;
        word-wrap: break-word;
        text-align: center;
    }
    
    .hero-image {
        padding: 0 10px;
    }
    
    .hero-img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        top: -5px;
        right: -5px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        padding: 0 10px;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .module-card {
        margin: 0 10px;
        max-width: 100%;
    }
    
    .module-card img {
        height: 180px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 1.5rem;
    }
    
    .guarantee-card {
        margin: 0 10px;
        padding: 2rem;
    }
    
    .guarantee-mini-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .final-cta {
        padding: 3rem 0;
        overflow-x: hidden;
    }
    
    .final-cta-content {
        padding: 0 15px;
    }
    
    .final-cta h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .stats-box {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0 10px 2rem 10px;
        padding: 1.5rem;
    }
    
    .new-price {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-final-cta {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        max-width: 85%;
        width: 85%;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.1;
        text-align: center;
        box-sizing: border-box;
        margin: 0 auto;
        display: block;
    }
    
    .security-text {
        padding: 0 15px;
        font-size: 0.85rem;
    }
    
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header-content {
        padding: 0.5rem 0;
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .header-cta-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        max-width: 130px;
        border-radius: 18px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        padding: 0 5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .btn-primary {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        max-width: 260px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        padding: 0 5px;
    }
    
    .section-header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .benefit-card {
        padding: 1.25rem;
        margin: 0 5px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .module-card {
        margin: 0 5px;
    }
    
    .module-card img {
        height: 160px;
    }
    
    .testimonial-card {
        margin: 0 5px;
        padding: 1.25rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .guarantee-card {
        margin: 0 5px;
        padding: 1.5rem;
    }
    
    .guarantee-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .final-cta h2 {
        font-size: 1.75rem;
        padding: 0 5px;
    }
    
    .final-cta p {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .stats-box {
        margin: 0 5px 1.5rem 5px;
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .new-price {
        font-size: 2.25rem;
    }
    
    .btn-final-cta {
        padding: 0.5rem 0.6rem;
        font-size: 0.7rem;
        max-width: 80%;
        width: 80%;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.0;
        text-align: center;
        box-sizing: border-box;
        margin: 0 auto;
        display: block;
    }
    
}

@media (max-width: 375px) {
    .header-content {
        padding: 0.4rem 0;
        gap: 0.4rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .header-cta-btn {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
        max-width: 110px;
        border-radius: 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .final-cta h2 {
        font-size: 1.5rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .btn-final-cta {
        font-size: 0.65rem;
        padding: 0.4rem 0.5rem;
        max-width: 75%;
        width: 75%;
        margin: 0 auto;
        display: block;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.0;
    }
    
    .stats-box {
        padding: 1rem;
    }
    
    .guarantee-card {
        padding: 1.25rem;
    }
}