/*
 * Dudes Marketplace — Homepage
 * Hero, features grid, why-choose, pricing cards, CTA sections, responsive
 */

/* ===== Hero Section ===== */
.hero {
    padding: 160px 5% 100px;
    text-align: center;
    background: radial-gradient(circle at top, #1e293b 0%, #0f172a 60%);
}
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin: 0 0 20px 0;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    line-height: 1.15;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.hero p {
    font-size: 18px;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-primary-cta {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}
.btn-primary-cta:hover {
    background: #2563eb;
    transform: translateY(-2px);
}
.btn-secondary-cta {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid #334155;
}
.btn-secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Bottom CTA specific premium white-border styling */
.cta-bottom .btn-primary-cta {
    background: transparent !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
}
.cta-bottom .btn-primary-cta:hover {
    background: #ffffff !important;
    color: #0f172a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25) !important;
}

/* ===== Section Titles ===== */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}
.section-subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* ===== Why Choose Section ===== */
.why-choose {
    padding: 80px 5%;
    background: #0b1120;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 10px;
    font-size: 15px;
    color: #cbd5e1;
    transition: background 0.2s;
}
.benefit-item:hover {
    background: rgba(30, 41, 59, 0.8);
}
.benefit-icon {
    color: #60a5fa;
    font-size: 18px;
    flex-shrink: 0;
}

/* ===== Features Grid ===== */
.features {
    padding: 80px 5%;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background: #1e293b;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #334155;
    transition: transform 0.3s, border-color 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: #60a5fa;
}
.feature-card .feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}
.feature-card h3 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: #f1f5f9;
}
.feature-card p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}
.feature-card ul li {
    color: #94a3b8;
    font-size: 14px;
    padding: 4px 0;
}
.feature-card ul li::before {
    content: "✓ ";
    color: #60a5fa;
    font-weight: 700;
}

/* ===== Perfect For Section ===== */
.perfect-for {
    padding: 80px 5%;
    background: #0b1120;
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}
.audience-tag {
    background: rgba(30, 41, 59, 0.6);
    padding: 14px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
    border: 1px solid transparent;
    transition: all 0.2s;
}
.audience-tag:hover {
    border-color: #475569;
    background: rgba(30, 41, 59, 0.9);
}

/* ===== Modern SEO Section ===== */
.modern-seo {
    padding: 80px 5%;
}
.seo-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.seo-pillar {
    background: #1e293b;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #334155;
    transition: transform 0.2s;
}
.seo-pillar:hover {
    transform: translateY(-3px);
}
.seo-pillar .pillar-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}
.seo-pillar h4 {
    font-size: 15px;
    margin: 0;
    color: #e2e8f0;
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 80px 5%;
    background: #0b1120;
}
.pricing-card {
    background: #1e293b;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #334155;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
}
.pricing-card:hover {
    border-color: #3b82f6;
}
.pricing-card h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
}
.pricing-card .price {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
}
.pricing-card .price span {
    font-size: 18px;
    color: #94a3b8;
    font-weight: 500;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}
.pricing-card ul li {
    color: #cbd5e1;
    padding: 10px 0;
    border-bottom: 1px solid #334155;
    font-size: 15px;
}
.pricing-card ul li:last-child {
    border-bottom: none;
}
.btn-block {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
    transition: all 0.2s;
}
.btn-block:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* ===== CTA Bottom Section ===== */
.cta-bottom {
    padding: 100px 5%;
    text-align: center;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 70%);
}
.cta-bottom h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}
.cta-bottom p {
    color: #94a3b8;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.cta-bottom-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* ===== Trust Section ===== */
.trust-section {
    padding: 60px 5%;
    text-align: center;
}
.trust-section p {
    color: #94a3b8;
    font-size: 15px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .hero {
        padding: 120px 5% 60px;
    }
    .hero h1 {
        font-size: 30px;
        letter-spacing: -0.5px;
    }
    .hero p {
        font-size: 15px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    .section-title {
        font-size: 24px;
    }
    .section-subtitle {
        font-size: 14px;
    }
    .grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .seo-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-card {
        padding: 28px;
    }
    .pricing-card {
        padding: 28px;
    }
    .pricing-card .price {
        font-size: 36px;
    }
    .why-choose,
    .features,
    .perfect-for,
    .modern-seo,
    .pricing,
    .trust-section {
        padding: 50px 5%;
    }
    .cta-bottom {
        padding: 60px 5%;
    }
    .cta-bottom h2 {
        font-size: 26px;
    }
    .cta-bottom-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
    .audience-grid {
        grid-template-columns: 1fr;
    }
    .seo-pillars {
        grid-template-columns: 1fr;
    }
}
