/* ============================
   GLOBAL STYLES
============================ */
body {
    margin: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #0f1115;
    /* dark background */
    color: #cbd5e1;
    /* light text */
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --gold: #D4AF37;
    --dark: #0f1115;
    --card-dark: #1e293b;
    --light-text: #cbd5e1;
}

/* ============================
   HERO SECTION
============================ */
.seo-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    background: linear-gradient(rgba(15, 17, 21, 1.0), rgba(15, 17, 21, 0.75)),
        url('/assets/seo-hero/seoHero.png') center/cover no-repeat;
    text-align: center;
    color: var(--gold);
    position: relative;
    padding: 0 20px;
}

.seo-hero-content h1 {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.seo-hero-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #b8962f;
    color: var(--dark);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ============================
   SECTION TITLES
============================ */
section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--gold);
}

/* ============================
   SECTION PARAGRAPHS
============================ */
section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
    color: var(--light-text);
}

/* ============================
   BENEFITS GRID
============================ */
.seo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: var(--card-dark);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

/* ============================
   SEO TYPES GRID
============================ */
.seo-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.type-card {
    background: var(--card-dark);
    padding: 25px 20px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.type-card h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

/* ============================
   SEO PROCESS LIST
============================ */
.seo-steps {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 20px;
}

.seo-steps li {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.seo-steps li strong {
    color: var(--gold);
}

/* ============================
   PRICING GRID
============================ */
/* Container */
/* SEO Audit Card (Special Styling) */
.audit-card {
    border: 1px dashed rgba(212, 175, 55, 0.4);
    background: rgba(30, 41, 59, 0.6);
    max-width: 260px;
}

/* Badge */
.audit-card .badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* Slightly smaller text */
.audit-card h3 {
    font-size: 1.3rem;
}

.audit-card .price {
    font-size: 1.15rem;
}

/* Outline Paystack Button */
.paystack-btn.outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.paystack-btn.outline:hover {
    background: var(--gold);
    color: var(--dark);
}

.seo-pricing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* Section title */
.seo-pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--gold);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Pricing Card */
.pricing-card {
    background: var(--card-dark);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.pricing-card.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Card Headings & Price */
.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.pricing-card .price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--gold);
}

/* Features List */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--light-text);
}

/* Paystack Button */
.paystack-btn {
    padding: 14px 32px;
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.paystack-btn:hover {
    background: #b8962f;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media(max-width:768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   FINAL CTA (IMPROVED)
============================ */

.seo-cta {
    padding: 90px 20px;
    background: transparent;
}

.seo-cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 70px 40px;
    background:
        radial-gradient(circle at top,
            rgba(212, 175, 55, 0.12),
            rgba(15, 17, 21, 0.95));
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        inset 0 0 40px rgba(212, 175, 55, 0.05);
}

.seo-cta-box h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: var(--gold);
}

.seo-cta-box p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

/* CTA BUTTON */

.seo-cta-box .btn-primary {
    background: linear-gradient(135deg,
            var(--gold),
            #b8962e);
    color: #0f1115;
    padding: 16px 38px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow:
        0 15px 35px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.seo-cta-box .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 20px 45px rgba(212, 175, 55, 0.55);
}

/* ============================
   RESPONSIVE
============================ */
@media(max-width:768px) {
    .seo-hero-content h1 {
        font-size: 2rem;
    }

    .seo-hero-content p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
}

/* Container */
.seo-pricing .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* Section title */
.seo-pricing h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: var(--gold);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Pricing Card */
.pricing-card {
    background: var(--card-dark);
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 280px;
    /* smaller card */
}

.pricing-card.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Headings & Price */
.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.pricing-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

/* Features List */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--light-text);
}

/* Paystack Button */
.paystack-btn {
    padding: 12px 24px;
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 180px;
}

.paystack-btn:hover {
    background: #b8962f;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media(max-width:768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}