/* ============================================================
   SUPPORT & MAINTENANCE PAGE — page-support-maintenance.css
   Depends on global: wrap, section-white, section-cream,
   btn-primary, btn-dark, btn-outline-dark, btn-outline-light,
   eyebrow, section-head, callout-lime, checklist, card-white,
   faq-list, faq-item, faq-q, faq-a, faq-toggle
   ============================================================ */

/* ─────────────────────────────────────────────────────────
   1. HERO
   ───────────────────────────────────────────────────────── */
/* Stats panel */
.sm-hero-stats-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
}

.sm-hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.sm-hero-stat {
  padding: 20px;
}
.sm-hero-stat-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sm-hero-stat-left {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 0;
}
.sm-hero-stat:not(.sm-hero-stat-left) {
  padding-right: 0;
}

.sm-hero-stat-value {
  font-size: clamp(25px, 4vw, 36px);
  font-weight: 800;
  color: #3dffb0;
  letter-spacing: -0.04em;
  line-height: 1;
}

.sm-hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
  line-height: 1.4;
}

.sm-hero-stats-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}
/* ─────────────────────────────────────────────────────────
   3. NEVER FAILED STRIP (lime band)
   ───────────────────────────────────────────────────────── */
.sm-never-failed {
  background: #3dffb0;
  padding: 28px 48px;
}
@media (max-width: 768px) {
  .sm-never-failed {
    padding: 28px 20px;
  }
}

.sm-never-failed-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.sm-nf-heading {
  font-size: 22px;
  font-weight: 800;
  color: #06061a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.sm-nf-sub {
  font-size: 14px;
}

.sm-nf-btn {
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   4. WHAT WE COVER — service card grid
   ───────────────────────────────────────────────────────── */
.sm-cover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .sm-cover-grid {
    grid-template-columns: 1fr;
  }
}

.sm-cover-card {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 14px;
  padding: 24px;
}

.sm-cover-icon {
  width: 44px;
  height: 44px;
  background: #06061a;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sm-cover-card-h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

.sm-cover-card-p {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────
   5. TWO OPTIONS
   ───────────────────────────────────────────────────────── */
.sm-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .sm-options-grid {
    grid-template-columns: 1fr;
  }
}

/* Base option card */
.sm-option-card {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.sm-option-retainer {
  background: #06061a;
  border: 2px solid rgba(61, 255, 176, 0.3);
}

.sm-option-block {
  background: #fff;
  border: 1px solid #e8e6e0;
}

.sm-option-body {
  padding: 40px 36px;
  margin-top: 0;
}
.sm-option-retainer .sm-option-body {
  margin-top: 12px;
}

/* Recommended badge */
.sm-option-badge {
  position: absolute;
  top: -1px;
  left: 36px;
  background: #3dffb0;
  color: #06061a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 10px 10px;
}

/* Labels */
.sm-option-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sm-option-label-dark  { color: rgba(255, 255, 255, 0.8); }
.sm-option-label-light { color: #6b7280; }

/* Headings */
.sm-option-h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}
.sm-option-h3-light { color: #fff; }

/* Subtext */
.sm-option-sub {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 28px;
}
.sm-option-sub-dim { color: rgba(255, 255, 255, 0.8); }

/* Feature list */
.sm-feat-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.sm-feat-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
}
.sm-feat-row-dark  { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.sm-feat-row-light { border-bottom: 1px solid #f0efea; }
.sm-feat-row:last-child { border-bottom: none; }

.sm-feat-tick  { color: #3dffb0; font-weight: 700; flex-shrink: 0; }
.sm-feat-cross { color: #ef4444; font-weight: 700; flex-shrink: 0; }

.sm-feat-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}
.sm-feat-title-light { color: #fff; }

.sm-feat-sub {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}
.sm-feat-sub-dim { color: rgba(255, 255, 255, 0.8); }

/* Price boxes */
.sm-price-box {
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.sm-price-box-lime {
  background: rgba(61, 255, 176, 0.08);
  border: 1px solid rgba(61, 255, 176, 0.15);
}

.sm-price-box-cream {
  background: #f5f4f0;
  border: 1px solid #e8e6e0;
}

.sm-price-box-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 6px;
}
.sm-price-box-label-lime { color: rgba(61, 255, 176, 0.6); }

.sm-price-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.sm-price-value-lime { color: #3dffb0; }
.sm-price-value-dark { color: #06061a; }

.sm-price-suffix {
  font-size: 14px;
  font-weight: 400;
}
.sm-price-suffix-dim { color: rgba(255, 255, 255, 0.8); }
.sm-price-box-cream .sm-price-suffix { color: #6b7280; }

.sm-price-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}
.sm-price-note-dim { color: rgba(255, 255, 255, 0.8); }

.sm-price-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* CTAs inside cards */
.sm-option-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Muted secondary button (block hours) */
.sm-btn-muted {
  border-color: rgba(20, 20, 43, 0.15);
  color: #6b7280;
}

/* Block hours tip row */
.sm-blk-tip {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0efea;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sm-blk-tip-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.sm-blk-tip p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Compare nudge bar */
.sm-nudge-bar {
  background: #06061a;
  border-radius: 14px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.sm-nudge-heading {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.sm-nudge-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* ─────────────────────────────────────────────────────────
   6. WHY RETAINER WINS
   ───────────────────────────────────────────────────────── */
.sm-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) {
  .sm-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.sm-why-para {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Testimonial card */
.sm-testimonial-card {
  background: linear-gradient(180deg, #1414c8 0%, #0a0a50 50%, #06061a 100%);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 20px;
}

.sm-testimonial-quote-mark {
  font-size: 48px;
  color: rgba(61, 255, 176, 0.6);
  font-style: italic;
  line-height: 1;
  margin-bottom: 4px;
}

.sm-testimonial-blockquote {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 24px;
}

.sm-testimonial-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.sm-testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.sm-testimonial-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.sm-why-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sm-why-cta-btn {
  flex: 1;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────
   7. PLATFORMS
   ───────────────────────────────────────────────────────── */
.sm-plat-sub {
  margin: 0 auto;
}

.sm-plat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .sm-plat-grid {
    grid-template-columns: 1fr;
  }
}

/* Featured card — lime border */
.sm-plat-featured {
  border: 2px solid #3dffb0 !important;
}

.sm-plat-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sm-plat-tag-muted { color: #6b7280; }
.sm-plat-tag-lime  { color: #2bcf8e; }

.sm-plat-card-h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.sm-plat-card-p {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 16px;
}

.sm-plat-items {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: 0;
}

.sm-plat-items li {
  font-size: 15px;
  color: #374151;
}
.sm-plat-items li::before {
  content: '→ ';
  color: #374151;
}

/* ─────────────────────────────────────────────────────────
   8. FAQ
   ───────────────────────────────────────────────────────── */
.sm-faq-footer {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #e8e6e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sm-faq-footer-text {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.sm-faq-footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────
   9. CTA BAND
   ───────────────────────────────────────────────────────── */
.sm-cta-band {
  background: #3dffb0;
  padding: 80px 48px;
  text-align: center;
}
@media (max-width: 768px) {
  .sm-cta-band {
    padding: 56px 20px;
  }
}

.sm-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.sm-cta-band h2 {
  color: #06061a;
  margin-bottom: 14px;
}

.sm-cta-band p {
  color: rgba(6, 6, 26, 0.65);
  font-size: 17px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.sm-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Plain outline button used only in CTA band */
.sm-cta-btn2 {
  display: inline-block;
  border: 1.5px solid rgba(6, 6, 26, 0.25);
  color: #06061a;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

/* Footnote bar */
.sm-footnote-bar {
  background: #f5f4f0;
  border-top: 1px solid #e8e6e0;
  padding: 14px 48px;
}
@media (max-width: 768px) {
  .sm-footnote-bar {
    padding: 14px 20px;
  }
}

.sm-footnote-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.sm-footnote-bar p {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

.callout-lime h4 {
  font-size: 17px;
}


.platform-section .section-head {
  margin: 0 auto 50px;
}
@media (max-width: 767px) {
  .sm-option-body {
    padding: 20px;
  }
  .sm-nudge-bar {
    padding: 20px;
  }
  .sm-testimonial-card {
    padding: 20px;
  }
  .sm-testimonial-quote-mark {
    font-size: 38px;
  }
  .card-white {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .sm-hero-stats-grid {
      grid-template-columns: 1fr;
  }
  .sm-hero-stat-left {
    border-right: 0px solid rgba(255, 255, 255, 0.08);
    padding-left: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  } 
  .sm-hero-stat:not(.sm-hero-stat-left) {
    padding-right: 20px;
  }
}