:root {
      --sl-blue-950: #061536;
      --sl-blue-900: #0b1f4d;
      --sl-blue-800: #12337a;
      --sl-blue-700: #1d4ed8;
      --sl-blue-600: #2563eb;
      --sl-blue-500: #3b82f6;
      --sl-cyan-400: #22d3ee;
      --sl-violet-500: #7c3aed;
      --sl-emerald-500: #10b981;
      --sl-amber-500: #f59e0b;
      --sl-rose-500: #f43f5e;
      --sl-ink: #101827;
      --sl-muted: #475569;
      --sl-soft: #f3f7fc;
      --sl-soft-2: #e8f0fb;
      --sl-white: #ffffff;
      --sl-border: rgba(15, 23, 42, 0.10);
      --sl-border-strong: rgba(15, 23, 42, 0.16);
      --sl-shadow-xs: 0 1px 2px rgba(7, 18, 43, 0.08);
      --sl-shadow-sm: 0 8px 24px rgba(9, 30, 66, 0.10);
      --sl-shadow-md: 0 20px 50px rgba(9, 30, 66, 0.14);
      --sl-shadow-lg: 0 28px 80px rgba(9, 30, 66, 0.22);
      --sl-radius-sm: 12px;
      --sl-radius-md: 18px;
      --sl-radius-lg: 28px;
      --sl-radius-xl: 36px;
      --sl-container: 1240px;
      --sl-transition: 220ms ease;
      --sl-banner-heading-desktop: 65px;
      --sl-banner-heading-tablet: 50px;
      --sl-banner-heading-mobile: 40px;
      --sl-content-heading-desktop: 50px;
      --sl-content-heading-tablet: 40px;
      --sl-content-heading-mobile: 30px;
      --sl-content-text: 18px;
      --sl-accent-text: 16px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      min-height: 100vh;
      color: var(--sl-ink);
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 34rem),
        radial-gradient(circle at 85% 8%, rgba(124, 58, 237, 0.12), transparent 28rem),
        linear-gradient(180deg, #f8fbff 0%, #eef5ff 42%, #f8fbff 100%);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: var(--sl-content-text);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; border: 0; }
    img, svg { display: block; max-width: 100%; }

    .sp-page { overflow: clip; }
    .sp-container { width: min(var(--sl-container), calc(100% - 40px)); margin: 0 auto; }

    .sp-btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 14px;
      padding: 13px 20px;
      font-size: var(--sl-accent-text);
      font-weight: 700;
      line-height: 1.15;
      transition: transform var(--sl-transition), box-shadow var(--sl-transition), border-color var(--sl-transition);
      white-space: nowrap;
    }
    .sp-btn:hover { transform: translateY(-2px); }
    .sp-btn:focus-visible,
    .sp-nav-links a:focus-visible,
    .sp-nav-toggle:focus-visible,
    .sp-cart-icon:focus-visible,
    .sp-modal-close:focus-visible,
    .sp-gallery-btn:focus-visible {
      outline: 4px solid rgba(29, 78, 216, 0.42);
      outline-offset: 4px;
    }
    .sp-btn-primary { color: #fff; background: linear-gradient(135deg, var(--sl-blue-700), var(--sl-blue-500)); box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28); }
    .sp-btn-dark { color: #fff; background: rgba(2, 6, 23, 0.92); box-shadow: 0 14px 30px rgba(2, 6, 23, 0.24); }
    .sp-btn-secondary { color: #101827; background: rgba(255, 255, 255, 0.92); border: 1px solid rgba(15,23,42,0.14); box-shadow: var(--sl-shadow-xs); }
    .sp-btn-outline { color: #12337a; background: transparent; border: 1px solid rgba(37, 99, 235, 0.22); }
    .sp-btn-full { width: 100%; }

    .sp-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 8px 13px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.92);
      font-size: var(--sl-accent-text);
      font-weight: 700;
      letter-spacing: 0.02em;
      backdrop-filter: blur(16px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    }
    .sp-eyebrow-light { color: var(--sl-blue-800); background: rgba(37, 99, 235, 0.08); border-color: rgba(37, 99, 235, 0.15); box-shadow: none; }

    .sp-section { padding: 78px 0; }
    .sp-section-head { display: grid; gap: 14px; max-width: 820px; margin-bottom: 32px; }
    .sp-section-title { font-size: var(--sl-content-heading-desktop); line-height: 1.08; letter-spacing: -0.035em; font-weight: 700; color: var(--sl-ink); }
    .sp-section-copy { max-width: 720px; color: var(--sl-muted); font-size: var(--sl-content-text); line-height: 1.72; }

    .sp-hero {
      position: relative;
      padding: 34px 0 76px;
      background: linear-gradient(135deg, rgba(7, 20, 55, 0.98) 0%, rgba(18, 51, 122, 0.98) 45%, rgba(37, 99, 235, 0.94) 100%);
      color: #fff;
      isolation: isolate;
      overflow: hidden;
    }
    .sp-hero::before,
    .sp-hero::after { content: ""; position: absolute; z-index: -1; border-radius: 999px; pointer-events: none; }
    .sp-hero::before { width: 52rem; height: 52rem; right: -16rem; top: -23rem; background: radial-gradient(circle, rgba(34, 211, 238, 0.28), rgba(34, 211, 238, 0) 68%); }
    .sp-hero::after { width: 34rem; height: 34rem; left: -15rem; bottom: -14rem; background: radial-gradient(circle, rgba(124, 58, 237, 0.30), rgba(124, 58, 237, 0) 66%); }

    .sp-nav { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 68px; }
    .sp-brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
    .sp-brand-mark {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      background: linear-gradient(135deg, #fff, rgba(255,255,255,0.72));
      color: var(--sl-blue-800);
      box-shadow: 0 18px 40px rgba(0,0,0,0.22);
      font-size: 15px;
      font-weight: 900;
      flex: 0 0 auto;
    }
    .sp-brand-text { display: grid; min-width: 0; }
    .sp-brand-name { color: #fff; font-size: 17px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
    .sp-brand-sub { color: rgba(255,255,255,0.68); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.11em; }
    .sp-nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; min-width: 0; }
    .sp-nav-links { display: flex; align-items: center; gap: 10px; padding: 6px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; background: rgba(255,255,255,0.08); backdrop-filter: blur(18px); }
    .sp-nav-links a { display: inline-flex; align-items: center; min-height: 38px; padding: 8px 14px; border-radius: 999px; color: rgba(255,255,255,0.88); font-size: var(--sl-accent-text); font-weight: 700; line-height: 1.15; }
    .sp-cart-icon { position: relative; width: 48px; height: 48px; display: inline-grid; place-items: center; flex: 0 0 48px; border: 1px solid rgba(255,255,255,0.22); border-radius: 16px; color: #fff; background: rgba(255,255,255,0.12); box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 14px 34px rgba(2,6,23,0.20); backdrop-filter: blur(18px); transition: transform var(--sl-transition), border-color var(--sl-transition), background var(--sl-transition); }
    .sp-cart-icon:hover { transform: translateY(-2px); background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.34); }
    .sp-cart-icon svg { width: 21px; height: 21px; }
    .sp-cart-count { position: absolute; top: -8px; right: -8px; min-width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; padding: 0 6px; border: 2px solid rgba(8, 24, 61, 0.96); border-radius: 999px; color: #ffffff; background: #f43f5e; font-size: 12px; font-weight: 900; line-height: 1; box-shadow: 0 8px 18px rgba(2, 6, 23, 0.22); }
    .sp-nav-toggle { display: none; align-items: center; justify-content: center; flex-direction: column; gap: 5px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.22); border-radius: 16px; color: #fff; background: rgba(255,255,255,0.12); box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 14px 34px rgba(2,6,23,0.20); backdrop-filter: blur(18px); }
    .sp-nav-line { width: 20px; height: 2px; border-radius: 999px; background: currentColor; transition: transform var(--sl-transition), opacity var(--sl-transition); }
    .sp-nav-toggle[aria-expanded="true"] .sp-nav-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .sp-nav-toggle[aria-expanded="true"] .sp-nav-line:nth-child(2) { opacity: 0; }
    .sp-nav-toggle[aria-expanded="true"] .sp-nav-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .sp-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 430px); gap: 44px; align-items: center; }
    .sp-hero-content { display: grid; gap: 22px; }
    .sp-tags { display: flex; flex-wrap: wrap; gap: 10px; }
    .sp-hero h1 { max-width: 780px; font-size: var(--sl-banner-heading-desktop); font-weight: 700; line-height: 1.02; letter-spacing: -0.045em; }
    .sp-hero p { max-width: 680px; color: rgba(255,255,255,0.92); font-size: var(--sl-content-text); line-height: 1.72; }
    .sp-download-count { width: fit-content; display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; color: rgba(255,255,255,0.92); background: rgba(255,255,255,0.10); font-size: 14px; font-weight: 800; }
    .sp-download-count strong { color: #ffffff; font-weight: 950; }
    .sp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 4px; }
    .sp-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
    .sp-trust-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.88); font-size: 14px; font-weight: 700; }
    .sp-trust-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sl-emerald-500); box-shadow: 0 0 0 4px rgba(16,185,129,0.12); }

    .sp-buy-card { border: 1px solid rgba(255,255,255,0.18); border-radius: 32px; background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.10)); box-shadow: 0 40px 100px rgba(2, 6, 23, 0.42); backdrop-filter: blur(24px); overflow: hidden; padding: 18px; }
    .sp-buy-card-inner { display: grid; gap: 16px; border-radius: 24px; padding: 22px; background: rgba(255,255,255,0.95); color: var(--sl-ink); box-shadow: inset 0 1px 0 #fff; }
    .sp-product-line { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--sl-border); }
    .sp-product-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 20px; color: #fff; background: linear-gradient(135deg, var(--sl-blue-700), var(--sl-cyan-400)); box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28); font-size: 28px; font-weight: 900; }
    .sp-product-line strong { display: block; font-size: 21px; line-height: 1.18; letter-spacing: -0.03em; }
    .sp-product-line span { display: block; color: var(--sl-muted); font-size: 13px; font-weight: 700; margin-top: 3px; }
    .sp-price-card { display: grid; gap: 10px; padding: 18px; border: 1px solid rgba(37,99,235,0.14); border-radius: 22px; background: linear-gradient(180deg, #fff, #f8fbff); }
    .sp-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
    .sp-price { color: var(--sl-blue-800); font-size: 42px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
    .sp-price-term { color: var(--sl-muted); font-size: 18px; font-weight: 700; }
    .sp-billing-badge { width: fit-content; display: inline-flex; align-items: center; gap: 8px; min-height: 34px; padding: 7px 11px; border-radius: 999px; color: #12337a; background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.13); font-size: 14px; font-weight: 700; }
    .sp-buy-actions { display: grid; gap: 10px; }
    .sp-meta { display: grid; gap: 0; list-style: none; }
    .sp-meta li { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--sl-border); font-size: 14px; }
    .sp-meta li:last-child { border-bottom: 0; }
    .sp-meta span { color: var(--sl-muted); font-weight: 700; }
    .sp-meta strong { color: var(--sl-ink); text-align: right; font-weight: 700; }

    .sp-gallery-section { padding: 72px 0 34px; }
    .sp-gallery-carousel {
      --sp-gallery-gap: 18px;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--sl-border);
      border-radius: 30px;
      background: rgba(255,255,255,0.74);
      box-shadow: var(--sl-shadow-sm);
      backdrop-filter: blur(18px);
      padding: 18px;
    }
    .sp-gallery-viewport {
      overflow: hidden;
      border-radius: 24px;
    }
    .sp-gallery-track {
      display: flex;
      gap: var(--sp-gallery-gap);
      will-change: transform;
      transition: transform 260ms ease;
    }
    .sp-gallery-btn {
      display: block;
      flex: 0 0 calc((100% - (var(--sp-gallery-gap) * 3)) / 4);
      aspect-ratio: 1 / 1;
      border-radius: 24px;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--sl-border);
      box-shadow: var(--sl-shadow-xs);
      text-align: left;
      position: relative;
      transition: transform var(--sl-transition), box-shadow var(--sl-transition), border-color var(--sl-transition);
      touch-action: pan-y;
    }
    .sp-gallery-btn:hover { transform: translateY(-4px); box-shadow: var(--sl-shadow-md); border-color: rgba(37,99,235,0.22); }
    .sp-gallery-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-top: 16px;
    }
    .sp-gallery-count {
      color: var(--sl-muted);
      font-size: 14px;
      font-weight: 700;
    }
    .sp-gallery-arrows {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .sp-gallery-arrow {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      border: 1px solid rgba(37,99,235,0.14);
      color: var(--sl-blue-800);
      background: #fff;
      box-shadow: var(--sl-shadow-xs);
      font-size: 20px;
      font-weight: 700;
      line-height: 1;
      transition: transform var(--sl-transition), border-color var(--sl-transition), box-shadow var(--sl-transition), opacity var(--sl-transition);
    }
    .sp-gallery-arrow:hover { transform: translateY(-2px); border-color: rgba(37,99,235,0.28); box-shadow: var(--sl-shadow-sm); }
    .sp-gallery-arrow:disabled { opacity: 0.42; cursor: not-allowed; transform: none; box-shadow: none; }
    .sp-gallery-arrow:focus-visible { outline: 4px solid rgba(29, 78, 216, 0.42); outline-offset: 4px; }
    .sp-gallery-image {
      width: 100%;
      height: 100%;
      display: grid;
      align-content: space-between;
      gap: 18px;
      padding: 18px;
      color: var(--sl-ink);
      background: linear-gradient(180deg, #fff, #f8fbff);
    }
    .sp-gallery-image.dark { color: #fff; background: linear-gradient(135deg, var(--sl-blue-950), var(--sl-blue-700)); }
    .sp-gallery-image.violet { color: #fff; background: linear-gradient(135deg, #3b0764, var(--sl-violet-500)); }
    .sp-gallery-image.green { color: #fff; background: linear-gradient(135deg, #064e3b, #059669); }
    .sp-gallery-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .sp-gallery-title { font-size: 16px; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
    .sp-gallery-badge { padding: 6px 9px; border-radius: 999px; background: rgba(37,99,235,0.08); color: var(--sl-blue-800); font-size: 11px; font-weight: 700; }
    .sp-gallery-image.dark .sp-gallery-badge,
    .sp-gallery-image.violet .sp-gallery-badge,
    .sp-gallery-image.green .sp-gallery-badge { color: #fff; background: rgba(255,255,255,0.16); }
    .sp-gallery-lines { display: grid; gap: 10px; }
    .sp-gallery-lines span { display: block; height: 12px; border-radius: 999px; background: #e5edf7; }
    .sp-gallery-image.dark .sp-gallery-lines span,
    .sp-gallery-image.violet .sp-gallery-lines span,
    .sp-gallery-image.green .sp-gallery-lines span { background: rgba(255,255,255,0.20); }
    .sp-gallery-lines span:nth-child(1) { width: 92%; }
    .sp-gallery-lines span:nth-child(2) { width: 68%; }
    .sp-gallery-lines span:nth-child(3) { width: 82%; }
    .sp-gallery-footer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .sp-gallery-stat { height: 38px; border-radius: 12px; background: rgba(37,99,235,0.08); }
    .sp-gallery-image.dark .sp-gallery-stat,
    .sp-gallery-image.violet .sp-gallery-stat,
    .sp-gallery-image.green .sp-gallery-stat { background: rgba(255,255,255,0.14); }

    .sp-simple-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    .sp-card { padding: 24px; border: 1px solid var(--sl-border); border-radius: 24px; background: rgba(255,255,255,0.82); box-shadow: var(--sl-shadow-sm); backdrop-filter: blur(18px); }
    .sp-card-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(135deg, var(--sl-blue-700), var(--sl-cyan-400)); box-shadow: 0 14px 26px rgba(37,99,235,0.22); margin-bottom: 18px; font-weight: 700; }
    .sp-card h3 { margin-bottom: 8px; font-size: 20px; font-weight: 700; line-height: 1.25; letter-spacing: -0.025em; }
    .sp-card p { color: var(--sl-muted); font-size: var(--sl-content-text); line-height: 1.72; }

    .sp-compare { background: linear-gradient(135deg, rgba(7, 20, 55, 0.96), rgba(18, 51, 122, 0.94)); color: #fff; }
    .sp-compare .sp-section-title { color: #fff; }
    .sp-compare .sp-section-copy { color: rgba(255,255,255,0.82); }
    .sp-compare-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .sp-tier { overflow: hidden; border: 1px solid rgba(255,255,255,0.16); border-radius: 28px; background: rgba(255,255,255,0.08); box-shadow: 0 24px 70px rgba(2, 6, 23, 0.25); backdrop-filter: blur(20px); }
    .sp-tier-head { padding: 24px; border-bottom: 1px solid rgba(255,255,255,0.14); }
    .sp-tier-head strong { display: block; font-size: 26px; font-weight: 700; letter-spacing: -0.03em; }
    .sp-tier-head span { display: block; margin-top: 6px; color: rgba(255,255,255,0.76); font-size: 15px; font-weight: 700; }
    .sp-tier ul { list-style: none; display: grid; gap: 12px; padding: 24px; }
    .sp-tier li { display: flex; gap: 11px; align-items: flex-start; color: rgba(255,255,255,0.88); font-size: 16px; line-height: 1.6; }
    .sp-tier li::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; flex: 0 0 auto; border-radius: 50%; color: #fff; background: rgba(16,185,129,0.78); font-size: 13px; font-weight: 900; }
    .sp-tier-pro { border-color: rgba(34,211,238,0.34); background: linear-gradient(180deg, rgba(37,99,235,0.26), rgba(255,255,255,0.08)); }

    .sp-support-panel { display: grid; grid-template-columns: 1fr 0.75fr; gap: 24px; align-items: center; padding: 34px; border-radius: 32px; color: #fff; background: radial-gradient(circle at 86% 22%, rgba(34, 211, 238, 0.26), transparent 22rem), linear-gradient(135deg, var(--sl-blue-950), var(--sl-blue-700)); box-shadow: var(--sl-shadow-lg); }
    .sp-support-panel h2 { font-size: var(--sl-content-heading-tablet); line-height: 1.08; letter-spacing: -0.035em; font-weight: 700; margin-bottom: 12px; }
    .sp-support-panel p { color: rgba(255,255,255,0.84); font-size: var(--sl-content-text); line-height: 1.72; }
    .sp-support-note { display: grid; gap: 10px; padding: 22px; border: 1px solid rgba(255,255,255,0.18); border-radius: 24px; background: rgba(255,255,255,0.10); backdrop-filter: blur(18px); }
    .sp-support-note strong { font-size: 20px; line-height: 1.25; }
    .sp-support-note span { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.62; }

    .sp-faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .sp-faq-card { padding: 24px; border: 1px solid var(--sl-border); border-radius: 22px; background: rgba(255,255,255,0.82); box-shadow: var(--sl-shadow-sm); }
    .sp-faq-card h3 { margin-bottom: 8px; font-size: 18px; font-weight: 700; letter-spacing: -0.025em; }
    .sp-faq-card p { color: var(--sl-muted); font-size: 16px; line-height: 1.72; }

    .sp-final-cta { padding: 90px 0; }
    .sp-final-panel { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 42px; border-radius: 34px; color: #fff; background: radial-gradient(circle at 82% 20%, rgba(34, 211, 238, 0.28), transparent 26rem), linear-gradient(135deg, var(--sl-blue-950), var(--sl-blue-700)); box-shadow: 0 34px 90px rgba(13, 42, 103, 0.32); }
    .sp-final-panel h2 { max-width: 720px; margin-bottom: 12px; font-size: var(--sl-content-heading-desktop); line-height: 1.08; letter-spacing: -0.035em; font-weight: 700; }
    .sp-final-panel p { max-width: 720px; color: rgba(255,255,255,0.82); font-size: var(--sl-content-text); line-height: 1.72; }
    .sp-final-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

    .sp-footer { padding: 34px 0; color: #64748b; background: #fff; border-top: 1px solid var(--sl-border); }
    .sp-footer-inner { display: flex; justify-content: space-between; gap: 18px; align-items: center; font-size: 14px; }
    .sp-footer-links { display: flex; gap: 14px; font-weight: 700; color: var(--sl-blue-800); }

    .sp-modal { position: fixed; inset: 0; z-index: 120; display: none; padding: 20px; background: rgba(2,6,23,0.66); backdrop-filter: blur(14px); overflow-y: auto; }
    .sp-modal.is-active { display: block; }
    .sp-modal-shell { position: relative; width: min(780px, 100%); margin: 26px auto; border-radius: 28px; background: #fff; box-shadow: 0 36px 110px rgba(0,0,0,0.38); overflow: hidden; }
    .sp-modal-head { padding: 26px 74px 22px 26px; color: #fff; background: linear-gradient(135deg, var(--sl-blue-950), var(--sl-blue-700)); }
    .sp-modal-head h2 { font-size: 28px; line-height: 1.12; letter-spacing: -0.03em; }
    .sp-modal-head p { color: rgba(255,255,255,0.78); margin-top: 8px; font-size: 15px; line-height: 1.62; }
    .sp-modal-close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 999px; color: #fff; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22); font-size: 24px; line-height: 1; }
    .sp-modal-body { padding: 26px; }
    .sp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .sp-field { display: grid; gap: 6px; }
    .sp-field-full { grid-column: 1 / -1; }
    .sp-field label { color: #344054; font-size: 13px; font-weight: 700; }
    .sp-input { width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid var(--sl-border-strong); border-radius: 13px; background: #fff; color: var(--sl-ink); }
    textarea.sp-input { min-height: 120px; resize: vertical; }
    .sp-form-note { margin-top: 10px; color: var(--sl-muted); font-size: 13px; line-height: 1.55; }

    .sp-gallery-modal-preview { aspect-ratio: 1 / 1; border-radius: 24px; overflow: hidden; border: 1px solid var(--sl-border); }
    .sp-gallery-modal-preview .sp-gallery-image { padding: 28px; }

    @media (max-width: 1120px) {
      .sp-hero-grid,
      .sp-support-panel,
      .sp-final-panel { grid-template-columns: 1fr; }
      .sp-final-actions { justify-content: flex-start; }
      .sp-gallery-btn { flex-basis: calc((100% - var(--sp-gallery-gap)) / 2); }
      .sp-simple-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 920px) {
      .sp-nav { align-items: center; margin-bottom: 50px; }
      .sp-nav-actions { margin-left: auto; gap: 10px; }
      .sp-nav-toggle { display: inline-flex; }
      .sp-nav-links { position: absolute; top: calc(100% + 12px); left: 0; right: 0; z-index: 30; display: none; width: 100%; align-items: stretch; flex-direction: column; gap: 8px; padding: 12px; border-radius: 24px; background: rgba(8, 24, 61, 0.96); box-shadow: 0 24px 70px rgba(2,6,23,0.35); }
      .sp-nav.is-open .sp-nav-links { display: flex; }
      .sp-nav-links a { width: 100%; min-height: 48px; justify-content: space-between; padding: 13px 14px; color: #fff; border-radius: 16px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.10); }
      .sp-nav-links a::after { content: "→"; opacity: 0.78; }
      .sp-hero h1 { font-size: var(--sl-banner-heading-tablet); line-height: 1.06; letter-spacing: -0.04em; }
      .sp-section-title,
      .sp-final-panel h2 { font-size: var(--sl-content-heading-tablet); line-height: 1.12; }
      .sp-section { padding: 66px 0; }
      .sp-gallery-section { padding-top: 62px; }
      .sp-compare-grid,
      .sp-faq-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      body { font-size: 16px; }
      .sp-container { width: min(100% - 24px, var(--sl-container)); }
      .sp-hero { padding-top: 26px; padding-bottom: 58px; }
      .sp-brand-name { font-size: 16px; }
      .sp-brand-sub { display: none; }
      .sp-hero h1 { font-size: var(--sl-banner-heading-mobile); line-height: 1.08; letter-spacing: -0.035em; }
      .sp-section-title,
      .sp-final-panel h2 { font-size: var(--sl-content-heading-mobile); line-height: 1.16; letter-spacing: -0.025em; }
      .sp-section-copy,
      .sp-hero p,
      .sp-card p,
      .sp-support-panel p,
      .sp-final-panel p { font-size: 16px; line-height: 1.68; }
      .sp-eyebrow,
      .sp-btn,
      .sp-nav-links a { font-size: 15px; }
      .sp-hero-actions,
      .sp-final-actions { width: 100%; flex-direction: column; }
      .sp-btn { width: 100%; }
      .sp-buy-card { padding: 12px; border-radius: 26px; }
      .sp-buy-card-inner,
      .sp-card,
      .sp-tier-head,
      .sp-support-panel,
      .sp-final-panel { padding: 20px; }
      .sp-price { font-size: 36px; }
      .sp-gallery-btn { flex-basis: 100%; }
      .sp-simple-grid { grid-template-columns: 1fr; }
      .sp-gallery-btn { border-radius: 22px; }
      .sp-gallery-image { padding: 18px; }
      .sp-support-panel,
      .sp-final-panel { border-radius: 26px; }
      .sp-footer-inner { align-items: flex-start; flex-direction: column; }
      .sp-form-grid { grid-template-columns: 1fr; }
      .sp-modal { padding: 10px; }
      .sp-modal-shell { margin: 12px auto; border-radius: 22px; }
      .sp-modal-head { padding: 22px 68px 18px 20px; }
      .sp-modal-body { padding: 20px; }
    }


    /* Mobile full-width refinement: remove extra container frames so hero/cards do not feel squeezed. */
    @media (max-width: 640px) {
      .sp-container { width: 100%; }
      .sp-nav,
      .sp-hero-content,
      .sp-section-head,
      .sp-footer-inner {
        padding-left: 16px;
        padding-right: 16px;
      }
      .sp-hero-grid { gap: 28px; }
      .sp-buy-card {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
      }
      .sp-buy-card-inner {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        box-shadow: none;
      }
      .sp-gallery-carousel,
      .sp-card,
      .sp-tier,
      .sp-support-panel,
      .sp-final-panel,
      .sp-faq-card {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        box-shadow: none;
      }
      .sp-gallery-carousel { padding: 14px 16px; }
      .sp-simple-grid,
      .sp-compare-grid,
      .sp-faq-grid { gap: 14px; }
      .sp-support-panel,
      .sp-final-panel { margin-left: 0; margin-right: 0; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
    }


/* Dynamic WordPress template aliases and cleanup. */
.sp-simple-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: start;
}
.sp-copy-card,
.sp-feature-card,
.sp-tier-card,
.sp-faq-card {
  border: 1px solid var(--sl-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  padding: 24px;
  box-shadow: var(--sl-shadow-sm);
}
.sp-copy-card p,
.sp-feature-card p,
.sp-faq-card p {
  color: var(--sl-muted);
  font-size: var(--sl-content-text);
  line-height: 1.72;
}
.sp-copy-card-muted {
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.sp-copy-card h3,
.sp-feature-card h3,
.sp-faq-card h3 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.sp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.sp-feature-card span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #047857;
  background: rgba(16, 185, 129, 0.12);
  font-weight: 900;
  margin-bottom: 16px;
}
.sp-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.sp-tier-card {
  overflow: hidden;
  padding: 0;
}
.sp-tier-card .sp-tier-head {
  background: var(--sl-soft);
  border-bottom: 1px solid var(--sl-border);
  color: var(--sl-ink);
}
.sp-tier-card .sp-tier-head span {
  color: var(--sl-muted);
}
.sp-tier-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 22px;
}
.sp-tier-card li {
  color: #344054;
  font-size: 16px;
  line-height: 1.6;
}
.sp-tier-card.is-pro {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: var(--sl-shadow-md);
}
.sp-gallery-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  color: #fff;
  background: linear-gradient(135deg, var(--card-from, #12337a), var(--card-to, #2563eb));
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .sp-simple-grid,
  .sp-feature-grid,
  .sp-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .sp-copy-card,
  .sp-feature-card,
  .sp-tier-card,
  .sp-faq-card {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
}


/* v1.4.1 product template polish: lock contrast, product mark, and no hover color drift. */
.sp-page .sp-hero h1,
.sp-page .sp-final-panel h2,
.sp-page .sp-compare .sp-section-title {
  color: #ffffff !important;
}
.sp-page .sp-hero p,
.sp-page .sp-final-panel p,
.sp-page .sp-compare .sp-section-copy {
  color: rgba(255, 255, 255, 0.92) !important;
}
.sp-page .sp-btn-primary,
.sp-page .sp-btn-primary:hover,
.sp-page .sp-btn-primary:focus,
.sp-page .sp-btn-primary:visited {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--sl-blue-700), var(--sl-blue-500)) !important;
}
.sp-page .sp-btn-dark,
.sp-page .sp-btn-dark:hover,
.sp-page .sp-btn-dark:focus,
.sp-page .sp-btn-dark:visited {
  color: #ffffff !important;
  background: rgba(2, 6, 23, 0.92) !important;
}
.sp-page .sp-btn-secondary,
.sp-page .sp-btn-secondary:hover,
.sp-page .sp-btn-secondary:focus,
.sp-page .sp-btn-secondary:visited,
.sp-page .sp-btn-outline,
.sp-page .sp-btn-outline:hover,
.sp-page .sp-btn-outline:focus,
.sp-page .sp-btn-outline:visited {
  color: #101827 !important;
}
.sp-page .sp-btn:hover {
  filter: none !important;
}
.sp-page .sp-product-icon {
  display: inline-grid !important;
  place-items: center !important;
  line-height: 1 !important;
  overflow: hidden;
}
.sp-page .sp-product-icon svg {
  width: 34px;
  height: 34px;
  color: #ffffff;
}
.sp-page .sp-compare {
  background:
    radial-gradient(circle at 78% 18%, rgba(34, 211, 238, 0.18), transparent 28rem),
    linear-gradient(135deg, rgba(7, 20, 55, 0.98), rgba(18, 51, 122, 0.96));
}
.sp-page .sp-compare-head {
  max-width: 920px;
}
.sp-page .sp-compare .sp-eyebrow-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}
.sp-page .sp-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.sp-page .sp-compare .sp-tier {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.25);
  backdrop-filter: blur(20px);
}
.sp-page .sp-compare .sp-tier-head {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  background: transparent;
}
.sp-page .sp-compare .sp-tier-head strong {
  display: block;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.sp-page .sp-compare .sp-tier-head span,
.sp-page .sp-compare .sp-tier li {
  color: rgba(255, 255, 255, 0.88);
}
.sp-page .sp-compare .sp-tier ul {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 24px;
}
.sp-page .sp-compare .sp-tier li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.6;
}
.sp-page .sp-compare .sp-tier li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(16,185,129,0.78);
  font-size: 13px;
  font-weight: 900;
}
.sp-page .sp-compare .sp-tier-pro {
  border-color: rgba(34, 211, 238, 0.34);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.26), rgba(255,255,255,0.08));
}
@media (max-width: 1024px) {
  .sp-page .sp-compare-grid {
    grid-template-columns: 1fr;
  }
}


/* v1.4.2 commerce action and support contrast locks. */
.sp-page .sp-support-panel h2,
.sp-page .sp-support-panel .sp-section-title,
.sp-page .sp-support-panel .sp-section-copy {
  color: #ffffff !important;
}
.sp-page .sp-support-panel .sp-btn-secondary,
.sp-page .sp-support-panel .sp-btn-secondary:hover,
.sp-page .sp-support-panel .sp-btn-secondary:focus,
.sp-page .sp-support-panel .sp-btn-secondary:visited {
  color: #101827 !important;
  background: rgba(255, 255, 255, 0.92) !important;
}


/* v1.4.3 cart badge and sticky buybar cleanup. */
.sp-page .sp-cart-count {
  color: #ffffff !important;
  background: #f43f5e !important;
}

/* v1.4.5 AJAX add-to-cart state locks */
.sp-page .sp-btn.is-loading,
.sp-page .sp-btn.is-added {
  pointer-events: none;
  opacity: 0.92;
  transform: none !important;
}

.sp-page .sp-btn.is-added {
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.22) !important;
}

/* v1.4.6 AJAX add-to-cart feedback and quantity update polish */
.sp-cart-feedback {
  display: none;
  width: min(var(--sl-container), calc(100% - 40px));
  margin: -34px auto 28px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(16, 185, 129, 0.18);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.18);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
  backdrop-filter: blur(18px);
}

.sp-cart-feedback.is-visible {
  display: block;
}

.sp-cart-feedback.is-error {
  background: rgba(244, 63, 94, 0.18);
}

.sp-cart-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  max-width: min(420px, calc(100vw - 32px));
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #061536, #12337a);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.32);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sp-cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sp-cart-toast.is-error {
  background: linear-gradient(135deg, #7f1d1d, #e11d48);
}

.sp-btn.is-loading {
  opacity: .82;
  cursor: progress;
}

.sp-btn.is-added {
  color: #ffffff !important;
  background: linear-gradient(135deg, #047857, #10b981) !important;
}

@media (max-width: 640px) {
  .sp-cart-feedback {
    width: calc(100% - 22px);
    margin: -18px auto 20px;
    border-radius: 14px;
    font-size: 14px;
  }

  .sp-cart-toast {
    left: 12px;
    right: 12px;
    bottom: 14px;
    max-width: none;
  }
}

.sp-plan-selector {
    align-items: stretch;
    border: 1px solid rgba(18, 51, 122, 0.12);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
}
.sp-plan-selector h3 {
    font-size: 1.1rem;
    margin: 0;
}
.sp-plan-selector p {
    color: var(--sl-muted);
    margin: 0;
}
.sp-plan-selector form.cart,
.sp-plan-selector .variations_form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
}
.sp-plan-selector table.variations {
    border: 0;
    margin: 0;
    width: 100%;
}
.sp-plan-selector table.variations th,
.sp-plan-selector table.variations td {
    border: 0;
    display: block;
    padding: 0 0 8px;
    text-align: left;
}
.sp-plan-selector select,
.sp-plan-selector input.qty {
    border: 1px solid rgba(18, 51, 122, 0.18);
    border-radius: 12px;
    min-height: 44px;
    padding: 0 12px;
    width: 100%;
}
.sp-plan-selector .single_add_to_cart_button {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    min-height: 48px;
    padding: 0 24px;
}


/* v2.5.21: variable product purchase-card polish. */
.sp-price-label {
  display: block;
  color: var(--sl-muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.sp-price-note {
  color: #334155;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.sp-price-card .sp-price-row {
  align-items: baseline;
  gap: 8px;
}
.sp-price-card .sp-price {
  overflow-wrap: anywhere;
}
.sp-plan-selector {
  background: #ffffff;
  border-color: rgba(18, 51, 122, 0.14);
  border-radius: 24px;
  gap: 16px;
  padding: 22px;
}
.sp-plan-selector h3 {
  color: var(--sl-ink);
  font-size: 22px;
  line-height: 1.2;
}
.sp-plan-selector p {
  color: var(--sl-muted);
  font-size: 15px;
  line-height: 1.55;
}
.sp-plan-selector table.variations label {
  color: var(--sl-ink);
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 8px;
}
.sp-plan-selector table.variations td.value {
  padding-bottom: 0;
}
.sp-plan-selector select,
.sp-plan-selector input.qty {
  background: #ffffff;
  border: 1px solid rgba(18, 51, 122, 0.20);
  border-radius: 16px;
  color: var(--sl-ink);
  min-height: 56px;
  padding: 0 16px;
}
.sp-plan-selector .single_variation_wrap {
  display: grid;
  gap: 14px;
}
.sp-plan-selector .woocommerce-variation-price .price {
  align-items: baseline;
  color: var(--sl-blue-800);
  column-gap: 12px;
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  row-gap: 8px;
}
.sp-plan-selector .woocommerce-variation-price .price del {
  color: #64748b;
  display: inline-flex;
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  opacity: 1;
}
.sp-plan-selector .woocommerce-variation-price .price del .amount {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.sp-plan-selector .woocommerce-variation-price .price ins {
  display: inline-flex;
  margin: 0;
  text-decoration: none;
}
.sp-plan-selector .woocommerce-variation-description,
.sp-plan-selector .woocommerce-variation-availability {
  color: var(--sl-muted);
  font-size: 14px;
  line-height: 1.5;
}
.sp-plan-selector .woocommerce-variation-add-to-cart {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: 92px minmax(0, 1fr);
}
.sp-plan-selector .quantity {
  display: block;
  margin: 0;
  width: 100%;
}
.sp-plan-selector .quantity .qty,
.sp-plan-selector input.qty {
  text-align: center;
  width: 100%;
}
.sp-plan-selector .single_add_to_cart_button,
.sp-plan-selector button.button.single_add_to_cart_button {
  align-items: center;
  background: linear-gradient(135deg, var(--sl-blue-700), var(--sl-blue-500));
  border: 0;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
  color: #ffffff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 900;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  width: 100%;
}
.sp-plan-selector .single_add_to_cart_button.disabled,
.sp-plan-selector .single_add_to_cart_button:disabled,
.sp-plan-selector button.button.single_add_to_cart_button.disabled,
.sp-plan-selector button.button.single_add_to_cart_button:disabled {
  background: #c4b5fd;
  box-shadow: none;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 1;
}
.sp-plan-selector .reset_variations {
  color: var(--sl-blue-800);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  margin-top: 10px;
  text-decoration: none;
}
@media (max-width: 480px) {
  .sp-plan-selector {
    padding: 18px;
  }
  .sp-plan-selector .woocommerce-variation-add-to-cart {
    grid-template-columns: 1fr;
  }
}


/* v2.5.22: variable product readability hardening. */
.sp-buy-card .sp-price-card .sp-price-note,
.sp-buy-card .sp-price-note {
  color: #334155 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
.sp-buy-card .sp-plan-selector {
  background: #ffffff !important;
  color: #101827 !important;
}
.sp-buy-card .sp-plan-selector > p,
.sp-buy-card .sp-plan-selector p:first-of-type {
  color: #334155 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
.sp-buy-card .sp-plan-selector table.variations label,
.sp-buy-card .sp-plan-selector .label label {
  color: #101827 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
.sp-buy-card .sp-plan-selector select,
.sp-buy-card .sp-plan-selector input.qty {
  background: #ffffff !important;
  color: #101827 !important;
  opacity: 1 !important;
}
.sp-buy-card .sp-plan-selector select option {
  color: #101827 !important;
}
.sp-buy-card .sp-plan-selector .woocommerce-variation-description,
.sp-buy-card .sp-plan-selector .woocommerce-variation-availability,
.sp-buy-card .sp-plan-selector .woocommerce-variation.single_variation {
  color: #334155 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
.sp-buy-card .sp-plan-selector .woocommerce-variation-description p,
.sp-buy-card .sp-plan-selector .woocommerce-variation-availability p {
  color: #334155 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
.sp-buy-card .sp-plan-selector .woocommerce-variation-price .price,
.sp-buy-card .sp-plan-selector .woocommerce-variation-price .amount,
.sp-buy-card .sp-plan-selector .woocommerce-Price-amount {
  color: #12337a !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
.sp-buy-card .sp-plan-selector .reset_variations {
  color: #12337a !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
.sp-buy-card .sp-plan-selector .single_add_to_cart_button,
.sp-buy-card .sp-plan-selector button.button.single_add_to_cart_button {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

/* v2.5.26: product page discount pricing display */
.sp-discount-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 2px;
}

.sp-discount-row[hidden],
.sp-price-regular[hidden],
.sp-save-badge[hidden],
.sp-offer-expiry[hidden] {
  display: none !important;
}

.sp-price-regular {
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.sp-save-badge {
  align-items: center;
  background: rgba(251, 191, 36, 0.16);
  border: 1px solid rgba(180, 83, 9, 0.18);
  border-radius: 999px;
  color: #b45309;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  min-height: 32px;
  padding: 8px 13px;
}

.sp-offer-expiry {
  color: #8a4b08;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;
  margin: -2px 0 0;
}

/* v2.5.28 Approved editable Outreach dark SaaS landing page. */
body.spm-outreach-page {
    margin: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1a2949 100%);
    color: #f1f5f9;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
}

.spm-outreach-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at 82% 8%, rgba(59, 130, 246, 0.15) 0%, transparent 42%),
        radial-gradient(circle at 8% 48%, rgba(16, 185, 129, 0.07) 0%, transparent 38%),
        radial-gradient(circle at 70% 92%, rgba(96, 165, 250, 0.08) 0%, transparent 42%),
        linear-gradient(135deg, #0f172a 0%, #1a2949 100%);
    overflow: hidden;
}

.spm-outreach-wrap {
    width: min(1400px, calc(100% - 40px));
    max-width: 1400px;
    margin: 0 auto;
}

.spm-outreach-nav-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
}

.spm-outreach-nav-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.spm-outreach-brand,
.spm-outreach-brand:hover {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: transparent;
}

.spm-outreach-logo {
    display: block;
    width: 318px;
    max-width: 318px;
    height: auto;
    object-fit: contain;
    object-position: left center;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.spm-outreach-nav-links,
.spm-outreach-nav-actions,
.spm-outreach-hero-actions,
.spm-outreach-footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.spm-outreach-nav-links a,
.spm-outreach-login,
.spm-outreach-cart,
.spm-outreach-footer-links a {
    color: rgba(203, 213, 225, 0.82);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.spm-outreach-nav-links a:hover,
.spm-outreach-login:hover,
.spm-outreach-cart:hover,
.spm-outreach-footer-links a:hover {
    color: #60a5fa;
}

.spm-outreach-hero,
.spm-outreach-section,
.spm-outreach-cta {
    position: relative;
    padding: 110px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.spm-outreach-hero {
    border-top: 0;
    padding-top: 96px;
}

.spm-outreach-hero::before,
.spm-outreach-section::before,
.spm-outreach-cta::before,
.spm-outreach-faq::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 82% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 10% 96%, rgba(16, 185, 129, 0.045) 0%, transparent 38%);
}

.spm-outreach-hero > *,
.spm-outreach-section > *,
.spm-outreach-cta > * {
    position: relative;
    z-index: 1;
}

.spm-outreach-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
    gap: 64px;
    align-items: center;
}

.spm-outreach-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.10);
    border: 1px solid rgba(59, 130, 246, 0.30);
    color: #60a5fa;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.spm-outreach-eyebrow span,
.spm-outreach-marquee span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.spm-outreach-hero h1,
.spm-outreach-section h2,
.spm-outreach-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5.2vw, 78px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    font-weight: 800;
}

.spm-outreach-section h2,
.spm-outreach-cta h2 {
    font-size: clamp(34px, 3.6vw, 58px);
    max-width: 900px;
}

.spm-outreach-section-head.center h2,
.spm-outreach-section-head.center p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.spm-outreach-hero p,
.spm-outreach-section-head p,
.spm-outreach-card p,
.spm-outreach-workflow p,
.spm-outreach-cta p,
.spm-outreach-plan p,
.spm-outreach-faq-answer p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
}

.spm-outreach-hero p {
    max-width: 680px;
    font-size: 19px;
    margin: 24px 0 0;
}

.spm-outreach-hero-actions {
    margin-top: 34px;
    flex-wrap: wrap;
}

.spm-outreach-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
}

.spm-outreach-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.28);
}

.spm-outreach-btn-ghost {
    color: #93c5fd;
    border-color: rgba(96, 165, 250, 0.42);
    background: rgba(59, 130, 246, 0.08);
}

.spm-outreach-proof-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 46px;
    max-width: 820px;
}

.spm-outreach-proof-item,
.spm-outreach-card,
.spm-outreach-hero-panel,
.spm-outreach-plan,
.spm-outreach-compare-wrap,
.spm-outreach-cta-card,
.spm-outreach-native-selector,
.spm-outreach-faq-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.58) 0%, rgba(51, 65, 85, 0.34) 100%);
    border: 1px solid rgba(59, 130, 246, 0.22);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.spm-outreach-proof-item {
    border-radius: 16px;
    padding: 18px;
}

.spm-outreach-proof-item strong {
    display: block;
    color: #60a5fa;
    font-size: 24px;
    font-weight: 800;
}

.spm-outreach-proof-item span {
    display: block;
    color: rgba(203, 213, 225, 0.82);
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

.spm-outreach-hero-panel {
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.30);
}

.spm-outreach-panel-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.spm-outreach-panel-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.55);
}

.spm-outreach-panel-top em {
    margin-left: auto;
    color: rgba(203, 213, 225, 0.68);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
}

.spm-outreach-product-snapshot {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.spm-outreach-product-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    font-weight: 800;
}

.spm-outreach-product-snapshot strong,
.spm-outreach-card h3,
.spm-outreach-plan h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}

.spm-outreach-product-snapshot small {
    display: block;
    color: #cbd5e1;
    margin-top: 3px;
}

.spm-outreach-panel-actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.spm-outreach-panel-actions .spm-outreach-btn {
    width: 100%;
}

.spm-outreach-marquee {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.52);
}

.spm-outreach-marquee-track {
    display: flex;
    gap: 34px;
    width: max-content;
    padding: 18px 0;
    animation: spmOutreachMarquee 34s linear infinite;
}

.spm-outreach-marquee span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(241, 245, 249, 0.72);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

@keyframes spmOutreachMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.spm-outreach-section-head {
    max-width: 880px;
    margin-bottom: 54px;
}

.spm-outreach-section-head.center {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.spm-outreach-card-grid,
.spm-outreach-cap-grid,
.spm-outreach-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.spm-outreach-card,
.spm-outreach-plan {
    border-radius: 18px;
    padding: 30px;
}

.spm-outreach-card:hover,
.spm-outreach-plan:hover,
.spm-outreach-faq-item:hover {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.78) 0%, rgba(51, 65, 85, 0.56) 100%);
    border-color: rgba(59, 130, 246, 0.50);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.spm-outreach-cap-card h3 {
    color: #60a5fa;
}

.spm-outreach-workflow {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 44px;
    align-items: start;
}

.spm-outreach-flow-list {
    display: grid;
    gap: 16px;
}

.spm-outreach-flow-list article {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 8px 18px;
    align-items: start;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(59, 130, 246, 0.22);
    background: rgba(30, 41, 59, 0.52);
}

.spm-outreach-flow-list span {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    font-weight: 800;
}

.spm-outreach-flow-list strong {
    color: #fff;
}

.spm-outreach-flow-list p {
    margin: 0;
}

.spm-outreach-compare-wrap {
    border-radius: 22px;
    overflow: hidden;
}

.spm-outreach-compare-table {
    width: 100%;
    border-collapse: collapse;
}

.spm-outreach-compare-table th,
.spm-outreach-compare-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(59, 130, 246, 0.12);
    color: #cbd5e1;
}

.spm-outreach-compare-table th {
    color: #60a5fa;
    background: rgba(30, 41, 59, 0.86);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.spm-outreach-compare-table td:first-child,
.spm-outreach-compare-table td:nth-child(2) {
    color: #fff;
    font-weight: 700;
}

.spm-outreach-plan.featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.30) 0%, rgba(15, 23, 42, 0.96) 60%, rgba(30, 41, 59, 0.90) 100%);
    border-color: rgba(96, 165, 250, 0.60);
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(96, 165, 250, 0.18);
}

.spm-outreach-plan-label,
.spm-outreach-plan-discount em,
.spm-outreach-offer-expiry {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 800;
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.16);
}

.spm-outreach-plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 24px 0 10px;
}

.spm-outreach-plan-price strong {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.spm-outreach-plan-price span,
.spm-outreach-plan-discount s {
    color: rgba(203, 213, 225, 0.68);
}

.spm-outreach-plan-discount {
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 28px;
}

.spm-outreach-plan-discount em {
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.18);
    font-style: normal;
}

.spm-outreach-plan ul {
    display: grid;
    gap: 10px;
    padding: 24px 0;
    margin: 0;
    list-style: none;
}

.spm-outreach-plan li {
    color: #cbd5e1;
    font-size: 14px;
}

.spm-outreach-plan li::before {
    content: '✓';
    color: #10b981;
    font-weight: 800;
    margin-right: 9px;
}

.spm-outreach-native-selector {
    margin-top: 28px;
    border-radius: 20px;
    padding: 24px;
}

.spm-outreach-native-selector .sp-plan-selector {
    margin: 0;
}

.spm-outreach-free-note {
    margin-top: 20px;
    text-align: center;
}

.spm-outreach-free-note a {
    color: #93c5fd;
    font-weight: 700;
}

.spm-outreach-faq-list {
    display: grid;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.spm-outreach-faq-item {
    border-radius: 16px;
    overflow: hidden;
}

.spm-outreach-faq-question {
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.62) 0%, rgba(51, 65, 85, 0.42) 100%);
    text-align: left;
    font-weight: 800;
}

.spm-outreach-faq-question b {
    color: #60a5fa;
    font-size: 22px;
}

.spm-outreach-faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.82);
    transition: max-height .24s ease, padding .24s ease;
    padding: 0 24px;
}

.spm-outreach-faq-item.open .spm-outreach-faq-answer {
    max-height: 420px;
    padding: 20px 24px 24px;
}

.spm-outreach-faq-item.open .spm-outreach-faq-question b {
    transform: rotate(45deg);
}

.spm-outreach-cta-card {
    border-radius: 28px;
    padding: clamp(34px, 5vw, 74px);
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.88) 0%, rgba(37, 99, 235, 0.24) 100%);
}

.spm-outreach-cta-card h2,
.spm-outreach-cta-card p,
.spm-outreach-cta-card .spm-outreach-hero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.spm-outreach-cta-card p {
    max-width: 720px;
}

.spm-outreach-footer {
    padding: 42px 0;
    background: rgba(15, 23, 42, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.spm-outreach-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.spm-outreach-footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(203, 213, 225, 0.78);
    font-size: 13px;
    font-weight: 600;
}

.spm-outreach-footer-icon {
    display: block;
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    object-fit: contain;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.spm-outreach-page .sp-price-card {
    background: rgba(15, 23, 42, 0.72);
    border-color: rgba(59, 130, 246, 0.22);
}

.spm-outreach-page .sp-price,
.spm-outreach-page .sp-price-label,
.spm-outreach-page .sp-price-term,
.spm-outreach-page .sp-billing-badge {
    color: #f8fafc;
}

.spm-outreach-page .sp-save-badge,
.spm-outreach-page .sp-offer-expiry {
    color: #fbbf24;
}

@media (max-width: 1120px) {
    .spm-outreach-hero-inner,
    .spm-outreach-workflow {
        grid-template-columns: 1fr;
    }
    .spm-outreach-card-grid,
    .spm-outreach-cap-grid,
    .spm-outreach-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .spm-outreach-logo {
        width: min(278px, calc(100vw - 104px));
        max-width: min(278px, calc(100vw - 104px));
    }
    .spm-outreach-nav-links {
        display: none;
    }
    .spm-outreach-nav-actions {
        gap: 10px;
    }
}

@media (max-width: 680px) {
    .spm-outreach-wrap {
        width: min(1400px, calc(100% - 40px));
    }
    .spm-outreach-card-grid,
    .spm-outreach-cap-grid,
    .spm-outreach-pricing-grid,
    .spm-outreach-proof-bar {
        grid-template-columns: 1fr;
    }
    .spm-outreach-hero,
    .spm-outreach-section,
    .spm-outreach-cta {
        padding: 74px 0;
    }
    .spm-outreach-footer-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
    }
}

@media (max-width: 420px) {
    .spm-outreach-wrap {
        width: min(1400px, calc(100% - 22px));
    }
    .spm-outreach-logo {
        width: min(232px, calc(100vw - 96px));
        max-width: min(232px, calc(100vw - 96px));
    }
    .spm-outreach-footer-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        min-height: 56px;
    }
}

/* v2.5.29 Outreach approved HTML design parity. */
body.spm-outreach-page {
  --ink: #060D1E;
  --ink-soft: #1A2236;
  --ink-muted: #8C96AB;
  --surface: #FAFBFF;
  --card: #FFFFFF;
  --line: rgba(6,13,30,0.08);
  --line-dark: rgba(255,255,255,0.10);
  --indigo: #5B5FE8;
  --indigo-lt: #7C7FF2;
  --violet: #7C3AED;
  --mint: #10B981;
  --amber: #F59E0B;
  --hero-bg: #060D1E;
  --hero-2: #0E1729;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  margin: 0;
  background: linear-gradient(135deg, #0F172A 0%, #1a2949 100%) !important;
  color: #F1F5F9 !important;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.spm-outreach-page *,
body.spm-outreach-page *::before,
body.spm-outreach-page *::after { box-sizing: border-box; }
body.spm-outreach-page a { color: inherit; text-decoration: none; }
body.spm-outreach-page button,
body.spm-outreach-page input,
body.spm-outreach-page select { font: inherit; }
body.spm-outreach-page img { display: block; max-width: 100%; }
body.spm-outreach-page .spm-outreach-shell { min-height: 100vh; background: transparent !important; overflow: clip; }
body.spm-outreach-page::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 8%, rgba(59,130,246,0.15) 0%, transparent 42%),
    radial-gradient(circle at 8% 48%, rgba(16,185,129,0.07) 0%, transparent 38%),
    radial-gradient(circle at 70% 92%, rgba(96,165,250,0.08) 0%, transparent 42%);
}

body.spm-outreach-page .wrap,
body.spm-outreach-page .container {
  width: min(1400px, calc(100% - 40px));
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

body.spm-outreach-page .reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

body.spm-outreach-page .nav-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(6,13,30,0.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
body.spm-outreach-page .nav-inner,
body.spm-outreach-page .footer-inner {
  width: min(1400px, calc(100% - 40px));
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
body.spm-outreach-page .nav-inner { min-height: 68px; }
body.spm-outreach-page .nav-brand { display: flex; align-items: center; flex: 0 0 auto; }
body.spm-outreach-page .sl-marketplace-brand-logo {
  width: 318px !important;
  max-width: 318px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: left center !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
body.spm-outreach-page .nav-links,
body.spm-outreach-page .nav-actions { display: flex; align-items: center; gap: 8px; }
body.spm-outreach-page .nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 10px;
  transition: color 0.18s;
}
body.spm-outreach-page .nav-links a:hover { color: #fff; }
body.spm-outreach-page .btn-primary,
body.spm-outreach-page .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.18s var(--ease), background 0.18s;
}
body.spm-outreach-page .btn-primary { color: #fff; background: var(--indigo); box-shadow: 0 12px 28px rgba(91,95,232,0.26); }
body.spm-outreach-page .btn-ghost { color: rgba(255,255,255,0.78); border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); }
body.spm-outreach-page .btn-primary:hover,
body.spm-outreach-page .btn-ghost:hover { transform: translateY(-1px); }

body.spm-outreach-page .hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 112px;
  background: linear-gradient(135deg, #0F172A 0%, #1a2949 100%) !important;
  color: #fff;
}
body.spm-outreach-page .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% -8%, rgba(59,130,246,0.18) 0%, transparent 50%),
    radial-gradient(circle at 8% 88%, rgba(16,185,129,0.08) 0%, transparent 44%);
  pointer-events: none;
}
body.spm-outreach-page .hero-grid-lines,
body.spm-outreach-page .cta-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
body.spm-outreach-page .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 72px;
  align-items: center;
}
body.spm-outreach-page .hero-eyebrow,
body.spm-outreach-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 22px;
  height: 30px;
  padding: 0 13px;
  border: 1px solid rgba(96,165,250,0.30);
  border-radius: 999px;
  background: rgba(59,130,246,0.10);
  color: #7CC3FF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
body.spm-outreach-page .hero-eyebrow::before,
body.spm-outreach-page .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #60A5FA;
  box-shadow: 0 0 0 5px rgba(96,165,250,0.13);
}
body.spm-outreach-page .hero-eyebrow span {
  display: none;
}
body.spm-outreach-page .sep {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #60A5FA;
  box-shadow: 0 0 0 5px rgba(96,165,250,0.13);
}
body.spm-outreach-page .hero h1 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(46px, 5.5vw, 78px);
  line-height: 1.00;
  letter-spacing: -0.03em;
  color: #fff;
  font-weight: 400;
}
body.spm-outreach-page .hero h1 em,
body.spm-outreach-page .cta-card h2 em { color: #A5B4FC; font-style: italic; }
body.spm-outreach-page .hero-lede {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 18px;
  line-height: 1.72;
}
body.spm-outreach-page .hero-actions,
body.spm-outreach-page .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
body.spm-outreach-page .btn-hero,
body.spm-outreach-page .btn-cta-primary,
body.spm-outreach-page .btn-cta-ghost,
body.spm-outreach-page .plan-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 21px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}
body.spm-outreach-page .btn-hero-primary,
body.spm-outreach-page .btn-cta-primary,
body.spm-outreach-page .plan-btn-filled {
  color: #fff;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-lt));
  box-shadow: 0 18px 42px rgba(91,95,232,0.30);
}
body.spm-outreach-page .btn-hero-ghost,
body.spm-outreach-page .btn-cta-ghost,
body.spm-outreach-page .plan-btn-outline {
  color: #fff;
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
}
body.spm-outreach-page .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
body.spm-outreach-page .trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.72);
  font-size: 12.5px;
  font-weight: 600;
}
body.spm-outreach-page .tick { color: var(--mint); font-weight: 800; }

body.spm-outreach-page .queue-widget {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.06));
  box-shadow: 0 36px 110px rgba(0,0,0,0.42);
  overflow: hidden;
  backdrop-filter: blur(22px);
}
body.spm-outreach-page .qw-titlebar { display: flex; align-items: center; gap: 12px; padding: 17px 18px; border-bottom: 1px solid rgba(255,255,255,0.10); }
body.spm-outreach-page .qw-dots { display: flex; gap: 6px; }
body.spm-outreach-page .qw-dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.28); }
body.spm-outreach-page .qw-tab { color: #fff; font-size: 13px; font-weight: 700; }
body.spm-outreach-page .qw-badge-live { margin-left: auto; display: flex; align-items: center; gap: 7px; color: #BBF7D0; font-size: 11px; font-weight: 800; }
body.spm-outreach-page .qw-pulse { width: 7px; height: 7px; border-radius: 999px; background: var(--mint); box-shadow: 0 0 0 5px rgba(16,185,129,0.14); }
body.spm-outreach-page .qw-body { padding: 20px; }
body.spm-outreach-page .qw-header-row { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
body.spm-outreach-page .qw-seq-name { color: #fff; font-size: 14px; font-weight: 700; }
body.spm-outreach-page .qw-queue { display: grid; gap: 10px; }
body.spm-outreach-page .qw-row { display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center; padding: 12px; border-radius: 16px; background: rgba(6,13,30,0.38); border: 1px solid rgba(255,255,255,0.07); }
body.spm-outreach-page .qw-step-num { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: rgba(91,95,232,0.28); font-size: 12px; font-weight: 800; }
body.spm-outreach-page .qw-row-meta strong { display: block; color: #fff; font-size: 13px; font-weight: 700; }
body.spm-outreach-page .qw-row-meta span { display: block; margin-top: 2px; color: rgba(255,255,255,0.50); font-size: 12px; }
body.spm-outreach-page .qw-status-pill { display: inline-flex; align-items: center; justify-content: center; min-height: 24px; padding: 0 9px; border-radius: 999px; font-size: 10.5px; font-weight: 800; }
body.spm-outreach-page .pill-running,.pill-queued,.pill-ab { color: #BFDBFE; background: rgba(59,130,246,0.14); }
body.spm-outreach-page .pill-paused { color: #FDE68A; background: rgba(245,158,11,0.14); }
body.spm-outreach-page .pill-replied { color: #BBF7D0; background: rgba(16,185,129,0.14); }
body.spm-outreach-page .pill-bounced { color: #FECACA; background: rgba(239,68,68,0.14); }
body.spm-outreach-page .qw-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
body.spm-outreach-page .qw-metric { padding: 12px; border-radius: 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); }
body.spm-outreach-page .qw-metric strong { display: block; color: #fff; font-size: 20px; font-weight: 700; }
body.spm-outreach-page .qw-metric span { color: rgba(255,255,255,0.55); font-size: 11px; font-weight: 600; }

body.spm-outreach-page .marquee-section { overflow: hidden; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(6,13,30,0.74); }
body.spm-outreach-page .marquee-track { display: flex; width: max-content; gap: 26px; animation: spmOutreachMarquee 34s linear infinite; }
body.spm-outreach-page .marquee-item { display: inline-flex; align-items: center; gap: 10px; color: rgba(241,245,249,0.72); font-size: 13px; font-weight: 700; white-space: nowrap; }
@keyframes spmOutreachMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

body.spm-outreach-page .section,
body.spm-outreach-page .faq,
body.spm-outreach-page .cta-section { position: relative; padding: 104px 0; border-top: 1px solid rgba(255,255,255,0.06); background: transparent !important; }
body.spm-outreach-page .section::before,
body.spm-outreach-page .faq::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 82% 0%, rgba(59,130,246,0.08) 0%, transparent 40%), radial-gradient(circle at 10% 96%, rgba(16,185,129,0.045) 0%, transparent 38%);
}
body.spm-outreach-page .section > .wrap,
body.spm-outreach-page .faq > .container { position: relative; z-index: 1; }
body.spm-outreach-page .section-head { max-width: 860px; margin-bottom: 44px; }
body.spm-outreach-page .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
body.spm-outreach-page .section-head h2,
body.spm-outreach-page .section-header h2,
body.spm-outreach-page .cta-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
}
body.spm-outreach-page .section-copy,
body.spm-outreach-page .section-header p,
body.spm-outreach-page .cta-card p { max-width: 700px; margin: 16px auto 0; color: rgba(255,255,255,0.56); font-size: 17px; line-height: 1.68; }

body.spm-outreach-page .pain-grid,
body.spm-outreach-page .cap-grid,
body.spm-outreach-page .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
body.spm-outreach-page .cap-grid { grid-template-columns: repeat(3, 1fr); }
body.spm-outreach-page .why-grid { grid-template-columns: repeat(3, 1fr); }
body.spm-outreach-page .pain-card,
body.spm-outreach-page .cap-card,
body.spm-outreach-page .why-card,
body.spm-outreach-page .feature-row,
body.spm-outreach-page .plan-card,
body.spm-outreach-page .compare-wrap,
body.spm-outreach-page .faq-item,
body.spm-outreach-page .spm-outreach-native-selector {
  background: linear-gradient(135deg, rgba(30,41,59,0.58) 0%, rgba(51,65,85,0.34) 100%) !important;
  border: 1px solid rgba(59,130,246,0.22) !important;
  border-radius: var(--r-lg);
  box-shadow: none !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.spm-outreach-page .pain-card,
body.spm-outreach-page .cap-card,
body.spm-outreach-page .why-card { padding: 28px; }
body.spm-outreach-page .pain-icon,
body.spm-outreach-page .cap-icon,
body.spm-outreach-page .why-icon,
body.spm-outreach-page .feat-num { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; margin-bottom: 22px; color: #fff; background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%) !important; box-shadow: 0 4px 20px rgba(59,130,246,0.30); font-weight: 800; }
body.spm-outreach-page .pain-card h3,
body.spm-outreach-page .cap-card h3,
body.spm-outreach-page .why-card h3,
body.spm-outreach-page .feature-row h3 { margin: 0 0 10px; color: #fff; font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
body.spm-outreach-page .pain-card p,
body.spm-outreach-page .cap-card p,
body.spm-outreach-page .why-card p,
body.spm-outreach-page .feature-row p { margin: 0; color: #CBD5E1; font-size: 14.5px; line-height: 1.64; }
body.spm-outreach-page .cap-example { margin-top: 16px; padding: 14px 15px; border-radius: 13px; border-left: 3px solid #3B82F6; background: rgba(59,130,246,0.10); color: #60A5FA; font-size: 13px; font-weight: 500; line-height: 1.55; }
body.spm-outreach-page .badge { display: inline-flex; vertical-align: middle; margin-left: 6px; padding: 4px 8px; border-radius: 999px; background: rgba(59,130,246,0.16); color: #93C5FD; font-size: 10px; font-weight: 800; text-transform: uppercase; }

body.spm-outreach-page .workflow-layout { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 34px; align-items: start; }
body.spm-outreach-page .flow-dark { padding: 36px; border-radius: var(--r-xl); background: linear-gradient(135deg, rgba(15,23,42,0.96) 0%, rgba(30,41,59,0.82) 100%) !important; border: 1px solid rgba(59,130,246,0.24) !important; box-shadow: 0 24px 72px rgba(0,0,0,0.24); }
body.spm-outreach-page .flow-dark h3 { margin: 0 0 16px; color: #fff; font-family: var(--serif); font-size: clamp(30px, 3vw, 44px); font-weight: 400; line-height: 1.06; letter-spacing: -0.03em; }
body.spm-outreach-page .flow-dark p { margin: 0; color: #CBD5E1; font-size: 15px; line-height: 1.68; }
body.spm-outreach-page .check-list { display: grid; gap: 12px; padding: 22px 0 0; margin: 0; list-style: none; }
body.spm-outreach-page .check-list li { display: flex; gap: 10px; color: #CBD5E1; font-size: 14px; }
body.spm-outreach-page .check-list li::before { content: '✓'; color: #10B981; font-weight: 800; }
body.spm-outreach-page .feature-stack { display: grid; gap: 14px; }
body.spm-outreach-page .feature-row { display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 22px; }
body.spm-outreach-page .feature-row .feat-num { margin: 0; font-size: 13px; }

body.spm-outreach-page .compare-wrap { overflow: hidden; }
body.spm-outreach-page .compare-table { width: 100%; border-collapse: collapse; background: rgba(15,23,42,0.72); }
body.spm-outreach-page .compare-table th,
body.spm-outreach-page .compare-table td { padding: 19px 20px; text-align: left; border-bottom: 1px solid rgba(59,130,246,0.12); color: #CBD5E1; font-size: 14px; }
body.spm-outreach-page .compare-table th { color: #60A5FA; background: linear-gradient(135deg, rgba(30,41,59,0.95) 0%, rgba(51,65,85,0.75) 100%); font-size: 12px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
body.spm-outreach-page .compare-table td:first-child { color: #fff; font-weight: 700; }
body.spm-outreach-page .yes { color: #10B981; font-weight: 800; }

body.spm-outreach-page .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: end; }
body.spm-outreach-page .plan-card { padding: 32px 28px; position: relative; color: #fff; }
body.spm-outreach-page .plan-card.featured { background: linear-gradient(135deg, rgba(37,99,235,0.30) 0%, rgba(15,23,42,0.96) 60%, rgba(30,41,59,0.90) 100%) !important; border-color: rgba(96,165,250,0.60) !important; box-shadow: 0 28px 78px rgba(0,0,0,0.34), 0 0 0 1px rgba(96,165,250,0.18) !important; transform: translateY(-12px); }
body.spm-outreach-page .plan-label { width: fit-content; min-height: 28px; display: inline-flex; align-items: center; padding: 0 11px; margin-bottom: 22px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; }
body.spm-outreach-page .plan-label-default { background: rgba(59,130,246,0.12); color: #93C5FD; }
body.spm-outreach-page .plan-label-featured { background: rgba(96,165,250,0.20); color: #BFDBFE; }
body.spm-outreach-page .plan-name { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; margin: 0 0 4px; }
body.spm-outreach-page .plan-sub { font-size: 13px; color: #CBD5E1; margin: 0 0 24px; }
body.spm-outreach-page .plan-price { display: flex; align-items: baseline; gap: 8px; margin: 0; }
body.spm-outreach-page .plan-price strong { font-size: 46px; font-weight: 700; letter-spacing: -0.055em; line-height: 1; background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
body.spm-outreach-page .plan-price span { color: rgba(203,213,225,0.72); font-size: 14px; font-weight: 600; }
body.spm-outreach-page .plan-was { display: flex; align-items: center; gap: 10px; min-height: 27px; margin-top: 11px; color: rgba(203,213,225,0.55); font-size: 13px; }
body.spm-outreach-page .plan-save { padding: 5px 9px; border-radius: 999px; background: rgba(245,158,11,0.18); color: #FBBF24; font-size: 11px; font-weight: 800; }
body.spm-outreach-page .plan-divider { height: 1px; margin: 24px 0; background: rgba(59,130,246,0.16); }
body.spm-outreach-page .plan-features { display: grid; gap: 11px; margin: 0 0 28px; padding: 0; list-style: none; }
body.spm-outreach-page .plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #CBD5E1; line-height: 1.5; }
body.spm-outreach-page .plan-features li::before { content: '✓'; color: #10B981; font-weight: 800; }
body.spm-outreach-page .plan-btn { width: 100%; }
body.spm-outreach-page .spm-outreach-native-selector { margin: 28px auto 0; max-width: 900px; padding: 24px; }
body.spm-outreach-page .spm-outreach-free-note { margin: 20px 0 0; text-align: center; }
body.spm-outreach-page .spm-outreach-free-note a { color: #93C5FD; font-size: 13px; font-weight: 700; }

body.spm-outreach-page .faq { background: transparent !important; }
body.spm-outreach-page .faq .container { max-width: 900px; }
body.spm-outreach-page .section-header { text-align: center; margin-bottom: 56px; }
body.spm-outreach-page .faq-item { overflow: hidden; margin-bottom: 16px; border-radius: 16px; }
body.spm-outreach-page .faq-question { padding: 25px; background: linear-gradient(135deg, rgba(30,41,59,0.60) 0%, rgba(51,65,85,0.40) 100%); cursor: pointer; font-weight: 600; color: #fff; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
body.spm-outreach-page .faq-question:hover { color: #60A5FA; }
body.spm-outreach-page .faq-toggle { font-size: 20px; font-weight: 700; color: #60A5FA; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }
body.spm-outreach-page .faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); background: rgba(15,23,42,0.82); }
body.spm-outreach-page .faq-item.open .faq-answer { padding: 25px; max-height: 1000px; }
body.spm-outreach-page .faq-item.open .faq-toggle { transform: rotate(180deg); }
body.spm-outreach-page .faq-answer p { font-size: 14px; color: #CBD5E1; line-height: 1.8; margin: 0 0 12px; }
body.spm-outreach-page .faq-answer strong { color: #fff; }

body.spm-outreach-page .cta-section { padding-left: 20px; padding-right: 20px; }
body.spm-outreach-page .cta-card { position: relative; overflow: hidden; width: min(1400px, calc(100% - 0px)); margin: 0 auto; padding: 96px 48px; border-radius: var(--r-xl); text-align: center; background: linear-gradient(135deg, rgba(30,41,59,0.88) 0%, rgba(37,99,235,0.24) 100%); border: 1px solid rgba(96,165,250,0.24); box-shadow: 0 28px 90px rgba(0,0,0,0.30); }
body.spm-outreach-page .cta-inner { position: relative; z-index: 1; }
body.spm-outreach-page .cta-card p { margin-left: auto; margin-right: auto; }
body.spm-outreach-page .cta-actions { justify-content: center; }
body.spm-outreach-page .site-footer { padding: 40px 0; background: rgba(15,23,42,0.82) !important; border-top: 1px solid rgba(255,255,255,0.10); }
body.spm-outreach-page .footer-brand { display: flex; align-items: center; gap: 14px; color: rgba(203,213,225,0.78); font-size: 13px; font-weight: 600; }
body.spm-outreach-page .footer-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
body.spm-outreach-page .footer-links a { color: rgba(203,213,225,0.56); font-size: 13px; font-weight: 600; text-decoration: none; }
body.spm-outreach-page .footer-links a:hover { color: #fff; }
body.spm-outreach-page .sl-footer-approved-icon { display: block !important; width: 64px !important; height: 64px !important; min-width: 64px !important; min-height: 64px !important; max-width: 64px !important; max-height: 64px !important; object-fit: contain !important; object-position: center !important; padding: 0 !important; margin: 0 !important; background: transparent !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; flex: 0 0 auto !important; }

@media (max-width: 1080px) {
  body.spm-outreach-page .hero-inner,
  body.spm-outreach-page .workflow-layout { grid-template-columns: 1fr; }
  body.spm-outreach-page .pain-grid,
  body.spm-outreach-page .cap-grid,
  body.spm-outreach-page .why-grid,
  body.spm-outreach-page .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  body.spm-outreach-page .plan-card.featured { transform: none; }
}
@media (max-width: 820px) {
  body.spm-outreach-page .sl-marketplace-brand-logo { width: min(278px, calc(100vw - 104px)) !important; max-width: min(278px, calc(100vw - 104px)) !important; height: auto !important; }
  body.spm-outreach-page .nav-links { display: none; }
}
@media (max-width: 680px) {
  body.spm-outreach-page .wrap,
  body.spm-outreach-page .container,
  body.spm-outreach-page .nav-inner,
  body.spm-outreach-page .footer-inner { width: min(1400px, calc(100% - 40px)); }
  body.spm-outreach-page .hero,
  body.spm-outreach-page .section,
  body.spm-outreach-page .faq,
  body.spm-outreach-page .cta-section { padding-top: 74px; padding-bottom: 74px; }
  body.spm-outreach-page .pain-grid,
  body.spm-outreach-page .cap-grid,
  body.spm-outreach-page .why-grid,
  body.spm-outreach-page .pricing-grid { grid-template-columns: 1fr; }
  body.spm-outreach-page .hero h1 { font-size: 44px; }
  body.spm-outreach-page .hero-lede { font-size: 16px; }
  body.spm-outreach-page .queue-widget { max-width: 560px; }
  body.spm-outreach-page .footer-inner { justify-content: center; text-align: center; }
  body.spm-outreach-page .sl-footer-approved-icon { width: 60px !important; height: 60px !important; min-width: 60px !important; min-height: 60px !important; max-width: 60px !important; max-height: 60px !important; }
}
@media (max-width: 420px) {
  body.spm-outreach-page .wrap,
  body.spm-outreach-page .container,
  body.spm-outreach-page .nav-inner,
  body.spm-outreach-page .footer-inner { width: min(1400px, calc(100% - 22px)); }
  body.spm-outreach-page .sl-marketplace-brand-logo { width: min(232px, calc(100vw - 96px)) !important; max-width: min(232px, calc(100vw - 96px)) !important; }
  body.spm-outreach-page .sl-footer-approved-icon { width: 56px !important; height: 56px !important; min-width: 56px !important; min-height: 56px !important; max-width: 56px !important; max-height: 56px !important; }
}

/* v2.5.30 Outreach pricing/table polish. */
body.spm-outreach-page .plan-was {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  min-height: 30px !important;
  margin-top: 12px !important;
}
body.spm-outreach-page .plan-expiry {
  white-space: nowrap !important;
}
body.spm-outreach-page .plan-price strong {
  white-space: nowrap !important;
}
body.spm-outreach-page .compare-wrap,
body.spm-outreach-page .compare-table {
  background: rgba(15,23,42,0.72) !important;
}
body.spm-outreach-page .compare-table thead,
body.spm-outreach-page .compare-table thead tr,
body.spm-outreach-page .compare-table thead th {
  background: linear-gradient(135deg, rgba(30,41,59,0.95) 0%, rgba(51,65,85,0.75) 100%) !important;
  color: #60A5FA !important;
}
body.spm-outreach-page .compare-table tbody,
body.spm-outreach-page .compare-table tbody tr {
  background: rgba(15,23,42,0.72) !important;
}
body.spm-outreach-page .compare-table tbody td {
  background: rgba(30,41,59,0.46) !important;
  color: #CBD5E1 !important;
  border-color: rgba(59,130,246,0.12) !important;
}
body.spm-outreach-page .compare-table tbody td:first-child {
  color: #FFFFFF !important;
}
body.spm-outreach-page .compare-table tbody tr:hover td {
  background: rgba(59,130,246,0.10) !important;
}
body.spm-outreach-page .compare-table .yes {
  color: #10B981 !important;
}

/* v2.5.31 Outreach comparison/icons/marquee polish. */
body.spm-outreach-page .marquee-section {
  overflow: hidden !important;
  padding: 18px 0 !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  background: rgba(6,13,30,0.74) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
body.spm-outreach-page .marquee-track {
  display: flex !important;
  width: max-content !important;
  gap: 0 !important;
  animation: spmOutreachMarqueeLoop 30s linear infinite !important;
  will-change: transform !important;
  transform: translate3d(0,0,0);
}
body.spm-outreach-page .marquee-track:hover {
  animation-play-state: paused !important;
}
body.spm-outreach-page .marquee-group {
  display: flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  gap: 28px !important;
  padding-right: 28px !important;
  min-width: max-content !important;
}
body.spm-outreach-page .marquee-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: rgba(241,245,249,0.72) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}
@keyframes spmOutreachMarqueeLoop {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

body.spm-outreach-page .cap-icon {
  color: #FFFFFF !important;
}
body.spm-outreach-page .cap-icon svg {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  color: #FFFFFF !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.05 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
body.spm-outreach-page .cap-icon * {
  color: #FFFFFF !important;
  fill: none !important;
  stroke: #FFFFFF !important;
}
body.spm-outreach-page .cap-icon span {
  color: #FFFFFF !important;
  filter: grayscale(1) brightness(3.5) contrast(1.05);
}

body.spm-outreach-page #compare .section-head {
  margin-bottom: 34px !important;
}
body.spm-outreach-page #compare .section-copy {
  display: none !important;
}
body.spm-outreach-page .compare-scroll-hint {
  display: none;
  margin: -10px 0 18px;
  color: rgba(203,213,225,0.72);
  font-size: 12.5px;
  font-weight: 700;
  text-align: right;
}
body.spm-outreach-page .compare-wrap {
  overflow-x: auto !important;
  border-radius: 24px !important;
  border: 1px solid rgba(59,130,246,0.26) !important;
  background: rgba(15,23,42,0.72) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.20) !important;
  -webkit-overflow-scrolling: touch;
}
body.spm-outreach-page .compare-table {
  width: 100% !important;
  min-width: 820px !important;
  border-collapse: collapse !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  background: rgba(15,23,42,0.72) !important;
}
body.spm-outreach-page .compare-table th,
body.spm-outreach-page .compare-table td {
  padding: 22px 20px !important;
  text-align: left !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}
body.spm-outreach-page .compare-table th {
  background: linear-gradient(135deg, rgba(30,41,59,0.96) 0%, rgba(51,65,85,0.78) 100%) !important;
  color: #60A5FA !important;
  border-bottom: 2px solid rgba(59,130,246,0.30) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}
body.spm-outreach-page .compare-table tbody,
body.spm-outreach-page .compare-table tbody tr {
  background: rgba(15,23,42,0.72) !important;
}
body.spm-outreach-page .compare-table tbody td {
  background: rgba(30,41,59,0.46) !important;
  color: #CBD5E1 !important;
  border-bottom: 1px solid rgba(59,130,246,0.12) !important;
}
body.spm-outreach-page .compare-table tbody td:first-child {
  color: #FFFFFF !important;
  font-weight: 800 !important;
}
body.spm-outreach-page .compare-table tbody tr:hover td {
  background: rgba(59,130,246,0.10) !important;
}
body.spm-outreach-page .compare-table .yes {
  color: #10B981 !important;
  font-weight: 800 !important;
}
@media (max-width: 760px) {
  body.spm-outreach-page .compare-scroll-hint {
    display: block !important;
  }
}

/* v2.5.32 Outreach pricing button alignment, product-page CTAs, and free download button. */
body.spm-outreach-page .pricing-grid {
  align-items: stretch !important;
}
body.spm-outreach-page .plan-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100% !important;
}
body.spm-outreach-page .plan-features {
  flex: 1 1 auto !important;
}
body.spm-outreach-page .plan-action {
  margin-top: auto !important;
  padding-top: 8px !important;
}
body.spm-outreach-page .plan-action .plan-btn {
  text-decoration: none !important;
  text-align: center !important;
}
body.spm-outreach-page .spm-outreach-free-note {
  margin: 34px 0 0 !important;
  text-align: center !important;
}
body.spm-outreach-page .spm-outreach-free-button {
  min-height: 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(96,165,250,0.38) !important;
  background: rgba(59,130,246,0.10) !important;
  color: #93C5FD !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.16) !important;
}
body.spm-outreach-page .spm-outreach-free-button:hover,
body.spm-outreach-page .spm-outreach-free-button:focus-visible {
  color: #FFFFFF !important;
  border-color: rgba(96,165,250,0.62) !important;
  background: rgba(59,130,246,0.18) !important;
}

/* v2.5.70 refined WooCommerce product page template editor/frontend */
.spm-refined-product-page {
  --slp-navy: #0f172a;
  --slp-navy-2: #1a2949;
  --slp-panel: rgba(30,41,59,.58);
  --slp-border: rgba(96,165,250,.22);
  --slp-indigo: #5b5fe8;
  --slp-indigo-2: #60a5fa;
  --slp-white: #f8fbff;
  --slp-muted: #93a4bb;
  --slp-slate: #cbd5e1;
  --slp-amber: #f59e0b;
  --slp-green: #10b981;
  --slp-red: #fb7185;
  --slp-radius: 10px;
  --slp-radius-lg: 16px;
  background:
    radial-gradient(circle at 82% 8%, rgba(59,130,246,.16) 0%, transparent 42%),
    radial-gradient(circle at 8% 48%, rgba(16,185,129,.07) 0%, transparent 38%),
    radial-gradient(circle at 70% 92%, rgba(124,58,237,.10) 0%, transparent 42%),
    linear-gradient(135deg, #0f172a 0%, #1a2949 100%) !important;
  color: var(--slp-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.spm-refined-product-page .slp-page,
.spm-refined-product-page .slp-page * { box-sizing: border-box; }
.spm-refined-product-page .slp-page { min-height: 100vh; overflow: hidden; }
.spm-refined-product-page .slp-container { width: min(1400px, calc(100% - 56px)); max-width: 1400px; margin: 0 auto; }
.spm-refined-product-page .slp-nav-wrap { position: sticky; top: 0; z-index: 100; background: rgba(15,23,42,.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,.10); }
.spm-refined-product-page .slp-nav-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.spm-refined-product-page .slp-brand { display: inline-flex; align-items: center; min-width: 0; max-width: 318px; color: #fff; }
.spm-refined-product-page .slp-brand svg { width: 318px; height: auto; max-width: 100%; }
.spm-refined-product-page .slp-nav-links { display: flex; align-items: center; gap: 6px; }
.spm-refined-product-page .slp-nav-links a { color: rgba(255,255,255,.62); font-size: 14px; font-weight: 600; padding: 6px 12px; border-radius: 8px; }
.spm-refined-product-page .slp-nav-links a:hover { color: #fff; }
.spm-refined-product-page .slp-nav-actions { display: flex; align-items: center; gap: 12px; }
.spm-refined-product-page .slp-nav-price { color: rgba(255,255,255,.50); font-size: 14px; font-weight: 600; }
.spm-refined-product-page .slp-nav-price strong { color: #fff; }
.spm-refined-product-page .slp-cart-icon { position: relative; width: 42px; height: 42px; display: inline-grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; color: #fff; background: rgba(255,255,255,.05); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.spm-refined-product-page .slp-cart-icon:hover { transform: translateY(-1px); border-color: rgba(96,165,250,.42); background: rgba(255,255,255,.09); }
.spm-refined-product-page .slp-cart-icon svg { width: 21px; height: 21px; }
.spm-refined-product-page .sp-cart-count { position: absolute; top: -8px; right: -8px; min-width: 21px; height: 21px; display: inline-flex; align-items: center; justify-content: center; padding: 0 6px; border: 2px solid #0f172a; border-radius: 999px; color: #fff; background: var(--slp-red); font-size: 11px; font-weight: 800; }
.spm-refined-product-page .slp-hero { padding: 80px 0 58px; position: relative; overflow: hidden; }
.spm-refined-product-page .slp-hero:before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 60% -10%, rgba(91,91,255,.18) 0%, transparent 70%); pointer-events: none; }
.spm-refined-product-page .slp-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 420px); gap: 60px; align-items: start; }
.spm-refined-product-page .slp-hero-copy { min-width: 0; }
.spm-refined-product-page .slp-tag { display: inline-flex; align-items: center; gap: 6px; color: #60a5fa; background: rgba(59,130,246,.10); border: 1px solid rgba(59,130,246,.30); border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px; }
.spm-refined-product-page .slp-hero h1 { margin: 0 0 20px; color: #fff; font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: clamp(50px, 5.7vw, 86px); line-height: .96; letter-spacing: -.045em; max-width: 820px; }
.spm-refined-product-page .slp-hero-sub { margin: 0 0 32px; max-width: 680px; color: var(--slp-slate); font-size: 17px; line-height: 1.65; }
.spm-refined-product-page .slp-hero-actions,
.spm-refined-product-page .slp-cta-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.spm-refined-product-page .slp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 10px; padding: 13px 28px; min-height: 48px; border: 0; font-size: 15px; font-weight: 600; line-height: 1.15; text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease; white-space: nowrap; }
.spm-refined-product-page .slp-btn:hover { transform: translateY(-1px); }
.spm-refined-product-page .slp-btn-primary { background: linear-gradient(135deg, #5b5fe8, #2563eb); color: #fff; box-shadow: 0 12px 34px rgba(59,130,246,.34); }
.spm-refined-product-page .slp-btn-ghost { color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); }
.spm-refined-product-page .slp-btn-block { width: 100%; }
.spm-refined-product-page .slp-hero-trust { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; color: var(--slp-muted); font-size: 14px; }
.spm-refined-product-page .slp-hero-trust-item { display: flex; align-items: center; gap: 6px; }
.spm-refined-product-page .slp-hero-trust-item svg { width: 18px; height: 18px; color: var(--slp-green); }
.spm-refined-product-page .slp-download-count { margin-top: 16px; width: fit-content; color: rgba(255,255,255,.72); }
.spm-refined-product-page .slp-price-card { background: linear-gradient(135deg, rgba(30,41,59,.70) 0%, rgba(51,65,85,.42) 100%); border: 1px solid var(--slp-border); border-radius: 16px; padding: 28px; position: relative; overflow: hidden; box-shadow: 0 34px 74px rgba(0,0,0,.34); }
.spm-refined-product-page .slp-price-card:before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #5b5fe8, #2563eb); }
.spm-refined-product-page .slp-price-card-badge { position: absolute; top: 16px; right: 16px; background: var(--slp-amber); color: #0b1020; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.spm-refined-product-page .slp-price-card-label { color: var(--slp-muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; padding-right: 72px; }
.spm-refined-product-page .slp-price-card .sp-price-card { padding: 0 0 18px; border: 0; border-radius: 0; background: transparent; color: #fff; }
.spm-refined-product-page .slp-price-card .sp-price-label,
.spm-refined-product-page .slp-price-card .sp-billing-badge { color: #93c5fd; background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.25); }
.spm-refined-product-page .slp-price-card .sp-price { color: #fff; font-size: 48px; font-weight: 700; }
.spm-refined-product-page .slp-price-card .sp-price-term,
.spm-refined-product-page .slp-price-card .sp-price-note { color: rgba(203,213,225,.72); }
.spm-refined-product-page .slp-price-card .sp-discount-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.spm-refined-product-page .slp-price-card .sp-price-regular { color: rgba(203,213,225,.72); text-decoration: line-through; }
.spm-refined-product-page .slp-price-card .sp-save-badge { color: #fcd34d; background: rgba(245,158,11,.13); border: 1px solid rgba(245,158,11,.25); border-radius: 999px; padding: 3px 8px; font-size: 12px; font-weight: 700; }
.spm-refined-product-page .slp-price-card .sp-offer-expiry { color: #f59e0b; font-size: 13px; font-weight: 600; }
.spm-refined-product-page .slp-price-card .sp-plan-selector { margin-top: 12px; }
.spm-refined-product-page .slp-price-card .sp-plan-selector h3 { color: #fff; font-size: 14px; margin: 0 0 6px; }
.spm-refined-product-page .slp-price-card .sp-plan-selector p { color: var(--slp-muted); font-size: 13px; margin: 0 0 12px; }
.spm-refined-product-page .slp-price-card .variations_form,
.spm-refined-product-page .slp-price-card form.cart { margin: 0; }
.spm-refined-product-page .slp-price-card select { width: 100%; background: rgba(15,23,42,.78); color: #fff; border: 1px solid var(--slp-border); border-radius: 8px; padding: 10px 14px; font-size: 14px; }
.spm-refined-product-page .slp-price-card .single_add_to_cart_button.button.alt { width: 100%; min-height: 48px; border-radius: 10px; background: linear-gradient(135deg, #5b5fe8, #2563eb); color: #fff; border: 0; font-size: 15px; font-weight: 600; }
.spm-refined-product-page .slp-card-perks { margin-top: 18px; border-top: 1px solid rgba(255,255,255,.10); padding-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.spm-refined-product-page .slp-card-perk { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--slp-slate); }
.spm-refined-product-page .slp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--slp-green); flex: 0 0 6px; }
.spm-refined-product-page .slp-gallery,
.spm-refined-product-page .slp-features,
.spm-refined-product-page .slp-compare,
.spm-refined-product-page .slp-support,
.spm-refined-product-page .slp-faq,
.spm-refined-product-page .slp-cta-footer { padding: 72px 0; border-top: 1px solid rgba(96,165,250,.14); }
.spm-refined-product-page .slp-section-head { margin-bottom: 44px; }
.spm-refined-product-page .slp-center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.spm-refined-product-page .slp-section-label { display: block; margin-bottom: 12px; color: var(--slp-muted); font-size: 12px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; }
.spm-refined-product-page .slp-section-head h2,
.spm-refined-product-page .slp-support-inner h2,
.spm-refined-product-page .slp-cta-footer h2 { margin: 0 0 12px; color: #fff; font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: clamp(38px, 4vw, 64px); line-height: 1.02; letter-spacing: -.04em; }
.spm-refined-product-page .slp-section-head p,
.spm-refined-product-page .slp-support-inner p,
.spm-refined-product-page .slp-cta-footer p { margin: 0; color: var(--slp-slate); font-size: 17px; line-height: 1.65; }
.spm-refined-product-page .slp-slides-wrap { position: relative; overflow: hidden; width: min(100%, 1040px); max-width: 1040px; margin: 0 auto; border-radius: 18px; border: 1px solid var(--slp-border); box-shadow: 0 24px 58px rgba(0,0,0,.32); background: rgba(15,23,42,.72); }
.spm-refined-product-page .slp-slides { display: flex; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.spm-refined-product-page .slp-slide { flex: 0 0 100%; height: clamp(320px, 43vw, 560px); background: rgba(15,23,42,.72); border: 0; display: flex; align-items: center; justify-content: center; }
.spm-refined-product-page .slp-slide img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.spm-refined-product-page .slp-gallery-placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: var(--slp-muted); font-weight: 700; }
.spm-refined-product-page .slp-slide-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(13,27,42,.72); border: 1px solid var(--slp-border); color: var(--slp-white); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; font-size: 28px; line-height: 1; }
.spm-refined-product-page .slp-slide-arrow.prev { left: 12px; }
.spm-refined-product-page .slp-slide-arrow.next { right: 12px; }
.spm-refined-product-page .slp-slide-nav { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 16px; color: var(--slp-muted); font-size: 13px; font-weight: 700; }
.spm-refined-product-page .slp-feat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; border: 1px solid var(--slp-border); border-radius: 16px; overflow: hidden; }
.spm-refined-product-page .slp-feat-item { padding: 28px 24px; background: var(--slp-panel); border: 0; position: relative; }
.spm-refined-product-page .slp-feat-icon { width: 40px; height: 40px; background: rgba(59,130,246,.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: #60a5fa; font-size: 12px; font-weight: 700; }
.spm-refined-product-page .slp-feat-item h3 { margin: 0 0 8px; color: #fff; font-size: 17px; line-height: 1.28; font-weight: 700; letter-spacing: -.025em; }
.spm-refined-product-page .slp-feat-item p { margin: 0; color: var(--slp-slate); font-size: 14px; line-height: 1.6; }
.spm-refined-product-page .slp-compare-scroll { overflow-x: auto; border: 1px solid var(--slp-border); border-radius: 16px; }
.spm-refined-product-page .slp-compare-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.spm-refined-product-page .slp-compare-table th,
.spm-refined-product-page .slp-compare-table td { padding: 14px 20px; text-align: left; font-size: 14px; border-bottom: 1px solid rgba(96,165,250,.18); color: var(--slp-slate); }
.spm-refined-product-page .slp-compare-table thead th { background: rgba(30,41,59,.72); color: #fff; font-weight: 700; }
.spm-refined-product-page .slp-compare-table th:not(:first-child),
.spm-refined-product-page .slp-compare-table td:not(:first-child) { text-align: center; }
.spm-refined-product-page .slp-th-free { color: var(--slp-muted) !important; }
.spm-refined-product-page .slp-th-pro { color: var(--slp-indigo-2) !important; }
.spm-refined-product-page .slp-th-pro span { margin-left: 6px; padding: 2px 8px; border-radius: 999px; background: var(--slp-indigo); color: #fff; font-size: 12px; }
.spm-refined-product-page .slp-support-inner { background: var(--slp-panel); border: 1px solid var(--slp-border); border-radius: 16px; padding: 48px 56px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.spm-refined-product-page .slp-support-badges { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.spm-refined-product-page .slp-support-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--slp-slate); background: rgba(255,255,255,.05); border: 1px solid var(--slp-border); padding: 5px 12px; border-radius: 999px; }
.spm-refined-product-page .slp-faq-list { max-width: 760px; margin: 0 auto; }
.spm-refined-product-page .slp-faq-item { border-bottom: 1px solid var(--slp-border); }
.spm-refined-product-page .slp-faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--slp-white); font-size: 15px; font-weight: 600; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; gap: 16px; list-style: none; }
.spm-refined-product-page .slp-faq-q::-webkit-details-marker { display: none; }
.spm-refined-product-page .slp-faq-icon { color: var(--slp-muted); transition: transform .2s ease, color .2s ease; flex-shrink: 0; font-size: 22px; line-height: 1; }
.spm-refined-product-page .slp-faq-item[open] .slp-faq-icon { transform: rotate(45deg); color: var(--slp-indigo-2); }
.spm-refined-product-page .slp-faq-a { color: var(--slp-slate); font-size: 14px; line-height: 1.7; padding: 0 0 20px; }
.spm-refined-product-page .slp-faq-a p { margin: 0; }
.spm-refined-product-page .slp-cta-footer { text-align: center; position: relative; overflow: hidden; }
.spm-refined-product-page .slp-cta-footer .slp-container { max-width: 900px; }
.spm-refined-product-page .slp-cta-price-note { color: var(--slp-muted); font-size: 14px; margin-top: 16px; }
.spm-refined-product-page .slp-footer { border-top: 1px solid var(--slp-border); padding: 24px 0; }
.spm-refined-product-page .slp-footer-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 18px; }
.spm-refined-product-page .slp-footer span { color: var(--slp-muted); font-size: 14px; }
.spm-refined-product-page .slp-footer-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.spm-refined-product-page .slp-footer-links a { color: var(--slp-muted); font-size: 14px; font-weight: 600; }
.spm-refined-product-page .slp-footer-links a:hover { color: #fff; }
@media (max-width: 1100px) {
  .spm-refined-product-page .slp-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .spm-refined-product-page .slp-price-card { max-width: 560px; }
  .spm-refined-product-page .slp-nav-links { display: none; }
}
@media (max-width: 900px) {
  .spm-refined-product-page .slp-feat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spm-refined-product-page .slp-support-inner { grid-template-columns: 1fr; gap: 26px; }
  .spm-refined-product-page .slp-slide { height: clamp(260px, 58vw, 420px); }
}
@media (max-width: 640px) {
  .spm-refined-product-page .slp-container { width: calc(100% - 32px); max-width: calc(100% - 32px); }
  .spm-refined-product-page .slp-hero { padding-top: 64px; }
  .spm-refined-product-page .slp-hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .spm-refined-product-page .slp-hero-actions,
  .spm-refined-product-page .slp-cta-actions { align-items: stretch; }
  .spm-refined-product-page .slp-hero-actions .slp-btn,
  .spm-refined-product-page .slp-cta-actions .slp-btn { width: 100%; white-space: normal; text-align: center; }
  .spm-refined-product-page .slp-hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .spm-refined-product-page .slp-feat-grid { grid-template-columns: 1fr; }
  .spm-refined-product-page .slp-support-inner { padding: 30px 22px; }
  .spm-refined-product-page .slp-price-card { padding: 24px 20px; }
  .spm-refined-product-page .slp-footer-inner { flex-direction: column; text-align: center; }
  .spm-refined-product-page .slp-footer-links { justify-content: center; }
  .spm-refined-product-page .slp-nav-price { display: none; }
}

/* v2.5.71 approved product-page HTML source-of-truth rebuild
   The refined WooCommerce product page now uses the approved HTML class names
   and section order. These rules intentionally mirror the approved standalone
   product-page design while staying scoped to the product template body. */
.spm-refined-product-page {
  --navy: #0F172A;
  --navy2: #1A2949;
  --panel: rgba(30,41,59,.58);
  --border: rgba(96,165,250,.22);
  --indigo: #5B5FE8;
  --indigo2: #60A5FA;
  --white: #F8FBFF;
  --muted: #93A4BB;
  --slate: #CBD5E1;
  --amber: #F59E0B;
  --green: #10B981;
  --red: #FB7185;
  --r: 10px;
  --r2: 16px;
  --fs-sm: 0.875rem;
  --fs-base: 0.95rem;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0 !important;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 8%, rgba(59,130,246,.16) 0%, transparent 42%),
    radial-gradient(circle at 8% 48%, rgba(16,185,129,.07) 0%, transparent 38%),
    radial-gradient(circle at 70% 92%, rgba(124,58,237,.10) 0%, transparent 42%),
    linear-gradient(135deg, #0F172A 0%, #1A2949 100%) !important;
  color: var(--white) !important;
  font-family: var(--sans) !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.spm-refined-product-page .product-page,
.spm-refined-product-page .product-page * { box-sizing: border-box; }
.spm-refined-product-page .product-page { min-height: 100vh; overflow-x: hidden; }
.spm-refined-product-page a { color: inherit; text-decoration: none; }
.spm-refined-product-page img { display: block; max-width: 100%; }
.spm-refined-product-page .container { width: min(1400px, calc(100% - 56px)); max-width: 1400px; margin: 0 auto; padding: 0 !important; }
.spm-refined-product-page nav { position: sticky; top: 0; z-index: 100; background: rgba(15,23,42,.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,.10); }
body.admin-bar.spm-refined-product-page nav { top: 32px; }
.spm-refined-product-page .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 74px; }
.spm-refined-product-page .nav-brand { display: inline-flex; align-items: center; min-width: 0; flex: 0 0 auto; max-width: 318px; color: #fff; }
.spm-refined-product-page .nav-brand svg,
.spm-refined-product-page .nav-brand img { width: 318px; height: auto; max-width: 100%; object-fit: contain; object-position: left center; }
.spm-refined-product-page .nav-links { display: flex; align-items: center; gap: 6px; }
.spm-refined-product-page .nav-links a { font-size: 14px; color: rgba(255,255,255,.62); padding: 6px 12px; border-radius: 6px; transition: color .15s ease; font-weight: 600; }
.spm-refined-product-page .nav-links a:hover { color: var(--white); }
.spm-refined-product-page .nav-cta { display: flex; align-items: center; gap: 10px; }
.spm-refined-product-page .nav-price { font-size: 14px; color: rgba(255,255,255,.50); font-weight: 600; }
.spm-refined-product-page .nav-price strong { color: var(--white); }
.spm-refined-product-page .cart-icon-button { position: relative; width: 42px; height: 42px; display: inline-grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; color: #fff; background: rgba(255,255,255,.05); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.spm-refined-product-page .cart-icon-button:hover { transform: translateY(-1px); border-color: rgba(96,165,250,.42); background: rgba(255,255,255,.09); }
.spm-refined-product-page .cart-icon-button svg { width: 21px; height: 21px; }
.spm-refined-product-page .sp-cart-count { position: absolute; top: -8px; right: -8px; min-width: 21px; height: 21px; display: inline-flex; align-items: center; justify-content: center; padding: 0 6px; border: 2px solid #0F172A; border-radius: 999px; color: #fff; background: var(--red); font-size: 11px; font-weight: 800; }
.spm-refined-product-page .hero { padding: 80px 0 0; position: relative; overflow: hidden; }
.spm-refined-product-page .hero:before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 60% -10%, rgba(91,91,255,.18) 0%, transparent 70%); pointer-events: none; }
.spm-refined-product-page .hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 420px); gap: 60px; align-items: start; }
.spm-refined-product-page .hero-copy { min-width: 0; }
.spm-refined-product-page .hero-eyebrow { margin-bottom: 20px; display: flex; gap: 8px; align-items: center; }
.spm-refined-product-page .tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #60A5FA; background: rgba(59,130,246,.10); border: 1px solid rgba(59,130,246,.30); padding: 4px 12px; border-radius: 999px; }
.spm-refined-product-page h1,
.spm-refined-product-page h2,
.spm-refined-product-page h3,
.spm-refined-product-page h4,
.spm-refined-product-page p { margin-top: 0; }
.spm-refined-product-page .hero h1 { margin: 0 0 20px; color: #fff !important; font-family: var(--serif) !important; font-weight: 400 !important; font-size: clamp(50px, 5.7vw, 86px) !important; line-height: .96 !important; letter-spacing: -.045em !important; max-width: 820px; }
.spm-refined-product-page .hero h1 em { font-style: italic; font-weight: 400; color: #93C5FD; }
.spm-refined-product-page .hero-sub { margin: 0 0 32px; max-width: 680px; color: var(--slate); font-size: 17px; line-height: 1.65; }
.spm-refined-product-page .hero-actions,
.spm-refined-product-page .cta-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.spm-refined-product-page .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; font-family: var(--sans); font-weight: 600; border: 0; transition: all .18s ease; white-space: nowrap; min-height: 48px; padding: 13px 28px; border-radius: var(--r); font-size: 15px; line-height: 1.15; text-decoration: none !important; }
.spm-refined-product-page .btn:hover { transform: translateY(-1px); }
.spm-refined-product-page .btn-primary,
.spm-refined-product-page .single_add_to_cart_button.button.alt { background: linear-gradient(135deg, #5B5FE8, #2563EB) !important; color: #fff !important; box-shadow: 0 12px 34px rgba(59,130,246,.34); }
.spm-refined-product-page .btn-primary:hover,
.spm-refined-product-page .single_add_to_cart_button.button.alt:hover { background: linear-gradient(135deg, #7C7FF2, #3B82F6) !important; box-shadow: 0 12px 34px rgba(59,130,246,.40); }
.spm-refined-product-page .btn-ghost { background: rgba(255,255,255,.04); color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.14); box-shadow: none; }
.spm-refined-product-page .btn-ghost:hover { border-color: rgba(96,165,250,.42); color: #fff; }
.spm-refined-product-page .btn-block { display: flex; width: 100%; justify-content: center; padding: 14px; margin-bottom: 10px; }
.spm-refined-product-page .hero-trust { margin-top: 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
.spm-refined-product-page .hero-trust-item { display: flex; align-items: center; gap: 6px; }
.spm-refined-product-page .hero-trust-item svg { width: 18px; height: 18px; color: var(--green); }
.spm-refined-product-page .download-count { margin-top: 16px; width: fit-content; }
.spm-refined-product-page .price-card { background: linear-gradient(135deg, rgba(30,41,59,.58) 0%, rgba(51,65,85,.34) 100%); border: 1px solid var(--border); border-radius: var(--r2); padding: 28px; position: relative; overflow: hidden; box-shadow: none; }
.spm-refined-product-page .price-card:before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #5B5FE8, #2563EB); }
.spm-refined-product-page .price-card-badge { position: absolute; top: 16px; right: 16px; background: var(--amber); color: #000; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.spm-refined-product-page .price-card-label { font-size: 12px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; padding-right: 92px; }
.spm-refined-product-page .price-card .sp-price-card { padding: 0 0 16px !important; border: 0 !important; border-radius: 0 !important; background: transparent !important; color: #fff !important; box-shadow: none !important; }
.spm-refined-product-page .price-card .sp-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 5px; }
.spm-refined-product-page .price-card .sp-price { color: #fff !important; font-family: var(--sans) !important; font-size: 48px !important; font-weight: 700 !important; letter-spacing: -.02em; line-height: 1; }
.spm-refined-product-page .price-card .sp-price-term { color: var(--slate); font-size: 14px; font-weight: 600; }
.spm-refined-product-page .price-card .sp-price-label,
.spm-refined-product-page .price-card .sp-billing-badge { display: none !important; }
.spm-refined-product-page .price-card .sp-discount-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.spm-refined-product-page .price-card .sp-price-regular { color: var(--muted); font-size: 14px; text-decoration: line-through; }
.spm-refined-product-page .price-card .sp-save-badge { background: transparent; border: 0; color: var(--amber); padding: 0; font-size: 13px; font-weight: 600; }
.spm-refined-product-page .price-card .sp-offer-expiry { color: var(--amber); font-size: 13px; margin: 0 0 18px; font-weight: 500; }
.spm-refined-product-page .price-card .sp-price-note { color: var(--slate); font-size: 13px; line-height: 1.55; margin-bottom: 18px; }
.spm-refined-product-page .price-card .sp-plan-selector { margin: 18px 0 0; padding: 0; background: transparent !important; color: var(--white); }
.spm-refined-product-page .price-card .sp-plan-selector h3 { display: none; }
.spm-refined-product-page .price-card .sp-plan-selector p { margin: 0 0 12px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.spm-refined-product-page .price-card form.cart,
.spm-refined-product-page .price-card .variations_form,
.spm-refined-product-page .price-card .woocommerce-variation-add-to-cart { margin: 0 !important; padding: 0 !important; background: transparent !important; border: 0 !important; box-shadow: none !important; }
.spm-refined-product-page .price-card table.variations,
.spm-refined-product-page .price-card .variations { width: 100% !important; margin: 0 0 16px !important; border: 0 !important; background: transparent !important; }
.spm-refined-product-page .price-card table.variations tr,
.spm-refined-product-page .price-card table.variations td,
.spm-refined-product-page .price-card table.variations th { display: block !important; width: 100% !important; padding: 0 !important; border: 0 !important; background: transparent !important; color: var(--muted) !important; text-align: left !important; }
.spm-refined-product-page .price-card table.variations label { display: block; margin: 0 0 6px; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.spm-refined-product-page .price-card select { width: 100% !important; min-height: 42px; background: var(--navy2) !important; color: var(--white) !important; border: 1px solid var(--border) !important; border-radius: 8px !important; padding: 10px 14px !important; font-size: 14px !important; font-family: var(--sans) !important; cursor: pointer; }
.spm-refined-product-page .price-card .reset_variations { display: inline-flex; margin-top: 8px; color: var(--muted) !important; font-size: 12px; }
.spm-refined-product-page .price-card .quantity { display: inline-flex; max-width: 74px; margin: 0 10px 10px 0 !important; }
.spm-refined-product-page .price-card .quantity input.qty { width: 74px !important; min-height: 48px; background: rgba(255,255,255,.06) !important; border: 1px solid var(--border) !important; color: #fff !important; border-radius: 10px !important; text-align: center; }
.spm-refined-product-page .price-card .single_add_to_cart_button.button.alt { min-height: 48px; border-radius: var(--r); font-size: 15px; font-weight: 600; border: 0 !important; padding: 0 24px !important; }
.spm-refined-product-page .price-card .single_variation_wrap,
.spm-refined-product-page .price-card .woocommerce-variation { color: var(--slate); font-size: 13px; }
.spm-refined-product-page .card-perks { margin-top: 18px; border-top: 1px solid var(--border); padding-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.spm-refined-product-page .card-perk { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(203,213,225,.72); font-weight: 600; }
.spm-refined-product-page .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex: 0 0 6px; }
.spm-refined-product-page .gallery { padding: 44px 0 64px; position: relative; }
.spm-refined-product-page .gallery .container { max-width: 1180px; }
.spm-refined-product-page .gallery-title,
.spm-refined-product-page .features-head,
.spm-refined-product-page .compare-head,
.spm-refined-product-page .faq-head { text-align: center; margin: 0 auto 40px; max-width: 760px; }
.spm-refined-product-page .section-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.spm-refined-product-page .gallery-title h2,
.spm-refined-product-page .features-head h2,
.spm-refined-product-page .compare-head h2,
.spm-refined-product-page .faq-head h2,
.spm-refined-product-page .support-inner h2,
.spm-refined-product-page .cta-footer h2 { margin: 0 0 12px; font-family: var(--serif) !important; font-weight: 400 !important; font-size: clamp(38px, 4vw, 64px) !important; line-height: 1.02 !important; letter-spacing: -.04em !important; color: #fff !important; }
.spm-refined-product-page .gallery-title p,
.spm-refined-product-page .features-head p,
.spm-refined-product-page .compare-head p,
.spm-refined-product-page .faq-head p,
.spm-refined-product-page .support-inner p,
.spm-refined-product-page .cta-footer p { margin: 0; color: var(--slate); font-size: 17px; line-height: 1.65; }
.spm-refined-product-page .slides-wrap { position: relative; overflow: hidden; width: min(100%, 1040px); max-width: 1040px; margin: 0 auto; border-radius: 18px; border: 1px solid var(--border); box-shadow: 0 24px 58px rgba(0,0,0,.32); background: rgba(15,23,42,.72); }
.spm-refined-product-page .slides { display: flex; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.spm-refined-product-page .slide { flex: 0 0 100%; height: clamp(320px, 43vw, 560px); background: rgba(15,23,42,.72); border: 0; display: flex; align-items: center; justify-content: center; padding: 0; cursor: pointer; }
.spm-refined-product-page .slide img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.spm-refined-product-page .gallery-placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: var(--muted); font-weight: 700; }
.spm-refined-product-page .slide-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(13,27,42,.72); border: 1px solid var(--border); color: var(--white); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; font-size: 28px; line-height: 1; }
.spm-refined-product-page .slide-arrow.prev { left: 12px; }
.spm-refined-product-page .slide-arrow.next { right: 12px; }
.spm-refined-product-page .slide-nav { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 16px; color: var(--muted); font-size: 13px; font-weight: 700; }
.spm-refined-product-page .features,
.spm-refined-product-page .compare,
.spm-refined-product-page .support-banner,
.spm-refined-product-page .faq,
.spm-refined-product-page .cta-footer { padding: 80px 0; border-top: 1px solid var(--border); }
.spm-refined-product-page .feat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.spm-refined-product-page .feat-item { padding: 28px 24px; background: var(--panel); border: 0; position: relative; transition: background .2s ease; }
.spm-refined-product-page .feat-item:hover { background: #172030; }
.spm-refined-product-page .feat-icon { width: 40px; height: 40px; background: rgba(59,130,246,.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: #60A5FA; font-size: 12px; font-weight: 700; }
.spm-refined-product-page .feat-item h3 { margin: 0 0 8px; color: #fff; font-family: var(--sans) !important; font-size: 17px !important; line-height: 1.28 !important; font-weight: 700 !important; letter-spacing: -.025em; }
.spm-refined-product-page .feat-item p { margin: 0; font-size: 14px; color: var(--slate); line-height: 1.6; }
.spm-refined-product-page .compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.spm-refined-product-page .compare-table { width: 100%; min-width: 760px; border-collapse: collapse; border-radius: var(--r2); overflow: hidden; border: 1px solid var(--border); }
.spm-refined-product-page .compare-table th,
.spm-refined-product-page .compare-table td { padding: 14px 20px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); color: var(--slate); }
.spm-refined-product-page .compare-table tr:last-child td { border-bottom: none; }
.spm-refined-product-page .compare-table thead th { background: var(--panel); font-weight: 700; color: #fff; font-size: 15px; }
.spm-refined-product-page .compare-table thead th:not(:first-child),
.spm-refined-product-page .compare-table td:not(:first-child) { text-align: center; }
.spm-refined-product-page .compare-table tbody tr:nth-child(even) td { background: rgba(15,32,53,.5); }
.spm-refined-product-page .compare-table tbody tr:nth-child(odd) td { background: rgba(15,23,42,.72); }
.spm-refined-product-page .th-free { color: var(--slate) !important; }
.spm-refined-product-page .th-pro { color: var(--indigo2) !important; }
.spm-refined-product-page .support-banner { margin: 0; }
.spm-refined-product-page .support-inner { background: var(--panel); border: 1px solid var(--border); border-radius: var(--r2); padding: 48px 56px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.spm-refined-product-page .support-badges { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.spm-refined-product-page .support-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--slate); background: rgba(255,255,255,.05); border: 1px solid var(--border); padding: 5px 12px; border-radius: 999px; }
.spm-refined-product-page .faq-list { max-width: 720px; margin: 0 auto; }
.spm-refined-product-page .faq-item { border-bottom: 1px solid var(--border); }
.spm-refined-product-page .faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--white); font-family: var(--sans); font-size: 15px; font-weight: 600; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; gap: 16px; list-style: none; }
.spm-refined-product-page .faq-q::-webkit-details-marker { display: none; }
.spm-refined-product-page .faq-q .icon { color: var(--muted); transition: transform .2s ease, color .2s ease; flex-shrink: 0; font-size: 22px; line-height: 1; }
.spm-refined-product-page .faq-item[open] .faq-q .icon { transform: rotate(45deg); color: var(--indigo2); }
.spm-refined-product-page .faq-a { color: var(--slate); font-size: 14px; line-height: 1.7; padding: 0 0 20px; }
.spm-refined-product-page .faq-a p { margin: 0; }
.spm-refined-product-page .cta-footer { text-align: center; position: relative; overflow: hidden; }
.spm-refined-product-page .cta-footer:before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(ellipse at center bottom, rgba(91,91,255,.15) 0%, transparent 70%); pointer-events: none; }
.spm-refined-product-page .cta-footer .container { max-width: 900px; position: relative; z-index: 1; }
.spm-refined-product-page .cta-price-note { color: var(--muted); font-size: 14px; margin-top: 16px; }
.spm-refined-product-page .site-footer { border-top: 1px solid var(--border); padding: 24px 0; background: transparent; }
.spm-refined-product-page .footer-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 18px; }
.spm-refined-product-page .site-footer span { color: var(--muted); font-size: 14px; }
.spm-refined-product-page .footer-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.spm-refined-product-page .footer-links a { color: var(--muted); font-size: 14px; font-weight: 600; }
.spm-refined-product-page .footer-links a:hover { color: var(--white); }
@media (max-width: 1100px) {
  .spm-refined-product-page .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .spm-refined-product-page .price-card { max-width: 560px; }
  .spm-refined-product-page .nav-links { display: none; }
  .spm-refined-product-page .slides-wrap { width: min(100%, 920px); max-width: 920px; }
  .spm-refined-product-page .slide { height: clamp(300px, 50vw, 500px); }
}
@media (max-width: 900px) {
  .spm-refined-product-page .feat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spm-refined-product-page .support-inner { grid-template-columns: 1fr; gap: 26px; }
  .spm-refined-product-page .slide { height: clamp(260px, 58vw, 420px); }
}
@media (max-width: 782px) { body.admin-bar.spm-refined-product-page nav { top: 46px; } }
@media (max-width: 640px) {
  .spm-refined-product-page .container { width: calc(100% - 32px); max-width: calc(100% - 32px); }
  .spm-refined-product-page .hero { padding-top: 64px; }
  .spm-refined-product-page .hero h1 { font-size: clamp(42px, 12vw, 58px) !important; }
  .spm-refined-product-page .hero-actions,
  .spm-refined-product-page .cta-actions { align-items: stretch; }
  .spm-refined-product-page .hero-actions .btn,
  .spm-refined-product-page .cta-actions .btn { width: 100%; white-space: normal; text-align: center; }
  .spm-refined-product-page .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .spm-refined-product-page .gallery { padding: 28px 0 44px; }
  .spm-refined-product-page .gallery-title,
  .spm-refined-product-page .features-head,
  .spm-refined-product-page .compare-head,
  .spm-refined-product-page .faq-head { margin-bottom: 32px; }
  .spm-refined-product-page .slides-wrap { border-radius: 14px; box-shadow: 0 18px 42px rgba(0,0,0,.28); }
  .spm-refined-product-page .slide { height: clamp(210px, 62vw, 320px); }
  .spm-refined-product-page .slide-arrow { width: 34px; height: 34px; background: rgba(13,27,42,.82); }
  .spm-refined-product-page .slide-arrow.prev { left: 8px; }
  .spm-refined-product-page .slide-arrow.next { right: 8px; }
  .spm-refined-product-page .feat-grid { grid-template-columns: 1fr; }
  .spm-refined-product-page .compare-table th,
  .spm-refined-product-page .compare-table td { padding: 13px 14px; font-size: 13px; }
  .spm-refined-product-page .support-inner { padding: 30px 22px; }
  .spm-refined-product-page .price-card { padding: 24px 20px; }
  .spm-refined-product-page .nav-price { display: none; }
  .spm-refined-product-page .footer-inner { flex-direction: column; text-align: center; }
  .spm-refined-product-page .footer-links { justify-content: center; }
}
@media (max-width: 420px) {
  .spm-refined-product-page .nav-brand svg,
  .spm-refined-product-page .nav-brand img { width: min(232px, calc(100vw - 96px)); }
  .spm-refined-product-page .slide { height: clamp(184px, 66vw, 280px); }
  .spm-refined-product-page .slide-nav { gap: 9px; }
}


/* v2.5.72 refined product-page HTML fidelity repairs */
.spm-refined-product-page .hero { padding: 80px 0 0 !important; }
.spm-refined-product-page .hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 60px; align-items: start; }
.spm-refined-product-page .price-card { width: 100% !important; max-width: 420px !important; align-self: start !important; background: linear-gradient(135deg, rgba(30,41,59,.58) 0%, rgba(51,65,85,.34) 100%) !important; border: 1px solid rgba(96,165,250,.22) !important; border-radius: var(--r2) !important; padding: 28px !important; box-shadow: none !important; }
.spm-refined-product-page .price-card .sp-plan-selector { margin: 18px 0 0 !important; padding: 0 !important; background: transparent !important; border: 0 !important; box-shadow: none !important; color: var(--white) !important; }
.spm-refined-product-page .price-card .sp-plan-selector h3 { display: none !important; }
.spm-refined-product-page .price-card .sp-plan-selector p { display: block !important; margin: 0 0 6px !important; color: var(--muted) !important; font-size: 12px !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: .06em !important; line-height: 1.35 !important; }
.spm-refined-product-page .price-card .variations_form,
.spm-refined-product-page .price-card form.cart,
.spm-refined-product-page .price-card .single_variation_wrap,
.spm-refined-product-page .price-card .woocommerce-variation-add-to-cart { margin: 0 !important; padding: 0 !important; background: transparent !important; border: 0 !important; box-shadow: none !important; }
.spm-refined-product-page .price-card .woocommerce-variation { display: none !important; }
.spm-refined-product-page .price-card table.variations { margin: 0 0 22px !important; border: 0 !important; background: transparent !important; }
.spm-refined-product-page .price-card table.variations tr,
.spm-refined-product-page .price-card table.variations th,
.spm-refined-product-page .price-card table.variations td { display: block !important; width: 100% !important; padding: 0 !important; border: 0 !important; background: transparent !important; box-shadow: none !important; }
.spm-refined-product-page .price-card table.variations label { display: none !important; }
.spm-refined-product-page .price-card select { width: 100% !important; min-height: 46px !important; background: var(--navy2) !important; color: var(--white) !important; border: 1px solid rgba(96,165,250,.22) !important; border-radius: 8px !important; padding: 10px 40px 10px 14px !important; font-size: 14px !important; font-weight: 600 !important; box-shadow: none !important; }
.spm-refined-product-page .price-card .quantity { display: none !important; }
.spm-refined-product-page .price-card .single_add_to_cart_button.button.alt { display: flex !important; width: 100% !important; align-items: center !important; justify-content: center !important; min-height: 48px !important; margin: 0 0 10px !important; border-radius: var(--r) !important; padding: 0 24px !important; font-size: 15px !important; font-weight: 600 !important; }
.spm-refined-product-page .price-card .btn-block.btn-ghost,
.spm-refined-product-page .price-card .sp-buy-actions > .btn-ghost { display: flex !important; width: 100% !important; min-height: 48px !important; align-items: center !important; justify-content: center !important; margin: 0 !important; }
.spm-refined-product-page .cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.spm-refined-product-page .cta-price-note { display: none !important; }
.spm-refined-product-page .compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r2); border: 1px solid var(--border); }
.spm-refined-product-page .compare-table { width: 100% !important; min-width: 760px !important; border-collapse: collapse !important; border: 0 !important; border-radius: var(--r2) !important; overflow: hidden !important; background: transparent !important; }
.spm-refined-product-page .compare-table th,
.spm-refined-product-page .compare-table td { padding: 14px 20px !important; text-align: left !important; font-size: 14px !important; border-bottom: 1px solid rgba(96,165,250,.22) !important; color: var(--slate) !important; }
.spm-refined-product-page .compare-table thead th { background: var(--panel) !important; color: #fff !important; font-size: 15px !important; font-weight: 700 !important; }
.spm-refined-product-page .compare-table thead th:not(:first-child),
.spm-refined-product-page .compare-table td:not(:first-child) { text-align: center !important; }
.spm-refined-product-page .compare-table tbody tr:nth-child(even) td { background: rgba(30,41,59,.46) !important; }
.spm-refined-product-page .compare-table tbody tr:nth-child(odd) td { background: rgba(15,23,42,.72) !important; }
.spm-refined-product-page .compare-table tr:last-child td { border-bottom: 0 !important; }
.spm-refined-product-page .th-free { color: var(--slate) !important; }
.spm-refined-product-page .th-pro { color: var(--indigo2) !important; }
.spm-refined-product-page .th-pro span { font-size: 12px !important; background: var(--indigo) !important; color: #fff !important; padding: 2px 8px !important; border-radius: 999px !important; margin-left: 6px !important; vertical-align: middle !important; }
.spm-refined-product-page .slides-wrap { width: min(100%, 1040px) !important; max-width: 1040px !important; margin: 0 auto !important; border-radius: 18px !important; border: 1px solid var(--border) !important; box-shadow: 0 24px 58px rgba(0,0,0,.32) !important; background: rgba(15,23,42,.72) !important; }
.spm-refined-product-page .slide-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(13,27,42,.70) !important; border: 1px solid var(--border) !important; color: var(--white) !important; width: 38px !important; height: 38px !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; z-index: 2 !important; padding: 0 !important; }
.spm-refined-product-page .slide-arrow:hover { background: var(--indigo) !important; border-color: var(--indigo) !important; }
.spm-refined-product-page .slide-arrow svg { display: block !important; width: 16px !important; height: 16px !important; pointer-events: none !important; }
.spm-refined-product-page .slide-arrow:disabled { opacity: 1 !important; cursor: pointer !important; }
@media (max-width: 1100px) {
  .spm-refined-product-page .hero-grid { grid-template-columns: 1fr !important; gap: 42px !important; }
  .spm-refined-product-page .price-card { max-width: 560px !important; }
}
@media (max-width: 640px) {
  .spm-refined-product-page .cta-actions { align-items: stretch; }
  .spm-refined-product-page .cta-actions .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
}

/* v2.5.74 final product-page HTML source-of-truth pricing card repair
   The uploaded product-page HTML is the source of truth for hero/card spacing,
   WooCommerce button sizing, section rhythm, and gallery arrow controls. */
@media (min-width: 1101px) {
  .spm-refined-product-page .hero { padding: 80px 0 0 !important; display: block !important; align-items: initial !important; }
  .spm-refined-product-page .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, 420px) !important; gap: 60px !important; align-items: start !important; }
  .spm-refined-product-page .hero-copy { padding-top: 0 !important; }
}
.spm-refined-product-page .price-card { width: 100% !important; max-width: 420px !important; padding: 28px !important; align-self: start !important; border-radius: 16px !important; overflow: hidden !important; }
.spm-refined-product-page .price-card .sp-price-card { padding: 0 0 16px !important; margin: 0 !important; }
.spm-refined-product-page .price-card .sp-price-row { margin-bottom: 6px !important; }
.spm-refined-product-page .price-card .sp-price { font-size: 56px !important; line-height: .98 !important; letter-spacing: -.02em !important; }
.spm-refined-product-page .price-card .sp-price-term { font-size: 17px !important; color: var(--slate) !important; }
.spm-refined-product-page .price-card .sp-discount-row { margin: 0 0 20px !important; gap: 8px !important; }
.spm-refined-product-page .price-card .sp-price-regular { color: var(--muted) !important; font-size: 14px !important; }
.spm-refined-product-page .price-card .sp-save-badge { color: var(--red) !important; font-size: 14px !important; font-weight: 700 !important; }
.spm-refined-product-page .price-card .sp-offer-expiry { margin: 0 0 20px !important; color: var(--amber) !important; font-size: 15px !important; font-weight: 700 !important; }
.spm-refined-product-page .price-card .sp-price-note { display: none !important; }
.spm-refined-product-page .price-card .sp-plan-selector { margin: 0 0 18px !important; padding: 0 !important; }
.spm-refined-product-page .price-card .sp-plan-selector p { display: block !important; margin: 0 0 8px !important; color: var(--muted) !important; font-size: 12px !important; font-weight: 700 !important; letter-spacing: .08em !important; text-transform: uppercase !important; line-height: 1.35 !important; }
.spm-refined-product-page .price-card table.variations { margin: 0 0 18px !important; }
.spm-refined-product-page .price-card select { min-height: 48px !important; border-radius: 8px !important; background: var(--navy2) !important; font-size: 15px !important; color: #fff !important; }
.spm-refined-product-page .price-card .woocommerce-variation-add-to-cart { display: grid !important; grid-template-columns: 1fr !important; width: 100% !important; gap: 0 !important; align-items: stretch !important; }
.spm-refined-product-page .price-card .single_add_to_cart_button { min-height: 0 !important; height: auto !important; padding: 14px !important; margin: 0 0 10px !important; border-radius: var(--r) !important; font-size: var(--fs-base) !important; font-weight: 600 !important; line-height: 1.6 !important; display: flex !important; width: 100% !important; max-width: none !important; align-items: center !important; justify-content: center !important; white-space: nowrap !important; text-align: center !important; }
.spm-refined-product-page .price-card .single_add_to_cart_button.button.alt { min-height: 0 !important; height: auto !important; padding: 14px !important; margin: 0 0 10px !important; border-radius: var(--r) !important; font-size: var(--fs-base) !important; font-weight: 600 !important; line-height: 1.6 !important; display: flex !important; width: 100% !important; max-width: none !important; }
.spm-refined-product-page .price-card .price-card-free-download { min-height: 0 !important; height: auto !important; padding: 14px !important; margin: 0 0 10px !important; border-radius: var(--r) !important; font-size: var(--fs-base) !important; font-weight: 600 !important; line-height: 1.6 !important; }
.spm-refined-product-page .price-card .card-perks { margin-top: 18px !important; padding-top: 18px !important; gap: 8px !important; }
.spm-refined-product-page .price-card .card-perk { font-size: var(--fs-sm) !important; line-height: 1.6 !important; color: rgba(203,213,225,.82) !important; }
.spm-refined-product-page .gallery { padding: 44px 0 64px !important; }
.spm-refined-product-page .features,
.spm-refined-product-page .compare,
.spm-refined-product-page .faq,
.spm-refined-product-page .cta-footer { padding: 80px 0 !important; }
.spm-refined-product-page .support-banner { padding: 60px 0 !important; }
.spm-refined-product-page .slide-arrow { width: 38px !important; height: 38px !important; background: rgba(13,27,42,.70) !important; border: 1px solid var(--border) !important; color: var(--white) !important; }
.spm-refined-product-page .slide-arrow.prev { left: 12px !important; }
.spm-refined-product-page .slide-arrow.next { right: 12px !important; }
@media (max-width: 1100px) {
  .spm-refined-product-page .hero { padding: 64px 0 54px !important; display: block !important; }
  .spm-refined-product-page .price-card { max-width: 560px !important; }
}
@media (max-width: 640px) {
  .spm-refined-product-page .price-card { padding: 24px 20px !important; }
  .spm-refined-product-page .price-card .single_add_to_cart_button { white-space: normal !important; }
}


/* v2.5.75 product-page pricing-card height parity repair
   The approved uploaded HTML renders the pricing card as a compact source-of-truth card.
   Native WooCommerce variation wrappers stay functional, but hidden duplicate pricing,
   reset, availability, and quantity UI must not contribute extra card height. */
.spm-refined-product-page .price-card .sp-plan-selector { margin: 0 !important; padding: 0 !important; background: transparent !important; }
.spm-refined-product-page .price-card .sp-plan-selector p { display: block !important; margin: 0 0 8px !important; color: var(--muted) !important; font-size: 12px !important; font-weight: 700 !important; letter-spacing: .08em !important; text-transform: uppercase !important; line-height: 1.35 !important; }
.spm-refined-product-page .price-card table.variations { margin: 0 0 18px !important; padding: 0 !important; border: 0 !important; }
.spm-refined-product-page .price-card table.variations label { display: none !important; }
.spm-refined-product-page .price-card select { min-height: 42px !important; padding: 10px 14px !important; font-size: var(--fs-sm) !important; line-height: 1.35 !important; border-radius: 8px !important; }
.spm-refined-product-page .price-card .single_variation_wrap { display: block !important; gap: 0 !important; margin: 0 !important; padding: 0 !important; min-height: 0 !important; height: auto !important; }
.spm-refined-product-page .price-card .woocommerce-variation.single_variation,
.spm-refined-product-page .price-card .woocommerce-variation-price,
.spm-refined-product-page .price-card .woocommerce-variation-description,
.spm-refined-product-page .price-card .woocommerce-variation-availability { display: none !important; min-height: 0 !important; height: 0 !important; margin: 0 !important; padding: 0 !important; overflow: hidden !important; }
.spm-refined-product-page .price-card .woocommerce-variation-add-to-cart { display: block !important; grid-template-columns: none !important; width: 100% !important; gap: 0 !important; margin: 0 !important; padding: 0 !important; min-height: 0 !important; }
.spm-refined-product-page .price-card .quantity { display: none !important; width: 0 !important; min-width: 0 !important; height: 0 !important; margin: 0 !important; padding: 0 !important; overflow: hidden !important; }
.spm-refined-product-page .price-card .reset_variations { display: none !important; margin: 0 !important; padding: 0 !important; }
.spm-refined-product-page .price-card .single_add_to_cart_button { min-height: 0 !important; height: auto !important; padding: 14px !important; margin: 0 0 10px !important; border-radius: var(--r) !important; font-size: var(--fs-base) !important; font-weight: 600 !important; line-height: 1.6 !important; display: flex !important; width: 100% !important; max-width: none !important; align-items: center !important; justify-content: center !important; white-space: nowrap !important; text-align: center !important; }
.spm-refined-product-page .price-card .single_add_to_cart_button.button.alt { min-height: 0 !important; height: auto !important; padding: 14px !important; margin: 0 0 10px !important; border-radius: var(--r) !important; font-size: var(--fs-base) !important; font-weight: 600 !important; line-height: 1.6 !important; display: flex !important; width: 100% !important; max-width: none !important; }
.spm-refined-product-page .price-card .price-card-free-download { min-height: 0 !important; height: auto !important; padding: 14px !important; margin: 0 0 10px !important; border-radius: var(--r) !important; font-size: var(--fs-base) !important; font-weight: 600 !important; line-height: 1.6 !important; }
.spm-refined-product-page .price-card .card-perks { margin-top: 18px !important; padding-top: 18px !important; gap: 8px !important; }
.spm-refined-product-page .price-card .card-perk { font-size: var(--fs-sm) !important; line-height: 1.6 !important; color: rgba(203,213,225,.82) !important; }

@media (max-width: 640px) {
  .spm-refined-product-page .price-card .single_add_to_cart_button { white-space: normal !important; }
}

/* v2.5.76 product-page gallery background and logo parity repair
   Keep the refined WooCommerce product page aligned with the approved HTML:
   the header uses the same homepage logo image asset, gallery slides cannot inherit
   the shared white gallery-card background, and screenshots are clipped with radius. */
.spm-refined-product-page .nav-brand-logo {
  width: 318px !important;
  height: auto !important;
  max-width: 318px !important;
  object-fit: contain !important;
  object-position: left center !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.spm-refined-product-page .slides-wrap,
.spm-refined-product-page .slides,
.spm-refined-product-page .slides-wrap .slide,
.spm-refined-product-page .slide.sp-gallery-btn {
  background: rgba(15,23,42,.72) !important;
}
.spm-refined-product-page .slide.sp-gallery-btn {
  aspect-ratio: auto !important;
  border-color: rgba(96,165,250,.22) !important;
  box-shadow: none !important;
}
.spm-refined-product-page .slides-wrap,
.spm-refined-product-page .slide,
.spm-refined-product-page .slide.sp-gallery-btn {
  overflow: hidden !important;
}
.spm-refined-product-page .product-page main img,
.spm-refined-product-page .slide img,
.spm-refined-product-page .sp-gallery-modal-preview img {
  border-radius: 16px !important;
  background: rgba(15,23,42,.72) !important;
}
.spm-refined-product-page .slide img,
.spm-refined-product-page .sp-gallery-image {
  display: block !important;
  overflow: hidden !important;
}
@media (max-width: 820px) {
  .spm-refined-product-page .nav-brand-logo {
    width: min(278px, calc(100vw - 104px)) !important;
    max-width: min(278px, calc(100vw - 104px)) !important;
  }
}
@media (max-width: 420px) {
  .spm-refined-product-page .nav-brand-logo {
    width: min(232px, calc(100vw - 96px)) !important;
    max-width: min(232px, calc(100vw - 96px)) !important;
  }
}


/* v2.5.77 product-page FAQ typography, section rhythm, and pricing-card compact repair
   Matches the uploaded HTML FAQ answer typography while tightening the product-page
   vertical rhythm and reducing the pricing-card height without changing structure. */
.spm-refined-product-page .faq-a,
.spm-refined-product-page .faq-a p { color: var(--slate) !important; font-family: var(--sans) !important; font-size: var(--fs-sm) !important; font-weight: 400 !important; line-height: 1.7 !important; }
.spm-refined-product-page .faq-q { font-size: var(--fs-base) !important; font-weight: 500 !important; }
.spm-refined-product-page .features,
.spm-refined-product-page .compare,
.spm-refined-product-page .faq,
.spm-refined-product-page .cta-footer { padding: 64px 0 !important; }
.spm-refined-product-page .support-banner { padding: 48px 0 !important; }
.spm-refined-product-page .gallery { padding: 36px 0 56px !important; }
.spm-refined-product-page .gallery-title,
.spm-refined-product-page .features-head,
.spm-refined-product-page .compare-head,
.spm-refined-product-page .faq-head { margin-bottom: 32px !important; }
.spm-refined-product-page .price-card { padding: 24px !important; }
.spm-refined-product-page .price-card .sp-price-card { padding: 0 0 10px !important; }
.spm-refined-product-page .price-card .sp-price-row { margin-bottom: 4px !important; }
.spm-refined-product-page .price-card .sp-discount-row { margin: 0 0 12px !important; }
.spm-refined-product-page .price-card .sp-offer-expiry { margin: 0 0 14px !important; }
.spm-refined-product-page .price-card .sp-plan-selector { margin: 0 0 12px !important; }
.spm-refined-product-page .price-card .sp-plan-selector p { margin: 0 0 6px !important; }
.spm-refined-product-page .price-card table.variations { margin: 0 0 12px !important; }
.spm-refined-product-page .price-card select { min-height: 40px !important; padding: 9px 14px !important; }
.spm-refined-product-page .price-card .single_add_to_cart_button { padding: 12px 14px !important; line-height: 1.35 !important; }
.spm-refined-product-page .price-card .single_add_to_cart_button.button.alt { padding: 12px 14px !important; line-height: 1.35 !important; }
.spm-refined-product-page .price-card .price-card-free-download { padding: 12px 14px !important; line-height: 1.35 !important; }
.spm-refined-product-page .price-card .card-perks { margin-top: 12px !important; padding-top: 12px !important; gap: 6px !important; }
.spm-refined-product-page .price-card .card-perk { line-height: 1.45 !important; }
@media (max-width: 640px) {
  .spm-refined-product-page .features,
  .spm-refined-product-page .compare,
  .spm-refined-product-page .faq,
  .spm-refined-product-page .cta-footer { padding: 52px 0 !important; }
  .spm-refined-product-page .support-banner { padding: 42px 0 !important; }
  .spm-refined-product-page .gallery { padding: 28px 0 44px !important; }
  .spm-refined-product-page .price-card { padding: 22px 18px !important; }
}


/* v2.5.78 product-page Free vs Pro comparison table, FAQ width, and pricing-card compact pass
   Converts current comparison content into a cleaner screenshot-style table, expands
   desktop FAQ readability to 1000px, and trims the pricing card a little further. */
.spm-refined-product-page .faq-list { max-width: 1000px !important; width: 100% !important; }
.spm-refined-product-page .compare-scroll { border: 1px solid rgba(96,165,250,.22) !important; border-radius: var(--r2) !important; overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; background: linear-gradient(135deg, rgba(30,41,59,.58) 0%, rgba(51,65,85,.34) 100%) !important; box-shadow: 0 22px 54px rgba(0,0,0,.24) !important; }
.spm-refined-product-page .compare-table { width: 100% !important; min-width: 760px !important; border: 0 !important; border-collapse: collapse !important; border-radius: 0 !important; overflow: hidden !important; background: transparent !important; }
.spm-refined-product-page .compare-table th,
.spm-refined-product-page .compare-table td { padding: 15px 20px !important; border-bottom: 1px solid rgba(96,165,250,.18) !important; color: var(--slate) !important; font-family: var(--sans) !important; font-size: 14px !important; line-height: 1.45 !important; vertical-align: middle !important; }
.spm-refined-product-page .compare-table thead th { background: rgba(30,41,59,.74) !important; color: #fff !important; font-size: 13px !important; font-weight: 700 !important; letter-spacing: .03em !important; text-transform: uppercase !important; }
.spm-refined-product-page .compare-table tbody tr:nth-child(odd) td { background: rgba(15,23,42,.55) !important; }
.spm-refined-product-page .compare-table tbody tr:nth-child(even) td { background: rgba(30,41,59,.34) !important; }
.spm-refined-product-page .compare-table tr:last-child td { border-bottom: 0 !important; }
.spm-refined-product-page .compare-table th:first-child,
.spm-refined-product-page .compare-table td:first-child { text-align: left !important; font-weight: 600 !important; color: rgba(248,251,255,.90) !important; }
.spm-refined-product-page .compare-table th:not(:first-child),
.spm-refined-product-page .compare-table td:not(:first-child) { text-align: left !important; width: auto !important; }
.spm-refined-product-page .compare-plan-title { display: inline-flex !important; align-items: center !important; background: transparent !important; color: inherit !important; padding: 0 !important; margin: 0 !important; border-radius: 0 !important; vertical-align: middle !important; }
.spm-refined-product-page .th-free .compare-plan-title { color: rgba(203,213,225,.86) !important; }
.spm-refined-product-page .th-pro .compare-plan-title { color: #60A5FA !important; }
.spm-refined-product-page .th-pro .compare-price-badge { display: inline-flex !important; align-items: center !important; justify-content: center !important; margin-left: 8px !important; padding: 3px 9px !important; border-radius: 999px !important; background: linear-gradient(135deg,#5B5FE8,#2563EB) !important; color: #fff !important; font-size: 11px !important; font-weight: 700 !important; line-height: 1.35 !important; letter-spacing: 0 !important; text-transform: none !important; vertical-align: middle !important; }
.spm-refined-product-page .compare-mark { display: inline-flex !important; align-items: center !important; justify-content: center !important; min-width: 24px !important; height: 24px !important; font-size: 18px !important; font-weight: 700 !important; line-height: 1 !important; }
.spm-refined-product-page .compare-yes { color: var(--green) !important; }
.spm-refined-product-page .compare-no { color: rgba(148,163,184,.82) !important; }
.spm-refined-product-page .price-card { padding: 22px !important; }
.spm-refined-product-page .price-card .sp-price { font-size: 44px !important; }
.spm-refined-product-page .price-card .sp-discount-row { margin: 0 0 10px !important; }
.spm-refined-product-page .price-card .sp-offer-expiry { margin: 0 0 12px !important; }
.spm-refined-product-page .price-card table.variations { margin: 0 0 10px !important; }
.spm-refined-product-page .price-card select { min-height: 38px !important; padding: 8px 13px !important; }
.spm-refined-product-page .price-card .single_add_to_cart_button,
.spm-refined-product-page .price-card .single_add_to_cart_button.button.alt,
.spm-refined-product-page .price-card .price-card-free-download { padding: 11px 14px !important; line-height: 1.3 !important; margin-bottom: 8px !important; }
.spm-refined-product-page .price-card .card-perks { margin-top: 10px !important; padding-top: 10px !important; gap: 5px !important; }
.spm-refined-product-page .price-card .card-perk { font-size: 13.5px !important; line-height: 1.38 !important; }
@media (max-width: 640px) {
  .spm-refined-product-page .faq-list { max-width: 100% !important; }
  .spm-refined-product-page .compare-table th,
  .spm-refined-product-page .compare-table td { padding: 13px 14px !important; font-size: 13px !important; }
  .spm-refined-product-page .price-card { padding: 20px 18px !important; }
}

/* v2.5.79 product-page text Free vs Pro comparison pass
   Keeps the approved dark screenshot-style table while rendering Free/Pro columns as
   readable commercial descriptions instead of centered checkmark-only cells. */
.spm-refined-product-page .compare-table th,
.spm-refined-product-page .compare-table td { vertical-align: top !important; }
.spm-refined-product-page .compare-table th:not(:first-child),
.spm-refined-product-page .compare-table td:not(:first-child) { text-align: left !important; width: auto !important; }
.spm-refined-product-page .compare-table th:nth-child(1),
.spm-refined-product-page .compare-table td:nth-child(1) { width: 24% !important; }
.spm-refined-product-page .compare-table th:nth-child(2),
.spm-refined-product-page .compare-table td:nth-child(2),
.spm-refined-product-page .compare-table th:nth-child(3),
.spm-refined-product-page .compare-table td:nth-child(3) { width: 38% !important; }
.spm-refined-product-page .compare-text { display: block !important; max-width: 44ch !important; color: rgba(203,213,225,.88) !important; font-size: 14px !important; font-weight: 400 !important; line-height: 1.56 !important; letter-spacing: 0 !important; text-align: left !important; }
.spm-refined-product-page .compare-mark { justify-content: flex-start !important; }
@media (max-width: 640px) {
  .spm-refined-product-page .compare-text { max-width: none !important; font-size: 13px !important; line-height: 1.5 !important; }
}

/* ===== v2.5.81 product-page homepage support modal parity ===== */
.sp-modal.sl-support-ticket-modal {
  background: rgba(2, 6, 23, 0.64) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

.sp-modal.sl-support-ticket-modal .sl-cta-modal-shell {
  width: min(980px, 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 34px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.38) !important;
}

.sp-modal.sl-support-ticket-modal .sl-cta-modal-head {
  position: relative !important;
  padding: 34px 118px 28px 38px !important;
  color: #ffffff !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.20), transparent 22rem),
    linear-gradient(135deg, #061536, #1d4ed8) !important;
}

.sp-modal.sl-support-ticket-modal .sl-cta-modal-head h2#supportTicketModalTitle {
  margin: 0 0 10px !important;
  max-width: 720px !important;
  color: #ffffff !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: clamp(30px, 3.1vw, 42px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  text-shadow: 0 1px 0 rgba(2, 6, 23, 0.12) !important;
}

.sp-modal.sl-support-ticket-modal .sl-cta-modal-head p#supportTicketModalDescription {
  margin: 0 !important;
  max-width: 760px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.56 !important;
}

.sp-modal.sl-support-ticket-modal .sl-cta-form-wrap {
  padding: 26px !important;
  background: #ffffff !important;
}

.sp-modal.sl-support-ticket-modal .sl-cta-modal-close {
  position: absolute !important;
  top: 22px !important;
  right: 22px !important;
  z-index: 30 !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.38) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.14) !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.20), 0 12px 28px rgba(2, 6, 23, 0.18) !important;
  transform: none !important;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease !important;
}

.sp-modal.sl-support-ticket-modal .sl-cta-modal-close::before,
.sp-modal.sl-support-ticket-modal .sl-cta-modal-close::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 17px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  transform-origin: center !important;
}

.sp-modal.sl-support-ticket-modal .sl-cta-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

.sp-modal.sl-support-ticket-modal .sl-cta-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}

.sp-modal.sl-support-ticket-modal .sl-cta-modal-close:hover,
.sp-modal.sl-support-ticket-modal .sl-cta-modal-close:focus,
.sp-modal.sl-support-ticket-modal .sl-cta-modal-close:active {
  border-color: rgba(255, 255, 255, 0.48) !important;
  background: rgba(255, 255, 255, 0.18) !important;
  color: transparent !important;
  outline: none !important;
  transform: none !important;
}

.sp-modal.sl-support-ticket-modal .sl-cta-modal-close:focus-visible {
  outline: 3px solid rgba(96, 165, 250, 0.55) !important;
  outline-offset: 4px !important;
}

@media (max-width: 640px) {
  .sp-modal.sl-support-ticket-modal .sl-cta-modal-head {
    padding: 58px 28px 22px 24px !important;
  }

  .sp-modal.sl-support-ticket-modal .sl-cta-modal-head h2#supportTicketModalTitle {
    font-size: clamp(28px, 8vw, 36px) !important;
  }

  .sp-modal.sl-support-ticket-modal .sl-cta-modal-close {
    top: 16px !important;
    right: 16px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
  }
}
