/* Free Website Service (FWS) Modern Sleek Hero */
.fws-promo-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

/* Geometric Background */
.fws-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.fws-floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.fws-shape {
    position: absolute;
    background: linear-gradient(45deg, #E0447E, rgba(224, 68, 126, 0.3));
    border-radius: 50%;
    animation: fws-float-animation 20s infinite ease-in-out;
}

.fws-shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.fws-shape-2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    animation-delay: -5s;
}

.fws-shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

.fws-shape-4 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 10%;
    animation-delay: -15s;
}

.fws-shape-5 {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 5%;
    animation-delay: -7s;
}

@keyframes fws-float-animation {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Hero Container */
.fws-hero-container {
    text-align: center;
    max-width: 1100px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Modern Offer Badge */
.fws-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(224, 68, 126, 0.1);
    border: 1px solid rgba(224, 68, 126, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.fws-badge-dot {
    width: 8px;
    height: 8px;
    background: #E0447E;
    border-radius: 50%;
    animation: fws-pulse-dot 2s infinite;
}

@keyframes fws-pulse-dot {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Modern Typography */
.fws-main-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    margin-top: 100px;
}

.fws-title-line {
    display: block;
    color: white;
}

.fws-title-highlight {
    display: block;
    background: linear-gradient(135deg, #E0447E 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    margin: 0.5rem 0;
}

.fws-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E0447E, transparent);
    border-radius: 2px;
}

/* Hero Subtitle */
.fws-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.fws-guarantee-text {
    color: #E0447E;
    font-weight: 500;
}

/* Sleek Guarantee Card */
.fws-guarantee-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(224, 68, 126, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 500px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.fws-guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E0447E, transparent);
}

.fws-guarantee-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: #E0447E;
}

.fws-guarantee-icon svg {
    width: 100%;
    height: 100%;
}

.fws-guarantee-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.fws-guarantee-desc {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Modern Action Buttons */
.fws-action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.fws-btn-primary, .fws-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.fws-btn-primary {
    background: linear-gradient(135deg, #E0447E 0%, #c73968 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 32px rgba(224, 68, 126, 0.3);
}

.fws-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(224, 68, 126, 0.4);
}

.fws-btn-primary .fws-btn-arrow {
    transition: transform 0.3s ease;
}

.fws-btn-primary:hover .fws-btn-arrow {
    transform: translateX(4px);
}

.fws-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.fws-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(224, 68, 126, 0.5);
    transform: translateY(-2px);
}

/* Sleek Metrics Grid */
.fws-metrics-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.fws-metric-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.fws-metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E0447E;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fws-metric-label {
    font-size: 0.875rem;
    opacity: 0.7;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fws-metric-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(224, 68, 126, 0.3), transparent);
}

/* Scroll Indicator */
.fws-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
}

.fws-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #E0447E, transparent);
    animation: fws-scroll-pulse 2s infinite;
}

.fws-scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

@keyframes fws-scroll-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .fws-hero-container {
        padding: 1rem;
    }
    
    .fws-action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .fws-btn-primary, .fws-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .fws-metrics-grid {
        gap: 1.5rem;
    }
    
    .fws-metric-divider {
        display: none;
    }
    
    .fws-guarantee-card {
        margin: 2rem auto;
        padding: 1.5rem;
    }
    
    .fws-floating-shapes {
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .fws-metrics-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fws-metric-number {
        font-size: 2rem;
    }
    
    .fws-offer-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

/* Free Website Service (FWS) How It Works Section */
.fws-how-it-works {
            background: #0d0d0d;
            padding: 6rem 2rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        @media screen and (max-width: 768px) {
            .fws-how-it-works {
                padding: 4rem 0rem;
            }
            
        }

        .fws-how-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .fws-how-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            background: linear-gradient(135deg, #F65F94, #E0447E);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 4rem;
            letter-spacing: -1px;
        }

        /* Monthly Selection Styles */
        .fws-monthly-selection {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(246, 95, 148, 0.3);
            border-radius: 1rem;
            padding: 2.5rem;
            margin-bottom: 4rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        @media screen and (max-width: 768px) {
            .fws-monthly-selection {
                padding: 1.5rem;
                margin-bottom: 2rem;
                border-radius: 0px;
            }
            
        }

        .fws-monthly-selection:hover {
            border-color: rgba(246, 95, 148, 0.5);
            box-shadow: 0 10px 30px rgba(246, 95, 148, 0.1);
        }

        .fws-selection-badge {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, #F65F94, #E0447E);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .fws-badge-icon {
            margin-right: 0.5rem;
            font-size: 1rem;
        }

        .fws-selection-text {
            font-size: 1.125rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
        }

        .fws-selection-note {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 0.5rem;
            border-left: 3px solid #F65F94;
        }

        .fws-selection-note p {
            margin: 0;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
            line-height: 1.5;
        }

        /* Steps Styles */
        .fws-how-steps {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .fws-step {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(246, 95, 148, 0.2);
            padding: 2rem;
            border-radius: 1rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        @media screen and (max-width: 768px) {
            .fws-step {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                border-radius: 0px;
            }
            
            .fws-step {
                padding: 1.5rem;
            }
            
        }

        .fws-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(246, 95, 148, 0.15);
            border-color: rgba(246, 95, 148, 0.4);
        }

        .fws-step-number {
            width: 50px;
            height: 50px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, #F65F94, #E0447E);
            color: white;
            font-weight: 600;
            font-size: 1.25rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fws-step-text {
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
        }

        .fws-step-text strong {
            color: #F65F94;
            font-weight: 500;
        }

        /* Benefits Section */
        .fws-selection-benefits {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(246, 95, 148, 0.2);
            padding: 2.5rem;
            border-radius: 1rem;
            backdrop-filter: blur(10px);
        }

        @media screen and (max-width: 768px) {
            .fws-selection-benefits {
                padding: 1.5rem;
                border-radius: 0px;
            }
            
        }

        .fws-benefits-title {
            font-size: clamp(1.5rem, 4vw, 2rem);
            font-weight: 600;
            background: linear-gradient(135deg, #F65F94, #E0447E);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 2rem;
        }

        .fws-benefits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .fws-benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            text-align: left;
        }

        .fws-benefit-icon {
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #F65F94, #E0447E);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .fws-benefit-content h4 {
            margin: 0 0 0.5rem 0;
            font-size: 1.125rem;
            color: white;
            font-weight: 600;
        }

        .fws-benefit-content p {
            margin: 0;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            font-weight: 300;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .fws-how-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .fws-benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .fws-benefit-item {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
        }

        @media (min-width: 1024px) {
            .fws-how-steps {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .fws-how-steps .fws-step:nth-child(5) {
                grid-column: span 4;
            }
            
            .fws-benefits-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }


.agreement-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.checkbox-item.full-width {
    align-items: flex-start;
    background: transparent;
    padding: 0;
}

.checkbox-item.full-width input[type="checkbox"] {
    margin-top: 4px;
}

.checkbox-item.full-width .checkbox-label {
    font-size: 14px;
    color: #2d3748;
    line-height: 1.6;
}




.popup-wrapper {
    position: relative;
    display: inline-block;
}

.popup-trigger {
    color: #E0447E;
    cursor: pointer;
    font-weight: 500;
    text-decoration: underline;
}

.popup-trigger:hover {
    color: #c73968;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.popup-info {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
    padding: 30px 40px;
    font-size: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #2d3748;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
}

.popup-close:hover {
    color: #E0447E;
}

/* Success Popup Styles */
.popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    max-width: 300px;
}

.popup.show {
    opacity: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .popup {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        text-align: center;
    }
}