/* Hero Section */
.hero-section {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.hero-cta {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    background: linear-gradient(135deg, var(--bitcoin-orange) 0%, var(--bitcoin-orange-dark) 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(194, 65, 12, 0.3);
    min-width: 200px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 65, 12, 0.4);
}

.hero-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    box-shadow: none;
}

.hero-btn.secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--bitcoin-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

.scroll-indicator {
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

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

/* Motivation Section */
.motivation-section {
    background: var(--bg-tertiary);
    padding: 40px 30px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
}

.motivation-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.motivation-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.motivation-highlight {
    color: var(--bitcoin-orange);
    font-weight: 600;
}

/* Use Cases Section */
.use-cases-section {
    margin: 50px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.use-case {
    background: var(--bg-secondary);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.use-case-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.use-case-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    background: var(--bg-secondary);
    padding: 35px 30px;
    border-radius: 20px;
    margin: 40px 0;
    border-left: 4px solid var(--bitcoin-orange);
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-content {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.benefits-list {
    margin: 20px 0;
    padding-left: 20px;
}

.benefits-list li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.benefits-highlight {
    color: var(--bitcoin-orange);
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    margin: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--bitcoin-orange) 0%, var(--bitcoin-orange-dark) 100%);
    border-radius: 2px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-secondary);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--bitcoin-orange) 0%, var(--bitcoin-orange-dark) 100%);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bitcoin-orange) 0%, var(--bitcoin-orange-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(194, 65, 12, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Action Section */
.action-section {
    background: var(--bg-tertiary);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    margin: 50px 0;
}

.action-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.action-subtitle {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    min-width: 200px;
}

.action-btn.create {
    background: linear-gradient(135deg, var(--bitcoin-orange) 0%, var(--bitcoin-orange-dark) 100%);
    color: white;
    border: none;
}

.action-btn.create:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 65, 12, 0.4);
}

.action-btn.edit {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.action-btn.edit:hover {
    background: var(--bg-secondary);
    border-color: var(--bitcoin-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
    
    .motivation-section {
        padding: 30px 20px;
    }
    
    .motivation-title {
        font-size: 1.6rem;
    }
    
    .motivation-content {
        font-size: 1rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-section {
        padding: 25px 20px;
    }
    
    .benefits-title {
        font-size: 1.2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-secondary);
    margin: 15% auto;
    padding: 30px;
    border-radius: 20px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 20px 60px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.modal h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
    transition: color 0.3s ease;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: var(--text-muted);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close:hover {
    color: var(--text-primary);
}

.payment-methods-config {
    background: var(--bg-tertiary);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px var(--shadow-light);
    margin-top: 30px;
    transition: all 0.3s ease;
}

.payment-method {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.payment-method:last-child {
    margin-bottom: 0;
}

.payment-method.has-content {
    background: var(--success-bg);
    border-color: var(--success-border);
}

.payment-method-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.payment-method-info {
    flex: 1;
}

.payment-label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.payment-description-text {
    font-size: 13px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.payment-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.active {
    background: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.status-indicator.inactive {
    background: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.status-text {
    font-size: 13px;
    font-weight: 500;
}

.status-text.active {
    color: var(--success-text);
}

.status-text.inactive {
    color: var(--error-border);
}

.payment-method input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.payment-method input[type="text"]:focus {
    outline: none;
    border-color: var(--bitcoin-orange);
    box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.1);
}

.payment-method.has-content input[type="text"] {
    border-color: var(--success-border);
}

.payment-actions {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.save-btn {
    background: linear-gradient(135deg, var(--bitcoin-orange) 0%, var(--bitcoin-orange-dark) 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    min-width: 140px;
}

.save-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(194, 65, 12, 0.3);
}

.save-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}
