/* ================================
   Global Styles & Variables
   ================================ */
:root {
    --primary-color: #FF0000;
    --secondary-color: #000000;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-gray: #666666;
    --transition: all 0.3s ease;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* ================================
   Navigation
   ================================ */
.navbar {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ================================
   Hero Section
   ================================ */
.hero {
    background: linear-gradient(135deg, 
        #ff0000 0%, 
        #8b0000 25%, 
        #000000 50%, 
        #000080 75%, 
        #f5deb3 100%);
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.1));
    transform: skewX(-20deg);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
    transform: rotate(-2deg);
}

.price-badge .price {
    font-size: 2.5rem;
}

.price-breakdown {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
    display: block;
    margin-top: 0.3rem;
}

/* Free Bonus Offer */
.free-bonus-offer {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% { border-color: var(--primary-color); }
    50% { border-color: #ff4444; }
}

.bonus-badge {
    background: linear-gradient(45deg, var(--primary-color), #ff4444);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.free-bonus-offer h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.free-bonus-offer p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-items: center;
    text-align: center;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.bonus-item i {
    color: #28a745;
    font-size: 1.1rem;
}

.partnership-note {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.btn-success {
    background-color: #25D366;
    color: var(--white);
}

.btn-success:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ================================
   Services Section
   ================================ */
.services {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Bonus Service Card */
.bonus-card {
    background: linear-gradient(135deg, #fff 0%, #fff8f8 100%);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: visible;
}

.bonus-flag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, var(--primary-color), #ff4444);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.bonus-card .service-icon {
    color: var(--primary-color);
    font-size: 3.5rem;
}

.bonus-value-tag {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.cta-section {
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: var(--border-radius);
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 500;
}

/* ================================
   Portfolio Section
   ================================ */
.portfolio {
    padding: 80px 0;
    background-color: var(--white);
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.portfolio-placeholder {
    background-color: var(--light-gray);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* ================================
   Contact Section
   ================================ */
.contact {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.contact-btn i {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-btn.whatsapp i {
    color: #25D366;
}

.contact-btn.sms i {
    color: var(--primary-color);
}

.contact-btn.email i {
    color: #4285F4;
}

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

.contact-btn strong {
    display: block;
    font-weight: 600;
}

.contact-btn span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.contact-note {
    margin-top: 2rem;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: #E0E0E0;
    border-radius: var(--border-radius);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.contact-note p {
    margin: 0;
    color: #E0E0E0 !important;
}

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

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

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

/* ================================
   CONVERSION OPTIMIZATION STYLES
   ================================ */

/* Adjust navbar for normal position */
.navbar {
    top: 0;
}

.hero {
    padding-top: 120px;
}

/* Social Proof in Hero */
.social-proof {
    margin: 2rem 0;
    text-align: center;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.testimonial {
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Price Badge */
.price-badge {
    background: var(--white);
    color: var(--secondary-color);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    transform: rotate(-2deg);
    position: relative;
    overflow: hidden;
}

.price-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    animation: shine 3s infinite;
}

.price-strike {
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.old-price {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-current {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.savings {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    animation: bounce 2s infinite;
}

/* Before vs After Section */
.before-after {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.comparison-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.comparison-item.before {
    border-left: 5px solid #dc3545;
}

.comparison-item.after {
    border-left: 5px solid #28a745;
    background: linear-gradient(135deg, #fff 0%, #f8fff8 100%);
}

.comparison-item h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.comparison-item ul {
    list-style: none;
    padding: 0;
}

.comparison-item li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    line-height: 1.6;
}

.guarantee-box {
    background: var(--secondary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    animation: shine 4s infinite;
}

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

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

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.testimonial-card .stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffa500;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.client-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.client-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

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

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

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

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

/* Enhanced Form */
.conversion-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #CC0000 100%) !important;
    padding: 1.5rem 2rem !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.conversion-btn small {
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    margin-top: 0.5rem !important;
    opacity: 0.9 !important;
}

.conversion-btn::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: var(--transition);
}

.conversion-btn:hover::before {
    left: 100%;
}

.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
}



/* Exit Intent Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-gray);
}

.popup-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.popup-price {
    margin: 1.5rem 0;
}

.old-popup-price {
    font-size: 2rem;
    text-decoration: line-through;
    color: #888;
    margin-right: 1rem;
}

.new-popup-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.popup-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #CC0000 100%);
    color: var(--white);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin: 1rem 0;
    transition: var(--transition);
}

.popup-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.popup-timer {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    animation: pulse 1.5s infinite;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes flash {
    0%, 100% { background: var(--white); }
    50% { background: #fff3cd; }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 768px) {


    /* Navigation */
    .navbar {
        top: 0;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .social-proof {
        margin: 1.5rem 0;
    }
    
    .proof-stats {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .stat {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .testimonial {
        font-size: 0.9rem;
    }

    .price-badge {
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
    }

    .price-badge .price {
        font-size: 2rem;
    }
    
    .old-price {
        font-size: 1.2rem;
    }

    /* Free Bonus Offer Mobile */
    .free-bonus-offer {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .free-bonus-offer h3 {
        font-size: 1.4rem;
    }
    
    .free-bonus-offer p {
        font-size: 1rem;
    }
    
    .bonus-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .bonus-item {
        justify-content: center;
        text-align: center;
    }
    
    .partnership-note {
        font-size: 0.9rem;
    }

    /* Before vs After */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-flag {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        top: -8px;
        right: -8px;
    }
    
    .bonus-value-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }



    /* Popup Mobile */
    .popup-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .popup-content h2 {
        font-size: 1.5rem;
    }
    
    .old-popup-price {
        font-size: 1.5rem;
    }
    
    .new-popup-price {
        font-size: 2.2rem;
    }

    /* General */
    .section-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .conversion-btn {
        font-size: 1rem !important;
        padding: 1.2rem 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
} 