/* ==========================================
   Mediacraft Service Detail Pages — Shared
   v1.2.0 · 26 พ.ค. 2026
   ========================================== */

.svc-page {
  background: #0a0a0a;
  color: #fff;
  padding: 110px 0 80px;
  min-height: 100vh;
}

/* Breadcrumb */
.sp-bc {
  font-size: 12px;
  color: #666;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.sp-bc a {
  color: #888;
  text-decoration: none;
  transition: color .2s;
}
.sp-bc a:hover { color: #ef4444; }
.sp-bc span { color: #ef4444; }

/* Common */
.sp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  color: #ef4444;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.sp-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #ef4444;
}
.sp-h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: #fff;
}
.sp-h1 em {
  color: #ef4444;
  font-style: normal;
}
.sp-h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #fff;
  letter-spacing: -0.5px;
}
.sp-h2 em {
  color: #ef4444;
  font-style: normal;
}
.sp-lead {
  font-size: 16px;
  color: #aaa;
  line-height: 1.75;
  margin: 0 0 26px;
  max-width: 580px;
}
.sp-section {
  margin: 64px 0;
}
.sp-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: #dc2626;
  color: #fff;
}
.btn-primary:hover {
  background: #ef4444;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.15);
  color: #ccc;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border-color: rgba(220,38,38,0.4);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(220,38,38,0.1);
}
.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

/* Hero */
.sp-hero {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: center;
  margin: 24px 0 48px;
}
.sp-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.reel-frame {
  aspect-ratio: 9/16;
  background: linear-gradient(180deg, #1a0808 0%, #0a0a0a 100%);
  border: 1px solid rgba(220,38,38,0.25);
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.reel-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-play svg { width: 24px; height: 24px; }
.reel-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 11px;
  color: #aaa;
}

/* Stats */
.sp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  overflow: hidden;
  margin: 48px 0;
}
.sp-stat {
  background: #000;
  padding: 24px 20px;
  text-align: center;
}
.sp-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #ef4444;
  line-height: 1;
  margin-bottom: 8px;
}
.sp-stat-lbl {
  font-size: 10px;
  color: #888;
  letter-spacing: 2px;
  font-weight: 500;
}

/* Grid layouts */
.sp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.sp-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.sp-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.sp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Generic card */
.sp-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
  transition: all .25s;
}
.sp-card:hover {
  border-color: rgba(220,38,38,0.3);
  transform: translateY(-2px);
}
.sp-card .sp-num {
  font-size: 22px;
  font-weight: 800;
  color: #dc2626;
  line-height: 1;
  margin-bottom: 10px;
}
.sp-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}
.sp-card p {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

/* Filters */
.sp-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.sp-filter {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  cursor: pointer;
  transition: all .2s;
}
.sp-filter:hover { border-color: rgba(220,38,38,0.4); color: #fff; }
.sp-filter.active { background: #dc2626; color: #fff; border-color: #dc2626; }

/* Thumbs */
.sp-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sp-thumb {
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, border-color .3s;
}
.sp-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(220,38,38,0.18), transparent 55%);
}
.sp-thumb > * { position: relative; z-index: 1; }
.sp-thumb:hover {
  transform: translateY(-3px);
  border-color: rgba(220,38,38,0.3);
}
.sp-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
}
.sp-thumb-tag {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #ef4444;
  font-weight: 700;
  margin-bottom: 4px;
  display: inline-block;
}
.sp-thumb-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.sp-thumb-meta {
  font-size: 10px;
  color: #888;
}

/* Wide thumbs (for web/photo) */
.sp-thumbs-wide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.sp-thumbs-wide .sp-thumb {
  aspect-ratio: 16/10;
}

/* Packages */
.sp-pkg {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.sp-pkg-pop {
  background: linear-gradient(180deg, #1a0808 0%, #141414 100%);
  border-color: rgba(220,38,38,0.4);
}
.sp-pkg-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: #dc2626;
  color: #fff;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 1px;
}
.sp-pkg-tier {
  font-size: 11px;
  letter-spacing: 2px;
  color: #888;
  font-weight: 600;
  margin-bottom: 12px;
}
.sp-pkg-pop .sp-pkg-tier { color: #ef4444; }
.sp-pkg-price {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.sp-pkg-period {
  font-size: 12px;
  color: #666;
  margin-bottom: 20px;
}
.sp-pkg-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 13px;
  color: #aaa;
  line-height: 1.9;
  flex: 1;
}
.sp-pkg-feat li::before {
  content: "✓ ";
  color: #ef4444;
  font-weight: 700;
}

/* Quote */
.sp-quote {
  background: linear-gradient(135deg, #1a0808 0%, #0a0a0a 100%);
  border-left: 3px solid #dc2626;
  border-radius: 0 14px 14px 0;
  padding: 28px 32px;
  margin: 48px 0;
}
.sp-quote p {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 12px;
}
.sp-quote-by {
  font-size: 12px;
  color: #888;
  letter-spacing: 1px;
}

/* Other services */
.sp-other {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: #fff;
  transition: all .25s;
  display: block;
}
.sp-other:hover {
  border-color: rgba(220,38,38,0.4);
  transform: translateY(-3px);
}
.sp-other-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.sp-other h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #fff;
}
.sp-other p {
  font-size: 11px;
  color: #888;
  margin: 0;
}

/* Final CTA */
.sp-cta-block {
  background: linear-gradient(135deg, #1a0808 0%, #0a0a0a 100%);
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  margin-top: 64px;
}
.sp-cta-block h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
}
.sp-cta-block p {
  font-size: 14px;
  color: #aaa;
  margin: 0 0 22px;
}

/* Footer */
.sp-footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 24px;
  color: #888;
  font-size: 13px;
}
.sp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.sp-footer-brand {
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.sp-footer h4 {
  font-size: 13px;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 1px;
}
.sp-footer a {
  display: block;
  color: #888;
  text-decoration: none;
  padding: 4px 0;
  font-size: 12px;
  transition: color .2s;
}
.sp-footer a:hover { color: #ef4444; }
.sp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 20px;
  font-size: 11px;
  color: #555;
  text-align: center;
}

/* === Service-specific helpers === */

/* Dashboard mini (Ads page) */
.sp-dashboard {
  background: #0f0f0f;
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: 14px;
  padding: 18px;
}
.sp-dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 11px;
}
.sp-dashboard-live {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #10b981;
}
.sp-dashboard-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}
.sp-dashboard-big {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.sp-dashboard-delta {
  font-size: 11px;
  color: #10b981;
  margin: 4px 0 12px;
}
.sp-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
}
.sp-chart-bar {
  flex: 1;
  background: #dc2626;
  border-radius: 3px;
}

/* Card centered (capability cards) */
.sp-card-center {
  text-align: center;
  padding: 22px 16px;
}
.sp-card-center .sp-card-icon {
  font-size: 28px;
  margin-bottom: 8px;
  color: #ef4444;
}

/* Browser mockup (Web page) */
.sp-browser-mockup {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0;
}
.sp-browser-bar {
  background: #000;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sp-browser-dots {
  display: flex;
  gap: 5px;
}
.sp-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.sp-browser-url {
  flex: 1;
  font-family: monospace;
  font-size: 11px;
  background: #141414;
  color: #888;
  padding: 4px 12px;
  border-radius: 4px;
}
.sp-browser-content {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #888;
}

/* Web portfolio cards */
.sp-web-port {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all .25s;
  /* v1.0.7 — Element can be <a>; ensure anchor doesn't underline + uses inherit color */
  display: block;
  text-decoration: none;
  color: inherit;
}
.sp-web-port:hover {
  transform: translateY(-3px);
  border-color: rgba(220,38,38,0.3);
  box-shadow: 0 14px 36px rgba(220,38,38,0.12);
}
.sp-web-port:hover .sp-web-port-live { color: #34d399; }
.sp-web-port-img {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.sp-web-port-body {
  padding: 14px;
}
.sp-web-port-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.sp-web-port-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.sp-web-port-live {
  font-size: 10px;
  color: #10b981;
  font-weight: 600;
}
.sp-web-port-meta {
  font-size: 11px;
  color: #888;
}

/* Photo masonry (Studio page) */
.sp-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 110px;
  gap: 8px;
}
.sp-mass-thumb {
  background: #1a1a1a;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.sp-mass-thumb-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 10px;
  color: #fff;
  font-weight: 600;
  z-index: 1;
}

/* Green stats variant (for Ads page) */
.sp-stats-green .sp-stat-num {
  color: #10b981;
}

/* Platforms grid (5 platforms with real logos) */
.sp-platforms {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.sp-plat {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px 18px;
  text-align: center;
  transition: all .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sp-plat:hover {
  border-color: rgba(220,38,38,0.3);
  transform: translateY(-3px);
  background: #181818;
}
.sp-plat-logo {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 12px;
}
.sp-plat-logo svg {
  width: 100%;
  height: 100%;
}
.sp-plat-tiktok { background: #000; }
.sp-plat-shopee { background: rgba(238,77,45,0.08); }
.sp-plat-meta { background: rgba(8,102,255,0.08); }
.sp-plat-lazada { background: rgba(157,52,218,0.08); }
.sp-plat h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}
.sp-plat p {
  font-size: 11px;
  color: #888;
  line-height: 1.55;
  margin: 0;
}

/* === SEO search mockup (Hero) === */
.seo-search-mock {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  width: 280px;
  flex-shrink: 0;
  box-shadow: 0 12px 40px rgba(220,38,38,0.15);
}
.seo-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1f3f4;
  padding: 10px 14px;
  border-radius: 22px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #202124;
}
.seo-result {
  display: flex;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid #eee;
}
.seo-result:last-child { border-bottom: none; }
.seo-result-top {
  background: linear-gradient(90deg, rgba(220,38,38,0.06), transparent);
  border-radius: 8px;
  padding: 10px;
  border-bottom: none;
  position: relative;
}
.seo-result-top::before {
  content: "↑ #1 ranked";
  position: absolute;
  top: -8px;
  right: 8px;
  background: #10b981;
  color: #fff;
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 5px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.seo-rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.seo-rank-other { background: #888; }
.seo-result-body { flex: 1; min-width: 0; }
.seo-result-domain {
  font-size: 11px;
  color: #4d5156;
  margin-bottom: 2px;
}
.seo-domain-other { color: #888; opacity: 0.6; }
.seo-result-title {
  font-size: 13px;
  color: #1a0dab;
  font-weight: 500;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.seo-result-desc {
  font-size: 11px;
  color: #4d5156;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* === ADD-On Service card (Ads page) === */
.addon-card {
  background: linear-gradient(180deg, #1a0808 0%, #0f0606 100%);
  border: 1px solid rgba(220,38,38,0.35);
  border-radius: 20px;
  padding: 36px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.addon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(220,38,38,0.15), transparent 50%);
  pointer-events: none;
}
.addon-card > * { position: relative; z-index: 1; }
.addon-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 20px;
}
.addon-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  color: #ef4444;
  font-weight: 700;
  background: rgba(220,38,38,0.12);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.addon-card-title h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #fff;
  letter-spacing: -0.5px;
}
.addon-card-title p {
  font-size: 14px;
  color: #aaa;
  margin: 0;
}
.addon-card-platforms {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.addon-plat-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.addon-plat-badge svg { width: 100%; height: 100%; }

.addon-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 32px;
  padding: 18px 20px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
}
.addon-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}
.addon-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,0.18);
  color: #10b981;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.addon-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}
.addon-price-big {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1.5px;
}
.addon-price-big span {
  font-size: 24px;
  color: #888;
  font-weight: 600;
}
.addon-price-period {
  font-size: 14px;
  color: #888;
  margin-top: 6px;
  letter-spacing: 1px;
}

.addon-note {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,193,7,0.08);
  border: 1px solid rgba(255,193,7,0.2);
  border-radius: 10px;
  font-size: 12px;
  color: #fbbf24;
  line-height: 1.6;
}
.addon-note strong { color: #fff; }
.addon-note-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fbbf24;
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 1100px) {
  .sp-platforms { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .sp-hero { grid-template-columns: 1fr; }
  .sp-hero-visual { max-width: 280px; }
  .sp-h1 { font-size: 36px; }
  .sp-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .sp-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .sp-grid-3 { grid-template-columns: 1fr; }
  .sp-grid-2 { grid-template-columns: 1fr; }
  .sp-thumbs { grid-template-columns: repeat(2, 1fr); }
  .sp-thumbs-wide { grid-template-columns: 1fr; }
  .sp-stats { grid-template-columns: repeat(2, 1fr); }
  .sp-stat-num { font-size: 24px; }
  .sp-masonry { grid-template-columns: repeat(2, 1fr); }
  .sp-footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .sp-platforms { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .addon-card { padding: 24px 20px; }
  .addon-card-head { flex-direction: column; align-items: flex-start; }
  .addon-feat-grid { grid-template-columns: 1fr; }
  .addon-price-big { font-size: 36px; }
}
@media (max-width: 540px) {
  .svc-page { padding-top: 90px; }
  .sp-h1 { font-size: 28px; }
  .sp-h2 { font-size: 22px; }
  .sp-thumbs { grid-template-columns: 1fr 1fr; }
  .sp-platforms { grid-template-columns: 1fr; }
  .addon-price-row { flex-direction: column; align-items: flex-start; }
}
