/* ============================================================
   RESPONSIVE.CSS
   Fills in the mobile/tablet breakpoints the individual section
   files don't define on their own, and styles the stacked
   pricing-card layout shown on tablet/mobile in place of the
   pricing table.
   ============================================================ */

/* ---------- Pricing: table (desktop) vs cards (tablet/mobile) ---------- */

.pricing-cards { display: none; }

.price-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 36px 28px;
    box-shadow: 0 20px 40px rgba(64, 56, 122, 0.08);
    border: 1px solid #E9E7F7;
    position: relative;
}

.price-card + .price-card { margin-top: 24px; }

.price-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 25px 50px rgba(160, 149, 238, 0.25);
}

.price-card-badge {
    position: absolute;
    top: -13px;
    left: 28px;
    background: var(--accent);
    color: #FFFFFF;
    font-family: 'League Spartan', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
}

.price-card-head {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid #F1F5F9;
}

.price-card-plan {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-size: 22px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.price-card-amount {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #0F172A;
}

.price-card-amount span {
    font-size: 14px;
    font-weight: 400;
    color: #64748B;
    font-family: 'Inter', sans-serif;
}

.price-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.price-card-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #334155;
}

.price-card-features li span:first-child {
    color: #64748B;
}

.price-card-features li strong {
    text-align: right;
    font-weight: 600;
    color: #0F172A;
    font-size: 13px;
}

.price-card-features .dash {
    color: #CBD5E1;
    font-weight: 700;
}

.price-card-cta {
    display: block;
    width: 100%;
    text-align: center;
}

/* ---------- Breakpoint: tablet and down ---------- */

@media (max-width: 960px) {
    .pricing-table-wrapper { display: none; }
    .pricing-cards { display: block; max-width: 500px; margin: 0 auto; }

    .authority-grid { grid-template-columns: 1fr; gap: 50px; }
    .authority-image-wrapper { position: static; max-width: 380px; margin: 0 auto; }

    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Breakpoint: mobile ---------- */

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    /* Hero */
    .hero-forge { padding-top: 130px; padding-bottom: 70px; min-height: auto; }
    .hero-nav { padding: 30px 0; }
    .brand-logo { max-width: 170px; }
    h1 { font-size: 2.1em !important; letter-spacing: -0.5px; }
    .hero-sub { font-size: 16px; margin-bottom: 35px; }
    .value-promise-strip { flex-direction: column; gap: 14px; padding: 20px 0; margin-bottom: 40px; }
    .cta-row { flex-direction: column; width: 100%; gap: 14px; }
    .cta-row .btn { width: 100%; text-align: center; padding: 18px 20px; }

    /* Section heads generally */
    .section-head { font-size: 26px !important; }

    /* Pain points */
    .pain-forge, .benefits-section, .authority-section, .process-section,
    .pricing-section, .scope-section, .faq-section { padding: 80px 0; }
    .problem-grid { grid-template-columns: 1fr; gap: 20px; }
    .problem-card { padding: 36px 28px; }

    /* Benefits */
    .benefits-grid { grid-template-columns: 1fr; }
    .benefits-header .sub-headline { font-size: 16px; }

    /* Authority */
    .authority-content .section-head { font-size: 26px; }
    .authority-cta { flex-direction: column; align-items: flex-start; gap: 14px; }
    .matters-box { padding: 24px; }

    /* Process */
    .process-grid { grid-template-columns: 1fr; gap: 46px; }
    .step-number { font-size: 60px; }

    /* Pricing header */
    .pricing-header .section-head { font-size: 26px; }

    /* Scope */
    .inclusions-wrapper { padding: 50px 24px; }
    .inclusion-grid { gap: 30px; }
    .boundaries-content { padding: 40px 28px; }

    /* FAQ */
    .faq-header h2 { font-size: 26px; }
    .faq-question { padding: 20px 22px; font-size: 17px; }
    .faq-answer-inner { padding: 0 22px 22px 22px; }

    /* Final CTA */
    .cta-content-wrapper h2 { font-size: 40px; }
}
