/* How It Works - Compact */
.hiw-hero {
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    padding: 40px 20px;
    text-align: center;
}

.hiw-hero h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #0f172a, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hiw-hero p {
    font-size: 14px;
    color: #5b6778;
}

/* Steps Section */
.steps-section {
    padding: 40px 20px;
    background: white;
}

.steps-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    text-align: center;
    padding: 24px 16px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.step-card:hover {
    transform: translateY(-3px);
    border-color: #2563eb;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin: 0 auto 12px;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea20, #764ba220);
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2563eb;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 12px;
    color: #5b6778;
    line-height: 1.4;
    margin-bottom: 8px;
}

.step-note {
    font-size: 10px;
    color: #2563eb;
    background: #e6f0ff;
    padding: 4px 8px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 8px;
}

/* Plan Selection */
.plan-selection-section {
    padding: 40px 20px;
    background: #f8fafc;
    text-align: center;
}

.plan-selection-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-selection-section > p {
    font-size: 13px;
    color: #5b6778;
    margin-bottom: 30px;
}

.plan-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 20px 16px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.2s;
}

.plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.plan-card.popular {
    border: 2px solid #2563eb;
    background: #fafcff;
}

.popular-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    font-size: 10px;
    padding: 2px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
}

.plan-period {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 16px;
}

.plan-features {
    list-style: none;
    margin-bottom: 20px;
}

.plan-features li {
    font-size: 11px;
    padding: 5px 0;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li i {
    width: 14px;
    font-size: 10px;
}

.plan-features .fa-check {
    color: #10b981;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    background: #f1f5f9;
    color: #334155;
    transition: all 0.2s;
}

.plan-btn.primary {
    background: #0f172a;
    color: white;
}

.plan-btn.primary:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

.plan-btn:hover:not(.primary) {
    background: #e2e8f0;
}

/* Payment Process */
.payment-process {
    padding: 40px 20px;
    background: white;
    text-align: center;
}

.payment-process h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.payment-process > p {
    font-size: 13px;
    color: #5b6778;
    margin-bottom: 30px;
}

.payment-steps {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.payment-step {
    text-align: center;
    padding: 16px;
}

.payment-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.payment-step h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.payment-step p {
    font-size: 11px;
    color: #5b6778;
    line-height: 1.4;
}

.payment-note {
    max-width: 600px;
    margin: 30px auto 20px;
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    text-align: left;
    font-size: 12px;
    color: #92400e;
}

.payment-note i {
    font-size: 18px;
    color: #f59e0b;
}

.coming-soon {
    max-width: 600px;
    margin: 0 auto;
    background: #e6f0ff;
    border-left: 3px solid #2563eb;
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    text-align: left;
    font-size: 12px;
    color: #1e40af;
}

.coming-soon i {
    font-size: 18px;
    color: #2563eb;
}

/* Contact Support */
.contact-support {
    padding: 40px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    text-align: center;
    color: white;
}

.support-content i {
    font-size: 40px;
    color: #2563eb;
    margin-bottom: 16px;
}

.support-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.support-content p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 24px;
}

.support-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.support-btn {
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.support-btn.whatsapp {
    background: #25D366;
    color: white;
}

.support-btn.whatsapp:hover {
    background: #1da15b;
    transform: translateY(-2px);
}

.support-btn.email {
    background: white;
    color: #0f172a;
}

.support-btn.email:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.support-btn.phone {
    background: #334155;
    color: white;
}

.support-btn.phone:hover {
    background: #475569;
    transform: translateY(-2px);
}

/* Detailed Section (Billing Process) */
.detailed-section {
    padding: 40px 20px;
    background: #f8fafc;
    text-align: center;
}

.detailed-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.detailed-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.detailed-card {
    background: white;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.detailed-card i {
    font-size: 20px;
    color: #2563eb;
    margin-bottom: 6px;
}

.detailed-card h3 {
    font-size: 12px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .payment-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .support-buttons {
        flex-direction: column;
        align-items: center;
    }
    .support-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
    .plan-grid {
        grid-template-columns: 1fr;
    }
    .payment-steps {
        grid-template-columns: 1fr;
    }
    .detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hiw-hero h1 {
        font-size: 24px;
    }
}

/* Contact Support - Compact Buttons */
.contact-support {
    padding: 32px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    text-align: center;
    color: white;
}

.support-content i {
    font-size: 32px;
    color: #2563eb;
    margin-bottom: 12px;
}

.support-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.support-content p {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.support-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-btn {
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.support-btn.whatsapp {
    background: #25D366;
    color: white;
}

.support-btn.whatsapp:hover {
    background: #1da15b;
    transform: translateY(-1px);
}

.support-btn.email {
    background: white;
    color: #0f172a;
}

.support-btn.email:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.support-btn.phone {
    background: #334155;
    color: white;
}

.support-btn.phone:hover {
    background: #475569;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 500px) {
    .support-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .support-btn {
        width: 180px;
        justify-content: center;
        padding: 8px 16px;
    }
    
    .contact-support {
        padding: 24px 16px;
    }
    
    .support-content h3 {
        font-size: 16px;
    }
}