/* AI Content & SEO System — course page.
   Layered on top of accelerator-bootcamp.css, which supplies the shell
   (page_wrap, custom_container, c_heading, cta_btn, faq_section).
   Everything here is scoped to .ai_seo_page so it can't leak sitewide.
   Brand palette: #296D6B teal, #85A6A6 muted, #153838 deep, #B25E09 amber. */

/* ---------- Hero ---------------------------------------------------- */

.page_wrap.ai_seo_page .top_banner {
    background:
        radial-gradient(1100px 520px at 78% 8%, rgba(41, 109, 107, .55) 0%, rgba(41, 109, 107, 0) 62%),
        linear-gradient(135deg, #0f2b2b 0%, #153838 42%, #1b4746 100%);
    padding: 135px 0 60px;
    position: relative;
}

/* Faint grid — reads as "system", costs no image request. */
.page_wrap.ai_seo_page .top_banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(133, 166, 166, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(133, 166, 166, .08) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

.page_wrap.ai_seo_page .top_banner .custom_container {
    position: relative;
    z-index: 1;
    align-items: center;
}

.page_wrap.ai_seo_page .top_banner .textbox {
    width: 54%;
}

.page_wrap.ai_seo_page .top_banner .imgbox {
    width: 42%;
}

.page_wrap.ai_seo_page .top_banner .textbox .small_text {
    color: #ffb648;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.page_wrap.ai_seo_page .top_banner .textbox .b_heading {
    font-size: 46px;
    line-height: 54px;
    letter-spacing: -0.5px;
}

.page_wrap.ai_seo_page .top_banner .textbox .bs_heading {
    font-size: 18px;
    line-height: 28px;
    color: #cfe3e1;
    font-weight: 400;
    max-width: 620px;
}

.page_wrap.ai_seo_page .top_banner .textbox .bs_heading strong {
    color: #fff;
    font-weight: 700;
}

/* The retainer anchor. Per the positioning plan this must never be read
   next to another course price — so it is framed against the retainer and
   nothing else. */
.ai_anchor {
    width: 100%;
    max-width: 560px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(133, 166, 166, .35);
    border-left: 4px solid #ffb648;
    border-radius: 12px;
    padding: 18px 22px;
    margin: 4px 0 24px;
}

.ai_anchor_row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px 18px;
}

.ai_anchor_them {
    font-size: 14px;
    line-height: 20px;
    color: #9fb8b7;
}

.ai_anchor_them s {
    color: #9fb8b7;
}

.ai_anchor_us {
    font-size: 30px;
    line-height: 34px;
    font-weight: 800;
    color: #fff;
}

.page_wrap.ai_seo_page .ai_anchor_us span {
    font-size: 15px;
    font-weight: 600;
    color: #ffb648;
}

.ai_anchor_note {
    font-size: 13.5px;
    line-height: 20px;
    color: #a8c4c2;
    margin: 10px 0 0;
}

.page_wrap.ai_seo_page .ai_anchor_note {
    margin-bottom: 0;
}

.ai_cta_row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
}

.ai_cta_row.center {
    justify-content: center;
}

.page_wrap.ai_seo_page .cta_btn.wa_green {
    background-color: #25D366;
    border-color: transparent;
}

.page_wrap.ai_seo_page .cta_btn.wa_green:hover {
    background-color: #128C7E;
    border-color: #fff;
}

/* The shared .cta_btn reserves 60px of right padding for the animated arrow.
   These buttons carry no arrow, so that padding just shoves the label
   off-centre — most visibly on mobile, where the label wraps. */
.page_wrap.ai_seo_page .cta_btn.amber,
.page_wrap.ai_seo_page .ai_pkg_card .cta_btn.wa_green {
    padding-left: 22px;
    padding-right: 22px;
    text-align: center;
}

.page_wrap.ai_seo_page .cta_btn.amber {
    background-color: #ffb648;
    color: #153838;
    border-color: transparent;
}

.page_wrap.ai_seo_page .cta_btn.amber:hover {
    background-color: #fff;
    color: #153838;
    border-color: #ffb648;
}

.page_wrap.ai_seo_page .cta_btn.ghost {
    background-color: transparent;
    border-color: #85A6A6;
    color: #fff;
}

.page_wrap.ai_seo_page .cta_btn.ghost:hover {
    background-color: #fff;
    color: #153838;
    border-color: #fff;
}

/* Hero pipeline diagram — inline SVG, no asset request. */
.ai_pipe {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(133, 166, 166, .3);
    border-radius: 16px;
    padding: 22px 24px 20px;
}

/* NOTE ON SPECIFICITY — read before adding any rule that targets a <span>,
   <strong> or <i> on this page.

   accelerator-bootcamp.css contains:
       .page_wrap span, .page_wrap strong, .page_wrap i
           { font-size: inherit; font-weight: inherit; color: inherit }
   That selector scores (0,1,1), so a bare `.my_class` (0,1,0) LOSES to it and
   the element silently falls back to the inherited body colour — which on the
   dark sections is near-black on near-black. Every span rule below is
   therefore prefixed with `.page_wrap.ai_seo_page` to score (0,3,0). */
.page_wrap.ai_seo_page .ai_pipe_cap {
    display: block;
    font-size: 11.5px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #85A6A6;
    font-weight: 700;
    margin-bottom: 14px;
}

.ai_pipe svg {
    width: 100%;
    height: auto;
    display: block;
}

.ai_pipe_foot {
    font-size: 13px;
    line-height: 19px;
    color: #a8c4c2;
    margin: 14px 0 0;
    border-top: 1px solid rgba(133, 166, 166, .25);
    padding-top: 12px;
}

.page_wrap.ai_seo_page .ai_pipe_foot {
    margin-bottom: 0;
}

/* ---------- Proof strip --------------------------------------------- */

.ai_proof_strip {
    background: #153838;
    padding: 0;
}

.ai_proof_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(133, 166, 166, .25);
    border-radius: 14px;
    overflow: hidden;
    margin: -34px 0 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 14px 34px rgba(11, 32, 32, .28);
}

.ai_proof_cell {
    background: #1b4746;
    padding: 22px 20px;
    text-align: center;
}

.page_wrap.ai_seo_page .ai_proof_num {
    display: block;
    font-size: 30px;
    line-height: 36px;
    font-weight: 800;
    color: #ffb648;
}

.page_wrap.ai_seo_page .ai_proof_lbl {
    display: block;
    font-size: 13px;
    line-height: 18px;
    color: #cfe3e1;
    margin-top: 4px;
}

/* ---------- Generic light section ----------------------------------- */

.ai_sec {
    padding: 66px 0;
}

.ai_sec.tint {
    background-color: #F6F9F9;
}

.ai_sec.deep {
    background: linear-gradient(135deg, #153838 0%, #1b4746 100%);
}

/* The base stylesheet sets `.page_wrap p { color: #fff }` for the dark hero, so
   every paragraph on a light section has to re-state its colour or it renders
   white-on-near-white.

   Deliberately scoped to `.ai_lead p` for the packages section rather than to
   `.ai_pkg_section p`: the broad form would out-specify .ai_pkg_tag /
   .ai_pkg_note / .ai_pkg_guarantee (all 3-class selectors) and repaint the
   whole card. Nothing inside .ai_lead is a card, so this collides with
   nothing. */
.page_wrap.ai_seo_page .ai_sec p,
.page_wrap.ai_seo_page .ai_pkg_section .ai_lead p {
    color: #3c4c4c;
    font-size: 15.5px;
    line-height: 26px;
}

.page_wrap.ai_seo_page .ai_sec.deep p {
    color: #cfe3e1;
}

.page_wrap.ai_seo_page .ai_sec.deep .c_heading {
    color: #fff;
}

.ai_lead {
    max-width: 780px;
}

.ai_lead.center {
    margin: 0 auto;
    text-align: center;
}

.page_wrap.ai_seo_page .ai_kicker {
    display: block;
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: 700;
    color: #B25E09;
    margin-bottom: 8px;
}

.page_wrap.ai_seo_page .ai_sec.deep .ai_kicker {
    color: #ffb648;
}

/* ---------- Proof: this website ------------------------------------- */

.ai_proof_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 38px;
}

.ai_proof_card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(133, 166, 166, .3);
    border-radius: 14px;
    padding: 26px 24px;
}

.ai_proof_card h4 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.page_wrap.ai_seo_page .ai_proof_card p {
    font-size: 14.5px;
    line-height: 23px;
    margin: 0;
}

.ai_proof_card a {
    color: #ffb648;
    text-decoration: underline;
    font-weight: 600;
}

.ai_honest {
    max-width: 860px;
    margin: 36px auto 0;
    background: rgba(255, 182, 72, .1);
    border: 1px solid rgba(255, 182, 72, .35);
    border-radius: 12px;
    padding: 18px 22px;
}

.page_wrap.ai_seo_page .ai_honest p {
    font-size: 14.5px;
    line-height: 24px;
    margin: 0;
    color: #f0e3cd;
}

.ai_honest strong {
    color: #ffb648;
}

/* ---------- Slop vs configured -------------------------------------- */

.ai_slop_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 38px;
}

.ai_slop_card {
    background: #fff;
    border: 1px solid #e3e8e8;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ai_slop_card.bad {
    border-color: #e8cfcf;
}

.ai_slop_card.good {
    border-color: #296D6B;
    box-shadow: 0 10px 26px rgba(41, 109, 107, .14);
}

.ai_slop_head {
    padding: 14px 22px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 9px;
}

.ai_slop_card.bad .ai_slop_head {
    background: #fbf1f1;
    color: #9a4040;
}

.ai_slop_card.good .ai_slop_head {
    background: #eef6f5;
    color: #296D6B;
}

.ai_slop_body {
    padding: 22px;
    flex: 1;
}

.page_wrap.ai_seo_page .ai_slop_body p {
    font-size: 15px;
    line-height: 25px;
    margin: 0;
}

.page_wrap.ai_seo_page .ai_slop_card.bad .ai_slop_body p {
    color: #7a6a6a;
    font-style: italic;
}

.ai_slop_foot {
    padding: 14px 22px;
    border-top: 1px dashed #e3e8e8;
    font-size: 13.5px;
    line-height: 21px;
    color: #5a6b6b;
}

.ai_slop_foot strong {
    color: #296D6B;
}

/* ---------- Not for you --------------------------------------------- */

.ai_nfy {
    max-width: 900px;
    margin: 36px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 26px;
}

.ai_nfy li {
    position: relative;
    padding-left: 34px;
    font-size: 15.5px;
    line-height: 25px;
    color: #cfe3e1;
}

.ai_nfy li::before {
    content: "\00d7";
    position: absolute;
    left: 6px;
    top: -1px;
    font-size: 22px;
    font-weight: 800;
    color: #ff9b9b;
    line-height: 27px;
}

.ai_nfy_close {
    max-width: 900px;
    margin: 30px auto 0;
    text-align: center;
}

.page_wrap.ai_seo_page .ai_nfy_close p {
    font-size: 18px;
    line-height: 29px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

/* ---------- Tools --------------------------------------------------- */

.ai_tools_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.ai_tool {
    background: #fff;
    border: 1px solid #e3e8e8;
    border-radius: 14px;
    padding: 22px 22px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
}

.ai_tool_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.ai_tool h4 {
    font-size: 17.5px;
    line-height: 24px;
    font-weight: 700;
    color: #1d2a2a;
    margin: 0;
}

.page_wrap.ai_seo_page .ai_tool_tag {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.page_wrap.ai_seo_page .ai_tool_tag.agent {
    background: #eef6f5;
    color: #296D6B;
}

.page_wrap.ai_seo_page .ai_tool_tag.chat {
    background: #fdf3e6;
    color: #B25E09;
}

.page_wrap.ai_seo_page .ai_tool_tag.seo {
    background: #eef1f7;
    color: #46557e;
}

.page_wrap.ai_seo_page .ai_tool_tag.port {
    background: #f2efe7;
    color: #6b5a3a;
}

.page_wrap.ai_seo_page .ai_tool p {
    font-size: 14px;
    line-height: 22px;
    color: #5a6b6b;
    margin: 0;
}

.ai_tools_note {
    max-width: 880px;
    margin: 34px auto 0;
    background: #fff;
    border: 1px solid #d9e7e5;
    border-left: 4px solid #296D6B;
    border-radius: 10px;
    padding: 18px 22px;
}

.page_wrap.ai_seo_page .ai_tools_note p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
    color: #324444;
}

/* ---------- Curriculum ---------------------------------------------- */

.ai_mods {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ai_mod {
    background: #fff;
    border: 1px solid #e3e8e8;
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    gap: 18px;
    position: relative;
}

.ai_mod.star {
    border-color: #296D6B;
    box-shadow: 0 8px 24px rgba(41, 109, 107, .12);
}

.ai_mod_no {
    flex: 0 0 auto;
    font-size: 26px;
    font-weight: 800;
    color: #d5e2e1;
    line-height: 30px;
    width: 42px;
}

.ai_mod.star .ai_mod_no {
    color: #296D6B;
}

.ai_mod h4 {
    font-size: 17.5px;
    line-height: 25px;
    font-weight: 700;
    color: #1d2a2a;
    margin: 0 0 7px;
    padding-right: 8px;
}

.page_wrap.ai_seo_page .ai_mod p {
    font-size: 14.5px;
    line-height: 23px;
    color: #5a6b6b;
    margin: 0;
}

.page_wrap.ai_seo_page .ai_mod_flag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
    background: #ffb648;
    color: #153838;
    padding: 3px 9px;
    border-radius: 999px;
    margin-bottom: 8px;
}

/* ---------- Who it's for -------------------------------------------- */

.ai_who {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 38px;
}

.ai_who_card {
    background: #fff;
    border: 1px solid #e3e8e8;
    border-radius: 14px;
    padding: 26px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
}

.ai_who_card h4 {
    font-size: 17.5px;
    line-height: 25px;
    font-weight: 700;
    color: #296D6B;
    margin: 0 0 9px;
}

.page_wrap.ai_seo_page .ai_who_card p {
    font-size: 14.5px;
    line-height: 23px;
    color: #5a6b6b;
    margin: 0;
}

/* ---------- Packages (pattern borrowed from the PRO page) ----------- */

.ai_pkg_section {
    padding: 66px 0;
    scroll-margin-top: 100px;
    background-color: #F6F9F9;
}

/* Single-offer layout. The course sells one thing; the two-hour workshop is a
   downsell the sales conversation offers, never a public tier. */
.ai_pkg_solo {
    max-width: 860px;
    margin: 46px auto 0;
}

.ai_solo_head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 28px;
    padding-bottom: 22px;
    margin-bottom: 8px;
    border-bottom: 1px solid #e8eded;
}

.ai_solo_price {
    text-align: right;
}

.page_wrap.ai_seo_page .ai_solo_price .ai_pkg_price,
.page_wrap.ai_seo_page .ai_solo_price .ai_pkg_save {
    margin-bottom: 0;
    min-height: 0;
}

.ai_pkg_feat.two_col {
    columns: 2;
    column-gap: 34px;
    margin-bottom: 28px;
}

.ai_pkg_feat.two_col li {
    break-inside: avoid;
    border-bottom: 0;
    padding: 7px 0 7px 28px;
}

.ai_solo_cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.page_wrap.ai_seo_page .ai_solo_cta .cta_btn {
    flex: 1 1 240px;
    width: auto;
}

.ai_pkg_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 46px;
    align-items: stretch;
}

.ai_pkg_card {
    background: #fff;
    border: 1px solid #e3e8e8;
    border-radius: 16px;
    padding: 34px 28px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
}

.ai_pkg_card.featured {
    border: 2px solid #296D6B;
    box-shadow: 0 10px 30px rgba(41, 109, 107, .16);
}

.page_wrap.ai_seo_page .ai_pkg_badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #296D6B;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 6px 16px;
    border-radius: 999px;
    white-space: nowrap;
}

.ai_pkg_name {
    font-size: 22px;
    font-weight: 700;
    color: #1d2a2a;
    margin: 0 0 6px;
}

.page_wrap.ai_seo_page .ai_pkg_tag {
    font-size: 13.5px;
    color: #5a6b6b;
    margin: 0 0 18px;
    min-height: 20px;
    line-height: 20px;
}

.ai_pkg_price {
    font-size: 30px;
    font-weight: 800;
    color: #296D6B;
    margin-bottom: 4px;
}

.ai_pkg_price .ai_pkg_unit {
    font-size: 14px;
    font-weight: 600;
    color: #5a6b6b;
}

.ai_pkg_save {
    font-size: 13.5px;
    font-weight: 700;
    color: #B25E09;
    margin-bottom: 18px;
    min-height: 20px;
}

.ai_pkg_feat {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    flex: 1;
}

.ai_pkg_feat li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 14.5px;
    line-height: 1.5;
    color: #324444;
    border-bottom: 1px dashed #e8eded;
}

.ai_pkg_feat li:last-child {
    border-bottom: 0;
}

.ai_pkg_feat li::before {
    content: "\2713";
    position: absolute;
    left: 2px;
    top: 8px;
    color: #296D6B;
    font-weight: 800;
}

.ai_pkg_feat li.plus::before {
    content: "+";
    color: #B25E09;
    font-size: 17px;
    top: 6px;
}

.page_wrap.ai_seo_page .ai_pkg_card .cta_btn {
    justify-content: center;
    width: 100%;
}

/* Price-card CTA hierarchy. The shared button styles make the plain .cta_btn a
   muted #85A6A6 and .cta_btn.dark the strong teal, which reads backwards here:
   the featured card's button looked weaker than the two beside it. Featured
   gets solid teal; the side cards drop to an outline so the eye lands on the
   cohort first. */
.page_wrap.ai_seo_page .ai_pkg_card.featured .cta_btn:not(.wa_green) {
    background-color: #296D6B;
    border-color: #296D6B;
}

.page_wrap.ai_seo_page .ai_pkg_card.featured .cta_btn:not(.wa_green):hover {
    background-color: #153838;
    border-color: #153838;
}

.page_wrap.ai_seo_page .ai_pkg_card:not(.featured) .cta_btn.dark {
    background-color: transparent;
    border-color: #296D6B;
    color: #296D6B;
}

.page_wrap.ai_seo_page .ai_pkg_card:not(.featured) .cta_btn.dark:hover {
    background-color: #296D6B;
    border-color: #296D6B;
    color: #fff;
}

/* The inline arrow SVG is hard-filled white, which disappears on the outlined
   button — recolour it to match the label. */
.page_wrap.ai_seo_page .ai_pkg_card:not(.featured) .cta_btn.dark .rgt_arrow svg path {
    fill: #296D6B;
}

.page_wrap.ai_seo_page .ai_pkg_card:not(.featured) .cta_btn.dark:hover .rgt_arrow svg path {
    fill: #fff;
}

.ai_pkg_trust {
    max-width: 820px;
    margin: 34px auto 0;
    text-align: center;
}

.page_wrap.ai_seo_page .ai_pkg_note {
    font-size: 13.5px;
    line-height: 22px;
    color: #5a6b6b;
    margin: 0 0 10px;
}

.page_wrap.ai_seo_page .ai_pkg_guarantee {
    font-size: 14px;
    line-height: 23px;
    color: #2a5f5d;
    background: #fff;
    border: 1px solid #d9e7e5;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 0 0 14px;
}

.ai_pkg_guarantee a {
    color: #296D6B;
    text-decoration: underline;
}

/* ---------- Format table -------------------------------------------- */

.ai_facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 38px;
    border: 1px solid rgba(133, 166, 166, .3);
    border-radius: 14px;
    overflow: hidden;
}

.ai_fact {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(133, 166, 166, .22);
    border-right: 1px solid rgba(133, 166, 166, .22);
}

.ai_fact:nth-child(2n) {
    border-right: 0;
}

.page_wrap.ai_seo_page .ai_fact_k {
    display: block;
    font-size: 11.5px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    font-weight: 700;
    color: #85A6A6;
    margin-bottom: 5px;
}

.page_wrap.ai_seo_page .ai_fact_v {
    display: block;
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    font-weight: 600;
}

/* ---------- Final CTA ----------------------------------------------- */

.ai_final {
    background: linear-gradient(135deg, #0f2b2b 0%, #1b4746 100%);
    padding: 72px 0;
    text-align: center;
}

.page_wrap.ai_seo_page .ai_final .c_heading {
    color: #fff;
}

.page_wrap.ai_seo_page .ai_final p {
    color: #cfe3e1;
    max-width: 660px;
    margin: 0 auto 26px;
    font-size: 16px;
    line-height: 27px;
}

/* ---------- Responsive ---------------------------------------------- */

@media (max-width: 1199px) {
    .page_wrap.ai_seo_page .top_banner .textbox .b_heading {
        font-size: 38px;
        line-height: 46px;
    }
}

@media (max-width: 991px) {
    .ai_proof_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai_proof_cards,
    .ai_tools_grid,
    .ai_who {
        grid-template-columns: 1fr 1fr;
    }

    .ai_mods {
        grid-template-columns: 1fr;
    }

    .ai_pkg_grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .ai_pkg_card.featured {
        order: -1;
    }

    .ai_sec,
    .ai_pkg_section {
        padding: 46px 0;
    }

    .page_wrap.ai_seo_page .top_banner .textbox .b_heading {
        font-size: 30px;
        line-height: 38px;
    }
}

@media (max-width: 767px) {
    .page_wrap.ai_seo_page .top_banner {
        padding: 100px 0 46px;
    }

    .page_wrap.ai_seo_page .top_banner .textbox,
    .page_wrap.ai_seo_page .top_banner .imgbox {
        width: 100%;
    }

    .page_wrap.ai_seo_page .top_banner .textbox .b_heading {
        font-size: 26px;
        line-height: 34px;
    }

    .ai_proof_grid {
        margin-top: 0;
        border-radius: 12px;
    }

    .ai_proof_strip {
        padding: 26px 0 0;
    }

    .ai_slop_grid,
    .ai_nfy,
    .ai_proof_cards,
    .ai_tools_grid,
    .ai_who,
    .ai_facts {
        grid-template-columns: 1fr;
    }

    .ai_fact {
        border-right: 0;
    }

    .ai_anchor_us {
        font-size: 26px;
    }

    .ai_cta_row .cta_btn {
        width: 100%;
    }
}
