/* MagniGeeks service-page template. Scoped to .mgsp so it cannot touch Oxygen-built pages.
   Tokens copied from the live Oxygen pages: Poppins headings (600, -1px tracking, #202427),
   Inter/Open Sans body (#404040), brand green #3dad58, black and #f7f7f7 bands, 5px radii,
   1120px container with 20px gutters. */

.mgsp { --g: #3dad58; --g-dark: #2f8f47; --g-soft: #e7f5eb; --ink: #202427; --body: #404040; --muted: #6b7075;
        --line: #e6e8ea; --grey: #f7f7f7; --black: #000; --yellow: #f2cc4d;
        font-family: "Inter", "Open Sans", sans-serif; color: var(--body); line-height: 1.6; }
.mgsp *, .mgsp *::before, .mgsp *::after { box-sizing: border-box; }
.mgsp h1, .mgsp h2, .mgsp h3 { font-family: "Poppins", sans-serif; color: var(--ink); margin: 0; }
.mgsp p { margin: 0 0 1em; }
.mgsp a { color: var(--g-dark); text-decoration: none; }
.mgsp a:hover { text-decoration: underline; }
.mgsp strong { color: var(--ink); font-weight: 600; }

/* full-bleed bands inside Oxygen's unpadded inner-content wrapper */
.mgsp-band { width: 100%; padding: 72px 0; }
.mgsp-inner { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.mgsp-band--white { background: #fff; }
.mgsp-band--grey { background: var(--grey); }
.mgsp-band--black { background: var(--grey); color: var(--body); } /* 2026-09-07: black bands dropped at Nirmal's request; kept the class name so page markup is unchanged */
.mgsp-band--black h2, .mgsp-band--black h3 { color: var(--ink); }
.mgsp-band--black p { color: var(--body); }
.mgsp-band--black a { color: var(--g-dark); }
.mgsp-band + .mgsp-band--white { border-top: 1px solid var(--line); }
.mgsp-band--grey + .mgsp-band--white, .mgsp-band--black + .mgsp-band--white { border-top: 0; }
.mgsp-band--grey + .mgsp-band--black, .mgsp-band--black + .mgsp-band--grey { border-top: 1px solid var(--line); }

/* eyebrow pill, as on the Oxygen heroes */
.mgsp-eyebrow { display: inline-block; font-family: "Poppins", sans-serif; font-size: 13px; font-weight: 500; letter-spacing: .02em;
                color: var(--g-dark); background: var(--g-soft); border-radius: 5px; padding: 7px 14px; margin-bottom: 18px; }
.mgsp-band--black .mgsp-eyebrow { background: var(--g-soft); color: var(--g-dark); }

/* hero */
.mgsp-hero { padding: 84px 0 64px; text-align: center; background: #fff; }
.mgsp-hero h1 { font-size: 44px; line-height: 1.15; font-weight: 600; letter-spacing: -1px; max-width: 900px; margin: 0 auto 22px; }
.mgsp-hero .mgsp-lead { font-size: 18px; line-height: 1.65; color: var(--body); max-width: 780px; margin: 0 auto 14px; }
.mgsp-hero .mgsp-lead + .mgsp-lead { margin-top: -2px; }
.mgsp-cta-row { display: flex; gap: 14px 22px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 28px; }

/* buttons: copied from Oxygen's ct-link-button */
.mgsp-btn { display: inline-block; font-family: "Poppins", sans-serif; font-size: 14px; font-weight: 500; line-height: 1.6;
            color: #fff !important; background: var(--g); border: 1px solid var(--g); border-radius: 5px; padding: 11px 24px; text-decoration: none !important; }
.mgsp-btn:hover { background: var(--g-dark); border-color: var(--g-dark); }
.mgsp-link-arrow { font-family: "Poppins", sans-serif; font-size: 14px; font-weight: 500; color: var(--g-dark) !important; text-decoration: none !important; }
.mgsp-link-arrow::after { content: "\2192"; margin-left: 8px; }
.mgsp-band--black .mgsp-link-arrow { color: var(--g-dark) !important; }

/* section headers */
.mgsp-head { max-width: 760px; margin-bottom: 40px; }
.mgsp-head h2 { font-size: 32px; line-height: 1.2; font-weight: 600; letter-spacing: -.5px; margin-bottom: 14px; }
.mgsp-head p { font-size: 16px; }
.mgsp-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* prose (plain paragraphs) */
.mgsp-prose { max-width: 800px; font-size: 16px; }
.mgsp-prose p:last-child { margin-bottom: 0; }

/* two-column checklist with green ticks */
.mgsp-checks { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 40px; }
.mgsp-checks li { position: relative; padding-left: 36px; font-size: 16px; }
.mgsp-checks li::before { content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--g); }
.mgsp-checks li::after { content: ""; position: absolute; left: 8px; top: 6px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.mgsp-band--black .mgsp-checks li { color: var(--body); }

/* card grid */
.mgsp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mgsp-card { background: #fff; border: 1px solid var(--line); border-radius: 5px; padding: 28px 26px 24px; }
.mgsp-band--black .mgsp-card { border: 1px solid var(--line); }
.mgsp-card::before { content: ""; display: block; width: 38px; height: 38px; border-radius: 50%; background: var(--g-soft); margin-bottom: 18px;
                     background-image: linear-gradient(var(--g), var(--g)), linear-gradient(var(--g), var(--g)); background-repeat: no-repeat;
                     background-size: 14px 2px, 2px 14px; background-position: center; }
.mgsp-card h3 { font-size: 18px; line-height: 1.3; font-weight: 600; margin-bottom: 10px; color: var(--ink); }
.mgsp-band--black .mgsp-card h3 { color: var(--ink); }
.mgsp-card p { font-size: 15px; line-height: 1.6; color: var(--body); margin: 0; }
.mgsp-band--black .mgsp-card p { color: var(--body); }
.mgsp-band--black .mgsp-card a { color: var(--g-dark); }

/* numbered process steps */
.mgsp-steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; grid-template-columns: 1fr; gap: 0; max-width: 860px; }
.mgsp-steps li { counter-increment: step; position: relative; padding: 0 0 30px 68px; font-size: 16px; }
.mgsp-steps li::before { content: counter(step); position: absolute; left: 0; top: -4px; width: 44px; height: 44px; border-radius: 50%;
                          background: var(--g); color: #fff; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 17px;
                          display: flex; align-items: center; justify-content: center; }
.mgsp-steps li:not(:last-child)::after { content: ""; position: absolute; left: 21px; top: 44px; bottom: 4px; width: 2px; background: var(--line); }
.mgsp-steps li strong { display: block; font-family: "Poppins", sans-serif; font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }

/* generic bullet list inside prose */
.mgsp-list { margin: 0 0 1em; padding-left: 0; list-style: none; max-width: 800px; }
.mgsp-list li { position: relative; padding-left: 26px; margin-bottom: 12px; font-size: 16px; }
.mgsp-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 10px; height: 10px; border-radius: 2px; background: var(--g); }

/* tables */
.mgsp table { width: 100%; border-collapse: collapse; margin: 8px 0 0; font-size: 15px; background: #fff; border: 1px solid var(--line); border-radius: 5px; overflow: hidden; }
.mgsp th { text-align: left; font-family: "Poppins", sans-serif; font-weight: 600; color: var(--ink); background: var(--grey); padding: 14px 16px; border-bottom: 2px solid var(--line); }
.mgsp td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.mgsp tr:last-child td { border-bottom: 0; }
.mgsp-table-wrap { overflow-x: auto; }

/* FAQ */
.mgsp-faq { max-width: 860px; }
.mgsp-faq-item { border-top: 1px solid var(--line); padding: 26px 0; }
.mgsp-faq-item:last-child { border-bottom: 1px solid var(--line); }
.mgsp-faq-item h3 { font-size: 19px; line-height: 1.35; font-weight: 600; margin-bottom: 10px; }
.mgsp-faq-item p { font-size: 16px; margin: 0; }
.mgsp-faq-item p + p { margin-top: 10px; }
/* accordion (2026-09-07): JS adds .mgsp-faq--js to the list and .is-open to the active item */
.mgsp-faq--js .mgsp-faq-item h3 { position: relative; margin: 0; padding-right: 44px; cursor: pointer; }
.mgsp-faq--js .mgsp-faq-item h3::after { content: ""; position: absolute; right: 6px; top: 50%; width: 10px; height: 10px; margin-top: -8px;
                                         border: solid var(--g-dark); border-width: 0 2px 2px 0; transform: rotate(45deg); transition: transform .2s; }
.mgsp-faq--js .mgsp-faq-item.is-open h3::after { transform: rotate(-135deg); margin-top: -2px; }
.mgsp-faq--js .mgsp-faq-item h3:hover, .mgsp-faq--js .mgsp-faq-item.is-open h3 { color: var(--g-dark); }
.mgsp-faq--js .mgsp-faq-item h3:focus-visible { outline: 2px solid var(--g); outline-offset: 4px; border-radius: 3px; }
.mgsp-faq--js .mgsp-faq-item > p { display: none; }
.mgsp-faq--js .mgsp-faq-item.is-open > p { display: block; }
.mgsp-faq--js .mgsp-faq-item.is-open h3 { margin-bottom: 12px; }

/* related links as chips */
.mgsp-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.mgsp-chips a { display: inline-block; font-family: "Poppins", sans-serif; font-size: 14px; font-weight: 500; color: var(--ink) !important;
                border: 1px solid #d9dcdf; background: #fff; border-radius: 999px; padding: 10px 18px; text-decoration: none !important; }
.mgsp-chips a:hover { border-color: var(--g); color: var(--g-dark) !important; }

/* closing CTA band */
.mgsp-cta { text-align: center; background: var(--g-soft) !important; }
.mgsp-cta h2 { font-size: 34px; letter-spacing: -.5px; margin-bottom: 14px; color: var(--ink); }
.mgsp-cta p { font-size: 17px; max-width: 700px; margin: 0 auto; color: var(--body); }
.mgsp-cta .mgsp-cta-row { margin-top: 30px; }

/* stat strip (plugin proof) */
.mgsp-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 8px; }
.mgsp-stat { background: #fff; border: 1px solid var(--line); border-radius: 5px; padding: 26px; }
.mgsp-stat p { margin: 0; font-size: 15px; }

@media (max-width: 900px) {
  .mgsp-cards { grid-template-columns: 1fr 1fr; }
  .mgsp-hero h1 { font-size: 36px; }
  .mgsp-head h2 { font-size: 28px; }
}
@media (max-width: 640px) {
  .mgsp-band { padding: 52px 0; }
  .mgsp-hero { padding: 56px 0 44px; }
  .mgsp-hero h1 { font-size: 30px; letter-spacing: -.5px; }
  .mgsp-hero .mgsp-lead { font-size: 16px; }
  .mgsp-cards, .mgsp-checks, .mgsp-stats { grid-template-columns: 1fr; }
  .mgsp-head h2, .mgsp-cta h2 { font-size: 26px; }
  .mgsp-steps li { padding-left: 58px; }
  .mgsp-steps li::before { width: 38px; height: 38px; font-size: 15px; }
  .mgsp-steps li:not(:last-child)::after { left: 18px; top: 40px; }
}

/* proof section (2026-09-07): Codeable, Toptal, wordpress.org, three quoted reviews */
.mgsp-proof .mgsp-stats { grid-template-columns: repeat(4, 1fr); margin-bottom: 34px; }
.mgsp-proof .mgsp-stat strong { display: block; font-family: "Poppins", sans-serif; font-size: 28px; line-height: 1.1; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -.5px; }
.mgsp-proof .mgsp-stat span { display: block; font-size: 14px; line-height: 1.5; color: var(--muted); }
.mgsp-proof .mgsp-stat a { display: inline-block; margin-top: 10px; font-family: "Poppins", sans-serif; font-size: 13px; font-weight: 500; }
.mgsp-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mgsp-reviews blockquote { margin: 0; background: var(--grey); border-radius: 5px; padding: 26px 24px 22px; font-size: 15px; line-height: 1.6; color: var(--body); position: relative; }
.mgsp-reviews blockquote::before { content: "\201C"; font-family: "Poppins", sans-serif; font-size: 44px; line-height: 1; color: var(--g); display: block; margin-bottom: 6px; }
.mgsp-reviews blockquote p { margin: 0 0 14px; }
.mgsp-reviews cite { display: block; font-style: normal; font-family: "Poppins", sans-serif; font-size: 13px; font-weight: 500; color: var(--ink); }
.mgsp-reviews cite a { color: var(--g-dark); font-weight: 400; }
.mgsp-reviews .mgsp-stars { color: var(--g); letter-spacing: 2px; font-size: 13px; margin-bottom: 8px; display: block; }
@media (max-width: 900px) { .mgsp-proof .mgsp-stats { grid-template-columns: repeat(2, 1fr); } .mgsp-reviews { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .mgsp-proof .mgsp-stats { grid-template-columns: 1fr; } }

/* pricing table and plan cards (2026-09-07) */
.mgsp-pricing td:nth-child(2) { font-family: "Poppins", sans-serif; font-weight: 600; color: var(--ink); white-space: nowrap; }
.mgsp-pricing td a { color: var(--ink); font-weight: 500; }
.mgsp-pricing td a:hover { color: var(--g-dark); }
.mgsp-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.mgsp-plans--2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
.mgsp-plan { background: #fff; border: 1px solid var(--line); border-radius: 5px; padding: 30px 28px 28px; display: flex; flex-direction: column; }
.mgsp-plan--featured { border-color: var(--g); box-shadow: 0 8px 30px rgba(61,173,88,.12); }
.mgsp-plan h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.mgsp-plan-price { font-family: "Poppins", sans-serif; font-size: 38px; line-height: 1; font-weight: 600; color: var(--ink); letter-spacing: -1px; margin-bottom: 8px; }
.mgsp-plan-price span { font-size: 15px; font-weight: 400; color: var(--muted); letter-spacing: 0; margin-left: 4px; }
.mgsp-plan-for { font-size: 14px; color: var(--muted); margin: 0 0 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.mgsp-checks--1 { grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; flex: 1; }
.mgsp-checks--1 li { font-size: 15px; padding-left: 32px; }
.mgsp-checks--1 li::before { width: 20px; height: 20px; top: 1px; }
.mgsp-checks--1 li::after { left: 7px; top: 4px; width: 5px; height: 9px; }
.mgsp-plan .mgsp-btn { text-align: center; }
@media (max-width: 900px) { .mgsp-plans { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .mgsp-plans, .mgsp-plans--2 { grid-template-columns: 1fr; } .mgsp-plan-price { font-size: 32px; } }
