/* How to Buy Page Styles */
.htb-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2a4a6b 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a365d;
    margin-bottom: 4rem;
}

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

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a365d;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

.step-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Section Grid */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

/* Bidding Section */
.bidding-section {
    padding: 6rem 0;
}

.content-column h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a365d;
    margin-bottom: 2rem;
}

.bidding-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.info-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Bidding Demo */
.bidding-demo {
    display: flex;
    justify-content: center;
}

.demo-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
}

.demo-header {
    background: #1a365d;
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-header h4 {
    margin: 0;
    font-size: 1rem;
}

.demo-status {
    background: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.demo-content {
    padding: 1.5rem;
}

.current-bid, .your-bid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.label {
    color: #6c757d;
    font-size: 0.875rem;
}

.amount {
    font-weight: 700;
    color: #1a365d;
    font-size: 1.125rem;
}

.bid-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
}

.bid-status.winning {
    background: #d1fae5;
    color: #065f46;
}

/* Security Section */
.security-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 1.5rem;
    color: #10b981;
    width: 40px;
    text-align: center;
}

.feature-card h4 {
    margin: 0 0 0.25rem 0;
    color: #1a365d;
    font-size: 1rem;
}

.feature-card p {
    margin: 0;
    color: #6c757d;
    font-size: 0.875rem;
}

.security-details h3 {
    font-size: 1.25rem;
    color: #1a365d;
    margin: 2rem 0 1rem 0;
}

.security-details ul {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.payment-badge {
    background: #1a365d;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Delivery Section */
.delivery-section {
    padding: 6rem 0;
}

.delivery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a365d;
    margin-bottom: 4rem;
}

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

.delivery-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.delivery-card:hover {
    transform: translateY(-4px);
}

.delivery-icon {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.delivery-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.delivery-time {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.delivery-card p:last-child {
    color: #6c757d;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a365d;
    margin-bottom: 4rem;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: #1a365d;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ffd700;
    color: #1a365d;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #1a365d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .delivery-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 250px;
    }
    
    .payment-methods {
        justify-content: center;
    }
}