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

body {
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Floating Notice */
.floating-notice {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.floating-notice .emoji {
    font-size: 18px;
    margin-right: 8px;
}

#countdown {
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 900;
}

/* Header */
.header {
    margin-top: 60px;
    background: #2c3e50;
    color: white;
    padding: 15px 0;
}

.alert-banner {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-image {
    margin: 40px 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section {
    margin: 40px 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.cta-button.large {
    font-size: 24px;
    padding: 25px 50px;
}

.cta-button small {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    text-transform: none;
}

.security-badges {
    max-width: 400px;
    margin: 20px auto;
    display: block;
}

.guarantee-text {
    font-size: 16px;
    margin-top: 15px;
    font-weight: 400;
}

/* Trust Seals */
.trust-seals {
    background: #f8f9fa;
    padding: 60px 0;
}

.seals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

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

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

.seal-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.seal h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.seal p {
    color: #666;
    font-size: 14px;
}

/* Projects Section */
.projects {
    padding: 60px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    line-height: 1.3;
}

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

.project-item {
    text-align: center;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px);
}

.project-item h3 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Course Content */
.course-content {
    background: #f8f9fa;
    padding: 60px 0;
}

.course-modules {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.module {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    align-items: center;
}

.module-image {
    flex: 0 0 200px;
    position: relative;
}

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

.testimonial-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.testimonial-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-content {
    flex: 1;
    padding: 30px;
}

.module-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.module-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.module-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.module-price {
    font-size: 16px;
    font-weight: 600;
    color: #e74c3c;
}

/* Enhanced Pricing Section */
.pricing-enhanced {
    padding: 40px 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #667eea);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    text-align: center;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.offer-header {
    margin-bottom: 25px;
}

.offer-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.offer-subtitle {
    font-size: 24px;
    font-weight: 600;
    opacity: 0.95;
}

.mega-offer-box {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    border: 4px solid #f7931e;
}

.offer-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
    padding: 12px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.badge-text {
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-content {
    padding: 40px 30px 30px 30px;
    color: #333;
}

.items-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.course-items,
.bonus-items {
    margin-bottom: 30px;
}

.bonus-title {
    font-size: 22px;
    font-weight: 700;
    color: #f7931e;
    margin: 40px 0 20px 0;
    text-align: center;
    background: linear-gradient(135deg, #fff3e0, #ffe0b3);
    padding: 15px;
    border-radius: 10px;
    border: 2px dashed #f7931e;
}

.offer-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
    transition: all 0.3s ease;
}

.offer-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.offer-item.bonus {
    background: linear-gradient(135deg, #fff8e1, #fff3c4);
    border-left: 4px solid #f7931e;
}

.check {
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.check.gold {
    font-size: 20px;
}

.item-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-details strong {
    font-size: 16px;
    color: #2c3e50;
}

.item-price {
    font-size: 14px;
    font-weight: 600;
    color: #e74c3c;
    text-decoration: line-through;
}

.bonus-price {
    color: #f7931e;
    text-decoration: none;
    font-weight: 700;
}

.total-value {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 40px 0;
}

.value-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #f7931e;
    font-size: 20px;
    font-weight: 700;
}

.total-price {
    color: #f7931e;
    font-size: 24px;
}

.offer-price {
    text-align: center;
    margin: 40px 0;
}

.discount-label {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.final-price {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin: 20px 0;
}

.currency {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.price-big {
    display: block;
    font-size: 64px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 10px 0;
}

.installments {
    display: block;
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.9;
}

.countdown-urgency {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0;
    animation: blink 1.5s ease-in-out infinite alternate;
}

@keyframes blink {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

#countdown-offer {
    font-weight: 900;
    font-size: 20px;
    background: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0 5px;
}

.cta-button-mega {
    display: block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    padding: 25px 40px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
    margin: 30px 0;
    border: none;
    cursor: pointer;
    animation: buttonPulse 3s ease-in-out infinite;
}

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

.cta-button-mega:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255,107,53,0.6);
}

.cta-button-mega small {
    display: block;
    font-size: 16px;
    margin-top: 8px;
    text-transform: none;
    font-weight: 600;
}

.guarantee-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #27ae60;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

.guarantee-box h4 {
    color: #27ae60;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.guarantee-box p {
    color: #2c3e50;
    font-size: 16px;
    margin: 0;
}

.security-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.security-item svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: white;
}

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

.testimonials-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Student Creations */
.student-creations {
    padding: 60px 0;
    background: #f8f9fa;
}

.creations-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

.creations-gallery a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.creations-gallery a:hover {
    transform: scale(1.05);
}

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

/* Creator Section */
.creator {
    padding: 60px 0;
    background: white;
}

.creator-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.creator-image {
    flex: 0 0 300px;
}

.creator-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.creator-info {
    flex: 1;
}

.creator-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.creator-info p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

/* Bonus Section */
.bonus {
    padding: 60px 0;
    background: #f8f9fa;
}

.bonus-items {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 50px;
}

.bonus-item {
    display: flex;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.bonus-image {
    flex: 0 0 250px;
}

.bonus-image img {
    width: 100%;
    border-radius: 15px;
}

.bonus-content {
    flex: 1;
}

.bonus-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.bonus-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

.bonus-content ul {
    list-style: none;
    padding: 0;
}

.bonus-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Final Testimonials */
.final-testimonials {
    padding: 60px 0;
    background: white;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #667eea;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.testimonial-image {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
}

/* Final Offer */
.final-offer {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
}

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

.offer-features {
    margin: 40px 0;
}

.offer-features ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.offer-features li {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.offer-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f7931e;
    font-weight: bold;
}

.final-offer-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin: 50px 0;
    text-align: left;
}

.offer-image {
    flex: 0 0 400px;
}

.offer-image img {
    width: 100%;
    border-radius: 15px;
}

.offer-modules {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-module {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.offer-module h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.offer-module p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.module-price {
    font-size: 16px;
    font-weight: 600;
    color: #f7931e;
}

.module-price.free {
    color: #27ae60;
    font-weight: 700;
}

.bonus-module {
    border: 2px solid #f7931e;
}

.final-pricing {
    margin: 40px 0;
}

.total-price {
    font-size: 20px;
    text-decoration: line-through;
    opacity: 0.8;
    margin-bottom: 10px;
}

.final-pricing .current-price {
    font-size: 42px;
    font-weight: 900;
    color: #f7931e;
}

/* Purchase Notification */
.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 15px 20px;
    z-index: 1000;
    transform: translateX(-120%);
    transition: all 0.5s ease;
    border-left: 5px solid #27ae60;
    max-width: 280px;
}

.purchase-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 24px;
    background: #27ae60;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.3;
    color: #333;
}

.notification-text strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.copyright {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-notice {
        font-size: 13px;
        padding: 10px 0;
        position: relative;
        top: 0;
    }
    
    .floating-notice .container {
        padding: 0 10px;
    }
    
    /* Enhanced Pricing Mobile */
    .pricing-enhanced {
        padding: 60px 0 40px 0;
    }
    
    .offer-title {
        font-size: 36px;
        line-height: 1.1;
    }
    
    .offer-subtitle {
        font-size: 18px;
    }
    
    .mega-offer-box {
        margin: 0 15px;
        border-radius: 15px;
        max-width: none;
    }
    
    .offer-content {
        padding: 40px 20px 25px 20px;
    }
    
    .items-title {
        font-size: 22px;
    }
    
    .bonus-title {
        font-size: 18px;
        padding: 12px;
    }
    
    .offer-item {
        padding: 15px;
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 10px;
    }
    
    .item-details {
        flex: 1;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .check {
        margin-right: 10px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .final-price {
        padding: 25px 20px;
    }
    
    .price-big {
        font-size: 48px;
    }
    
    .cta-button-mega {
        font-size: 20px;
        padding: 20px 30px;
        margin: 25px 0;
    }
    
    .guarantee-box {
        padding: 20px 15px;
    }
    
    .guarantee-box h4 {
        font-size: 18px;
    }
    
    .header {
        margin-top: 0;
    }
    
    .alert-banner {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 30px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 18px 25px;
        border-radius: 35px;
        display: block;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 20px auto;
    }
    
    .cta-button.large {
        font-size: 18px;
        padding: 20px 30px;
    }
    
    .security-badges {
        max-width: 300px;
    }
    
    .seals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .seal {
        padding: 20px 15px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .project-item h3 {
        font-size: 14px;
        padding: 15px 10px;
    }
    
    .project-item img {
        height: 180px;
    }
    
    .module {
        flex-direction: column;
        text-align: center;
    }
    
    .module-image {
        flex: none;
        width: 100%;
    }
    
    .module-content {
        padding: 20px;
    }
    
    .module-content h3 {
        font-size: 20px;
    }
    
    .pricing-box {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .current-price {
        font-size: 40px;
    }
    
    .creator-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .creator-image {
        flex: none;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .creator-info h3 {
        font-size: 24px;
    }
    
    .creator-info p {
        font-size: 16px;
    }
    
    .bonus-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }
    
    .bonus-image {
        flex: none;
        max-width: 180px;
        margin: 0 auto;
    }
    
    .bonus-content h3 {
        font-size: 22px;
    }
    
    .final-offer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .offer-image {
        flex: none;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .offer-modules {
        gap: 15px;
    }
    
    .offer-module {
        padding: 15px;
    }
    
    .security-icons {
        flex-direction: column;
        gap: 12px;
    }
    
    .testimonials-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .creations-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .creations-gallery img {
        height: 150px;
    }
    
    .purchase-notification {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
        margin: 0 auto;
    }
    
    .notification-content {
        gap: 10px;
    }
    
    .notification-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .notification-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .floating-notice {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .alert-banner {
        font-size: 13px;
    }
    
    /* Enhanced Pricing Mobile Small */
    .pricing-enhanced {
        padding: 40px 0 30px 0;
    }
    
    .offer-title {
        font-size: 28px;
    }
    
    .offer-subtitle {
        font-size: 16px;
    }
    
    .mega-offer-box {
        margin: 0 5px;
        border-radius: 15px;
    }
    
    .offer-content {
        padding: 40px 15px 25px 15px;
    }
    
    .items-title {
        font-size: 20px;
    }
    
    .bonus-title {
        font-size: 16px;
        padding: 10px;
    }
    
    .offer-item {
        padding: 10px 12px;
        margin-bottom: 8px;
    }
    
    .item-details strong {
        font-size: 15px;
    }
    
    .item-price,
    .bonus-price {
        font-size: 13px;
    }
    
    .total-value {
        padding: 20px 15px;
    }
    
    .value-line,
    .total-line {
        font-size: 14px;
    }
    
    .total-line {
        font-size: 16px;
    }
    
    .total-price {
        font-size: 20px;
    }
    
    .discount-label {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .final-price {
        padding: 20px 15px;
    }
    
    .currency {
        font-size: 14px;
    }
    
    .price-big {
        font-size: 42px;
    }
    
    .installments {
        font-size: 16px;
    }
    
    .countdown-urgency {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    #countdown-offer {
        font-size: 18px;
    }
    
    .cta-button-mega {
        font-size: 18px;
        padding: 18px 25px;
        margin: 20px 0;
    }
    
    .cta-button-mega small {
        font-size: 14px;
    }
    
    .guarantee-box {
        padding: 15px 12px;
    }
    
    .guarantee-box h4 {
        font-size: 16px;
    }
    
    .guarantee-box p {
        font-size: 14px;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .cta-button {
        font-size: 15px;
        padding: 16px 20px;
        border-radius: 30px;
    }
    
    .cta-button.large {
        font-size: 16px;
        padding: 18px 25px;
    }
    
    .seals-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .seal {
        padding: 20px;
    }
    
    .seal h3 {
        font-size: 16px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-item h3 {
        font-size: 16px;
        padding: 15px;
    }
    
    .project-item img {
        height: 220px;
    }
    
    .module-content {
        padding: 20px 15px;
    }
    
    .module-content h3 {
        font-size: 18px;
    }
    
    .pricing-box {
        padding: 25px 15px;
        margin: 0;
    }
    
    .current-price {
        font-size: 36px;
    }
    
    .final-pricing .current-price {
        font-size: 32px;
    }
    
    .creator-info h3 {
        font-size: 22px;
    }
    
    .creator-info p {
        font-size: 15px;
    }
    
    .bonus-item {
        padding: 25px 15px;
    }
    
    .bonus-content h3 {
        font-size: 20px;
    }
    
    .bonus-content p,
    .bonus-content li {
        font-size: 15px;
    }
    
    .offer-module h4 {
        font-size: 16px;
    }
    
    .offer-module p {
        font-size: 13px;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .creations-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .creations-gallery img {
        height: 120px;
    }
    
    .purchase-notification {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 12px 15px;
    }
    
    .notification-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .notification-text {
        font-size: 11px;
    }
}

/* Landscape orientation fixes for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .seals-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

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

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

.footer-link {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #f7931e;
}

.footer-copyright {
    color: #95a5a6;
    font-size: 14px;
    font-weight: 400;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
        margin-top: 40px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Final Purchase Section */
.final-purchase {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #667eea);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    text-align: center;
    padding: 60px 0;
    position: relative;
}

.purchase-header {
    margin-bottom: 40px;
}

.purchase-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    animation: pulse 2s ease-in-out infinite alternate;
}

.purchase-subtitle {
    font-size: 22px;
    font-weight: 600;
    opacity: 0.95;
}

.purchase-box {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    border: 4px solid #f7931e;
}

.purchase-content {
    padding: 40px 30px 30px 30px;
    color: #333;
}

.purchase-heading {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.purchase-items {
    margin-bottom: 30px;
}

.purchase-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
    gap: 10px;
}

.purchase-item .check {
    font-size: 18px;
    flex-shrink: 0;
}

.purchase-price {
    margin: 30px 0;
    text-align: center;
}

.discount-text {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
}

.final-price-display {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px 20px;
    border-radius: 15px;
    border: 3px solid #f7931e;
}

.currency-text {
    display: block;
    font-size: 16px;
    color: #666;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.price-large {
    display: block;
    font-size: 54px;
    font-weight: 900;
    color: #27ae60;
    line-height: 1;
    margin-bottom: 8px;
}

.installments-text {
    display: block;
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

.purchase-button-final {
    display: block;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    text-decoration: none;
    padding: 25px 40px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(39,174,96,0.4);
    margin: 30px 0;
    text-align: center;
    line-height: 1.3;
}

.purchase-button-final:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(39,174,96,0.6);
}

.purchase-button-final small {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    text-transform: none;
    font-weight: 600;
    opacity: 0.9;
}

.purchase-guarantee {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #27ae60;
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
}

.purchase-guarantee h4 {
    color: #27ae60;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.purchase-guarantee p {
    color: #2c3e50;
    font-size: 14px;
    margin: 0;
}

.purchase-security {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.purchase-security .security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.purchase-security svg {
    width: 32px;
    height: 32px;
}

.purchase-security span {
    font-size: 12px;
    color: #666;
    text-align: center;
    font-weight: 600;
}

/* Final Purchase Responsive */
@media (max-width: 768px) {
    .final-purchase {
        padding: 40px 0;
    }
    
    .purchase-title {
        font-size: 32px;
    }
    
    .purchase-subtitle {
        font-size: 18px;
    }
    
    .purchase-box {
        margin: 0 15px;
    }
    
    .purchase-content {
        padding: 30px 20px 25px 20px;
    }
    
    .price-large {
        font-size: 42px;
    }
    
    .purchase-button-final {
        font-size: 18px;
        padding: 20px 30px;
    }
    
    .purchase-security {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .purchase-title {
        font-size: 28px;
    }
    
    .purchase-heading {
        font-size: 20px;
    }
    
    .price-large {
        font-size: 36px;
    }
    
    .purchase-button-final {
        font-size: 16px;
        padding: 18px 25px;
    }
    
    .purchase-security {
        flex-direction: column;
        gap: 10px;
    }
}