:root {
  --sp-blue: #1647e2;
  --sp-blue-dark: #0f36b8;
  --sp-blue-100: #eef2ff;
  --sp-blue-200: #bbc6f0;
  --sp-blue-300: #87a1d3;
  --sp-dark: #333333;
  --sp-ink: #1b1d24;
  --sp-muted: #5f6470;
  --sp-border: #e4e7ee;
  --sp-surface: #f6f7fb;
  --sp-white: #ffffff;
  --sp-radius-sm: 10px;
  --sp-radius: 16px;
  --sp-radius-lg: 24px;
  --sp-shadow: 0 1px 2px rgb(20 22 30 / .04), 0 12px 32px -12px rgb(22 71 226 / .18);
  --sp-shadow-lg: 0 2px 4px rgb(20 22 30 / .04), 0 24px 48px -16px rgb(22 71 226 / .25);
  --sp-font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --sp-container: 1200px;
  --sp-gutter: clamp(20px, 4vw, 32px);
  --sp-section: clamp(56px, 8vw, 104px);
  --sp-header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--sp-header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--sp-font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--sp-ink);
  background: var(--sp-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.sp-nav-open { overflow: hidden; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--sp-blue); text-decoration: none; }
a:hover { color: var(--sp-blue-dark); }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--sp-ink); }
h1 { font-size: clamp(40px, 6vw, 64px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: clamp(30px, 4.2vw, 44px); }
h3 { font-size: clamp(20px, 2.2vw, 24px); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
.sp-nav-list, .sp-footer-links, .sp-offers, .sp-hero-trust, .sp-about-chips, .sp-tools-list, .sp-404-links ul { list-style: none; }

.sp-container { width: min(var(--sp-container), 100% - 2 * var(--sp-gutter)); margin-inline: auto; }
.sp-section { padding-block: var(--sp-section); }
.sp-section--surface { background: var(--sp-surface); }
.sp-section--tight { padding-block: calc(var(--sp-section) * .6); }
.sp-section-head { max-width: 720px; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.sp-section-head--left { margin-inline: 0; text-align: left; }
.sp-section-head h2 { margin-bottom: 14px; }
.sp-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sp-blue);
}
.sp-lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--sp-muted); }
.sp-section-head .sp-lead { margin: 0; }

.sp-skip-link { position: absolute; left: 16px; top: -100px; z-index: 100; padding: 10px 16px; background: var(--sp-blue); color: #fff; border-radius: var(--sp-radius-sm); font-weight: 600; }
.sp-skip-link:focus { top: 16px; color: #fff; }

.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--sp-radius-sm);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.sp-btn .sp-icon { width: 18px; height: 18px; flex: none; }
.sp-btn--lg { padding: 16px 28px; font-size: 17px; }
.sp-btn--primary { background: var(--sp-blue); color: #fff; box-shadow: 0 8px 20px -10px rgb(22 71 226 / .6); }
.sp-btn--primary:hover { background: var(--sp-blue-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 12px 24px -10px rgb(22 71 226 / .7); }
.sp-btn--secondary { background: #fff; color: var(--sp-ink); border-color: var(--sp-border); }
.sp-btn--secondary:hover { color: var(--sp-blue); border-color: var(--sp-blue-200); background: var(--sp-blue-100); }
.sp-btn--ghost { background: transparent; color: var(--sp-ink); padding-inline: 12px; }
.sp-btn--ghost:hover { color: var(--sp-blue); }
.sp-btn--on-blue { background: #fff; color: var(--sp-blue); }
.sp-btn--on-blue:hover { background: var(--sp-blue-100); color: var(--sp-blue-dark); transform: translateY(-1px); }
.sp-btn--on-dark { background: rgb(255 255 255 / .1); color: #fff; border-color: rgb(255 255 255 / .18); }
.sp-btn--on-dark:hover { background: var(--sp-blue); border-color: var(--sp-blue); color: #fff; }
.sp-btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--sp-blue-200); outline-offset: 2px; }

.sp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--sp-blue-100);
  color: var(--sp-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
a.sp-pill:hover { background: var(--sp-blue-200); color: var(--sp-blue-dark); }

.sp-card {
  background: #fff;
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 24px;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.sp-card:hover { box-shadow: var(--sp-shadow); border-color: var(--sp-blue-200); }

.sp-cta {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--sp-radius-lg);
  background: var(--sp-blue);
  color: #fff;
}
.sp-cta-kicker { margin: 0 0 8px; font-size: 15px; font-weight: 600; opacity: .85; }
.sp-cta h2 { color: inherit; font-size: clamp(26px, 3.4vw, 36px); margin: 0; }
.sp-cta .sp-cta-text p:last-child { margin-bottom: 0; }
.sp-cta--light { background: var(--sp-blue-100); color: var(--sp-ink); }
.sp-cta--light .sp-cta-kicker { color: var(--sp-blue); opacity: 1; }
.sp-cta-action { justify-self: start; }
@media (min-width: 900px) {
  .sp-cta { grid-template-columns: 1fr auto; gap: 40px; }
  .sp-cta-action { justify-self: end; }
}

.sp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255 / .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.sp-header.is-scrolled { border-color: var(--sp-border); box-shadow: 0 8px 24px -16px rgb(20 22 30 / .25); }
.sp-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--sp-header-h); }
.sp-logo { display: inline-flex; align-items: center; flex: none; }
.sp-logo img { width: auto; height: 44px; }
.sp-logo--white img { height: 40px; }
.sp-nav { display: flex; align-items: center; gap: 8px; }
.sp-nav-list { display: flex; align-items: center; gap: 4px; margin-right: 8px; }
.sp-nav-list a { display: inline-block; padding: 8px 12px; border-radius: 8px; color: var(--sp-ink); font-weight: 600; font-size: 15px; }
.sp-nav-list a:hover { color: var(--sp-blue); background: var(--sp-blue-100); }
.sp-nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--sp-border); border-radius: var(--sp-radius-sm); background: #fff; align-items: center; justify-content: center; }
.sp-nav-toggle .sp-icon--close { display: none; }
.sp-nav-toggle[aria-expanded="true"] .sp-icon--menu { display: none; }
.sp-nav-toggle[aria-expanded="true"] .sp-icon--close { display: block; }
@media (max-width: 899px) {
  .sp-nav-toggle { display: inline-flex; }
  .sp-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - var(--sp-header-h));
    height: calc(100dvh - var(--sp-header-h));
    z-index: 49;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 20px var(--sp-gutter) 40px;
    background: #fff;
    border-top: 1px solid var(--sp-border);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  }
  .sp-nav.is-open { transform: none; opacity: 1; visibility: visible; transition-delay: 0s; }
  .sp-nav-list { flex-direction: column; align-items: stretch; gap: 4px; margin: 0 0 12px; }
  .sp-nav-list a { display: block; padding: 14px 12px; font-size: 18px; border-radius: var(--sp-radius-sm); }
  .sp-nav .sp-btn { width: 100%; padding-block: 16px; font-size: 17px; }
}

.sp-main { display: block; }

.sp-footer { background: var(--sp-dark); color: rgb(255 255 255 / .82); padding: clamp(48px, 6vw, 72px) 0 28px; margin-top: auto; }
.sp-footer a { color: #fff; }
.sp-footer a:hover { color: var(--sp-blue-200); }
.sp-footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .sp-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .sp-footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; } }
.sp-footer-brand p { margin: 18px 0 20px; max-width: 320px; font-size: 15px; }
.sp-footer-title { margin: 0 0 14px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.sp-footer p { font-size: 15px; line-height: 1.7; margin: 0; }
.sp-footer-links li + li { margin-top: 8px; }
.sp-footer-links a { font-size: 15px; }
.sp-footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: clamp(36px, 5vw, 56px); padding-top: 22px; border-top: 1px solid rgb(255 255 255 / .12); font-size: 13px; color: rgb(255 255 255 / .6); }
.sp-footer-top { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.sp-footer-top .sp-icon { width: 16px; height: 16px; transform: rotate(180deg); }

.sp-visually-hidden { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.sp-hero { position: relative; padding: clamp(40px, 7vw, 88px) 0 clamp(48px, 7vw, 96px); overflow: hidden; }
.sp-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgb(27 29 36 / .055) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(27 29 36 / .055) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 30%, transparent 100%);
  pointer-events: none;
}
.sp-hero-inner { position: relative; display: grid; gap: clamp(40px, 6vw, 72px); align-items: center; }
@media (min-width: 900px) { .sp-hero-inner { grid-template-columns: 1.1fr .9fr; } }
.sp-hero-copy h1 { max-width: 640px; margin-bottom: 20px; }
.sp-hero-copy .sp-lead { max-width: 560px; margin-bottom: 30px; font-size: clamp(17px, 1.8vw, 20px); }
.sp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.sp-hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 14px; font-weight: 500; color: var(--sp-muted); }
.sp-hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.sp-hero-trust .sp-icon { width: 18px; height: 18px; color: var(--sp-blue); }

.sp-hero-visual { position: relative; }
.sp-offers { display: grid; gap: 12px; }
.sp-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  box-shadow: var(--sp-shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sp-offer:hover { transform: translateY(-2px); box-shadow: var(--sp-shadow-lg); border-color: var(--sp-blue-200); }
@media (min-width: 1100px) {
  .sp-offer:nth-child(2), .sp-offer:nth-child(4) { transform: translateX(20px); }
  .sp-offer:nth-child(2):hover, .sp-offer:nth-child(4):hover { transform: translate(20px, -2px); }
  .sp-offer:nth-child(3) { transform: translateX(-8px); }
  .sp-offer:nth-child(3):hover { transform: translate(-8px, -2px); }
}
.sp-offer-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sp-offer-product { font-weight: 700; font-size: 16px; }
.sp-offer-advertiser { font-size: 14px; color: var(--sp-muted); }
.sp-offer-side { display: flex; align-items: center; gap: 10px; flex: none; }
.sp-offer-commission { font-size: clamp(18px, 1.8vw, 22px); font-weight: 800; letter-spacing: -0.02em; color: var(--sp-blue); white-space: nowrap; }
.sp-offer-model { padding: 4px 9px; border-radius: 999px; background: var(--sp-blue-100); color: var(--sp-blue); font-size: 11px; font-weight: 800; letter-spacing: .06em; }
.sp-offers-caption { margin: 14px 0 0; font-size: 13px; color: var(--sp-muted); text-align: right; }
.sp-offers-caption a { font-weight: 600; }

.sp-stats { background: var(--sp-blue); color: #fff; padding: clamp(36px, 5vw, 56px) 0; }
.sp-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
@media (min-width: 900px) { .sp-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.sp-stat { text-align: center; }
.sp-stat-value { display: block; font-size: clamp(30px, 3.6vw, 46px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.sp-stat-label { display: block; margin-top: 8px; font-size: 14px; font-weight: 500; color: rgb(255 255 255 / .8); max-width: 220px; margin-inline: auto; }

.sp-about { position: relative; padding: clamp(32px, 5vw, 60px); border-radius: var(--sp-radius-lg); background: var(--sp-dark); color: #fff; overflow: hidden; }
.sp-about::after { content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgb(22 71 226 / .55), transparent 70%); pointer-events: none; }
.sp-about-eyebrow { display: inline-block; padding: 6px 14px; border: 1px solid rgb(255 255 255 / .28); border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 22px; }
.sp-about-text { position: relative; max-width: 900px; margin: 0 0 26px; font-size: clamp(19px, 2.4vw, 26px); font-weight: 500; line-height: 1.45; letter-spacing: -0.01em; }
.sp-about-chips { position: relative; display: flex; flex-wrap: wrap; gap: 10px; }
.sp-about-chips li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgb(255 255 255 / .1); font-size: 14px; font-weight: 600; }
.sp-about-chips .sp-icon { width: 16px; height: 16px; color: var(--sp-blue-200); }

.sp-products { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .sp-products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .sp-products { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.sp-product { display: flex; align-items: center; gap: 16px; }
.sp-product h3 { font-size: 19px; }
.sp-product-icon, .sp-payment-icon { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 52px; height: 52px; border-radius: 14px; background: var(--sp-blue-100); color: var(--sp-blue); }
.sp-product-icon .sp-icon, .sp-payment-icon .sp-icon { width: 26px; height: 26px; }
.sp-payment-icon .sp-icon--brand { width: 24px; height: 24px; }

.sp-steps { display: grid; gap: 16px; grid-template-columns: 1fr; list-style: none; padding: 0; margin: 0; }
@media (min-width: 640px) { .sp-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .sp-steps { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.sp-step { position: relative; padding: 28px 24px 26px; border: 1px solid var(--sp-border); border-radius: var(--sp-radius); background: #fff; }
.sp-step-number { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin-bottom: 18px; border-radius: 50%; background: var(--sp-blue); color: #fff; font-weight: 800; font-size: 16px; }
.sp-step h3 { font-size: 18px; line-height: 1.3; }
.sp-step:last-child { background: var(--sp-blue-100); border-color: var(--sp-blue-200); }

.sp-tools-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .sp-tools-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.sp-tools, .sp-payments { padding: clamp(28px, 4vw, 40px); }
.sp-tools h2, .sp-payments h2 { font-size: clamp(24px, 2.6vw, 30px); margin-bottom: 18px; }
.sp-payments .sp-lead { font-size: 16px; margin-bottom: 22px; }
.sp-tools-list { display: grid; gap: 12px; }
.sp-tools-list li { display: flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 500; }
.sp-tools-list .sp-icon { flex: none; width: 28px; height: 28px; padding: 5px; border-radius: 50%; background: var(--sp-blue-100); color: var(--sp-blue); }
.sp-payments-grid { display: grid; gap: 10px; grid-template-columns: repeat(3, 1fr); }
.sp-payment { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 14px 8px; border: 1px solid var(--sp-border); border-radius: 14px; font-weight: 600; font-size: 13px; line-height: 1.25; }
@media (min-width: 480px) { .sp-payment { align-items: flex-start; text-align: left; gap: 12px; padding: 16px; font-size: 15px; } }
@media (max-width: 479px) { .sp-payment-icon { width: 44px; height: 44px; border-radius: 12px; } .sp-payment-icon .sp-icon { width: 22px; height: 22px; } }

.sp-faq { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--sp-border); }
.sp-faq-item { border-bottom: 1px solid var(--sp-border); }
.sp-faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; cursor: pointer; list-style: none; font-size: clamp(17px, 1.8vw, 19px); font-weight: 700; }
.sp-faq-item summary::-webkit-details-marker { display: none; }
.sp-faq-item summary:hover { color: var(--sp-blue); }
.sp-faq-icon { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--sp-blue-100); color: var(--sp-blue); transition: transform .2s ease, background-color .2s ease; }
.sp-faq-icon .sp-icon { width: 18px; height: 18px; }
.sp-faq-item[open] .sp-faq-icon { transform: rotate(45deg); background: var(--sp-blue); color: #fff; }
.sp-faq-answer { padding: 0 4px 24px; color: var(--sp-muted); font-size: 16px; max-width: 720px; }
.sp-faq-answer p:last-child { margin-bottom: 0; }

.sp-contact { display: grid; gap: 32px; align-items: start; }
@media (min-width: 900px) { .sp-contact { grid-template-columns: 1fr 1.25fr; gap: 56px; } }
.sp-contact-info h2 { margin-bottom: 14px; }
.sp-contact-list { display: grid; gap: 12px; margin-top: 26px; list-style: none; }
.sp-contact-list a { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; color: var(--sp-ink); font-size: 17px; }
.sp-contact-list a:hover { color: var(--sp-blue); }
.sp-contact-list .sp-icon { flex: none; width: 40px; height: 40px; padding: 9px; border-radius: 12px; background: #fff; border: 1px solid var(--sp-border); color: var(--sp-blue); }
.sp-contact-form { padding: clamp(24px, 3.5vw, 36px); }
.sp-contact-form:hover { box-shadow: none; border-color: var(--sp-border); }
.sp-form { display: grid; gap: 16px; }
.sp-form-row { display: grid; gap: 6px; }
.sp-form label { font-size: 14px; font-weight: 600; }
.sp-form input:not([type="hidden"]), .sp-form textarea, .wpcf7 input:not([type="submit"]):not([type="hidden"]):not([type="checkbox"]), .wpcf7 textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-sm);
  background: #fff;
  font: inherit;
  font-size: 16px;
  color: var(--sp-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.sp-form input:focus, .sp-form textarea:focus, .wpcf7 input:focus, .wpcf7 textarea:focus { outline: none; border-color: var(--sp-blue); box-shadow: 0 0 0 3px rgb(22 71 226 / .15); }
.sp-form textarea { resize: vertical; min-height: 130px; }
.sp-form .sp-btn { justify-self: start; }
.sp-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; margin: 0; }
.wpcf7 input[type="submit"] { display: inline-flex; padding: 14px 24px; border: 0; border-radius: var(--sp-radius-sm); background: var(--sp-blue); color: #fff; font: inherit; font-weight: 600; cursor: pointer; }
.wpcf7 input[type="submit"]:hover { background: var(--sp-blue-dark); }
.sp-notice { margin: 0 0 16px; padding: 12px 16px; border-radius: var(--sp-radius-sm); font-size: 15px; font-weight: 500; }
.sp-notice--ok { background: #e8f7ee; color: #0f6a3a; }
.sp-notice--error { background: #fdecec; color: #9b1c1c; }

.sp-page-hero { padding: clamp(40px, 6vw, 72px) 0 clamp(24px, 4vw, 40px); border-bottom: 1px solid var(--sp-border); }
.sp-page-hero h1 { font-size: clamp(34px, 5vw, 56px); max-width: 820px; }
.sp-page-hero .sp-lead { max-width: 640px; margin: 14px 0 0; }

.sp-archive-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .sp-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .sp-archive-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.sp-post-card { display: flex; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius); transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.sp-post-card:hover { box-shadow: var(--sp-shadow); border-color: var(--sp-blue-200); transform: translateY(-2px); }
.sp-post-card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--sp-blue-100); }
.sp-post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sp-post-card:hover .sp-post-card-media img { transform: scale(1.03); }
.sp-post-card-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--sp-blue); }
.sp-post-card-placeholder .sp-icon { width: 48px; height: 48px; }
.sp-post-card-body { display: flex; flex-direction: column; flex: 1; gap: 12px; padding: 22px 24px 24px; }
.sp-post-card-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: 13px; color: var(--sp-muted); }
.sp-post-card h3 { font-size: 20px; line-height: 1.3; }
.sp-post-card h3 a { color: var(--sp-ink); }
.sp-post-card h3 a:hover { color: var(--sp-blue); }
.sp-post-card-excerpt { margin: 0; font-size: 15px; color: var(--sp-muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.sp-post-card-more { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; font-size: 14px; font-weight: 700; }
.sp-post-card-more .sp-icon { width: 16px; height: 16px; transition: transform .2s ease; }
.sp-post-card:hover .sp-post-card-more .sp-icon { transform: translateX(3px); }
.sp-pagination { margin-top: clamp(32px, 5vw, 48px); }
.sp-pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.sp-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 14px; border: 1px solid var(--sp-border); border-radius: var(--sp-radius-sm); color: var(--sp-ink); font-weight: 600; }
.sp-pagination .page-numbers:hover { border-color: var(--sp-blue-200); color: var(--sp-blue); background: var(--sp-blue-100); }
.sp-pagination .page-numbers.current { background: var(--sp-blue); border-color: var(--sp-blue); color: #fff; }
.sp-pagination .page-numbers.dots { border: 0; }
.sp-empty { text-align: center; padding: 40px 0; color: var(--sp-muted); }

.sp-article-hero { padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 44px); }
.sp-article-hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.sp-article-hero .sp-pill { margin-bottom: 20px; }
.sp-article-hero h1 { font-size: clamp(32px, 4.6vw, 52px); margin-bottom: 22px; }
.sp-article-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; font-size: 14px; font-weight: 500; color: var(--sp-muted); }
.sp-article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.sp-article-meta .sp-icon { width: 17px; height: 17px; color: var(--sp-blue); }
.sp-article-figure { margin: 0 0 clamp(36px, 5vw, 56px); }
.sp-article-figure img { width: 100%; max-width: 1100px; max-height: 560px; object-fit: cover; margin: 0 auto; border-radius: var(--sp-radius-lg); }
.sp-article-cta { max-width: 820px; margin: clamp(40px, 6vw, 64px) auto 0; padding-bottom: var(--sp-section); }
.sp-article-cta .sp-cta { padding: clamp(28px, 4vw, 40px); }
.sp-article-cta .sp-cta h2 { font-size: clamp(22px, 2.6vw, 28px); }
.sp-related .sp-section-head { margin-bottom: 28px; }

.sp-prose { max-width: 840px; margin: 0 auto; font-size: clamp(17px, 1.5vw, 18px); line-height: 1.7; }
.sp-prose > *:first-child { margin-top: 0; }
.sp-prose > * + * { margin-top: 1.1em; }
.sp-prose h1, .sp-prose h2 { font-size: clamp(26px, 3vw, 32px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin-top: 2.2em; margin-bottom: .5em; }
.sp-prose h3 { font-size: clamp(21px, 2.2vw, 24px); margin-top: 1.8em; margin-bottom: .4em; }
.sp-prose h4 { font-size: 19px; margin-top: 1.6em; }
.sp-prose p { margin-bottom: 0; }
.sp-prose a { text-decoration: underline; text-decoration-color: var(--sp-blue-200); text-underline-offset: 3px; font-weight: 500; }
.sp-prose a:hover { text-decoration-color: currentColor; }
.sp-prose ul, .sp-prose ol { padding-left: 1.4em; }
.sp-prose li { margin-bottom: .45em; }
.sp-prose li::marker { color: var(--sp-blue); font-weight: 700; }
.sp-prose strong { font-weight: 700; }
.sp-prose blockquote, .sp-prose .wp-block-quote { margin: 1.6em 0; padding: 16px 24px; border-left: 4px solid var(--sp-blue); background: var(--sp-blue-100); border-radius: 0 var(--sp-radius) var(--sp-radius) 0; font-size: 1.05em; }
.sp-prose blockquote p { margin: 0; }
.sp-prose blockquote cite { display: block; margin-top: 8px; font-size: 14px; font-style: normal; color: var(--sp-muted); }
.sp-prose img { border-radius: var(--sp-radius); margin-inline: auto; }
.sp-prose figure { margin-inline: 0; }
.sp-prose figcaption { margin-top: 8px; font-size: 14px; color: var(--sp-muted); text-align: center; }
.sp-prose hr { border: 0; border-top: 1px solid var(--sp-border); margin: 2em 0; }
.sp-prose code { padding: 2px 6px; border-radius: 6px; background: var(--sp-surface); font-size: .9em; }
.sp-prose pre { padding: 18px 20px; border-radius: var(--sp-radius); background: var(--sp-dark); color: #fff; overflow-x: auto; font-size: 15px; }
.sp-prose .wp-block-button__link, .sp-prose .wp-element-button { display: inline-flex; padding: 12px 20px; border-radius: var(--sp-radius-sm); background: var(--sp-blue); color: #fff; font-weight: 600; text-decoration: none; }
.sp-prose .wp-block-button__link:hover { background: var(--sp-blue-dark); }
.sp-prose .has-text-align-center { text-align: center; }
.sp-prose .wp-block-table { margin-inline: 0; }
.sp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--sp-border); border-radius: var(--sp-radius); }
@media (min-width: 900px) { .sp-prose .sp-table-wrap { width: min(1100px, 100vw - 2 * var(--sp-gutter)); margin-left: 50%; transform: translateX(-50%); } }
.sp-table-wrap table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 15px; line-height: 1.5; margin: 0; }
.sp-table-wrap th, .sp-table-wrap td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--sp-border); }
.sp-table-wrap th { background: var(--sp-blue-100); color: var(--sp-blue-dark); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.sp-table-wrap tr:last-child td { border-bottom: 0; }
.sp-table-wrap tbody tr:nth-child(even) td { background: var(--sp-surface); }
.sp-table-wrap td:first-child { font-weight: 700; }
.sp-page-links { margin-top: 2em; font-weight: 600; }
.sp-page-links a, .sp-page-links span { margin-right: 6px; }

.sp-page .sp-prose { padding-top: 8px; }

.sp-404 { position: relative; overflow: hidden; padding: clamp(56px, 9vw, 120px) 0 clamp(56px, 8vw, 96px); text-align: center; }
.sp-404-inner { position: relative; max-width: 720px; }
.sp-404-code { margin: 0 0 8px; font-size: clamp(96px, 20vw, 180px); font-weight: 800; line-height: 1; letter-spacing: -0.06em; color: var(--sp-blue); }
.sp-404 h1 { font-size: clamp(30px, 4.4vw, 44px); margin-bottom: 16px; }
.sp-404 .sp-lead { max-width: 560px; margin: 0 auto 32px; }
.sp-404-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: clamp(36px, 5vw, 56px); }
.sp-404-links { display: inline-block; padding: 24px 28px; border: 1px solid var(--sp-border); border-radius: var(--sp-radius); background: #fff; text-align: left; }
.sp-404-links p { margin: 0 0 12px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sp-muted); }
.sp-404-links li + li { margin-top: 10px; }
.sp-404-links a { display: inline-flex; align-items: center; gap: 8px; color: var(--sp-ink); font-weight: 600; }
.sp-404-links a:hover { color: var(--sp-blue); }
.sp-404-links .sp-icon { width: 16px; height: 16px; color: var(--sp-blue); }

.wpcf7-form p { margin: 0 0 16px; }
.wpcf7-form label { display: block; font-size: 14px; font-weight: 600; }
.wpcf7-form label .wpcf7-form-control-wrap { display: block; margin-top: 6px; }
.wpcf7-form textarea { min-height: 130px; resize: vertical; }
.wpcf7-form .wpcf7-not-valid-tip { display: block; margin-top: 6px; font-size: 13px; font-weight: 500; color: #9b1c1c; }
.wpcf7-form .wpcf7-response-output { margin: 16px 0 0; padding: 12px 16px; border: 0 !important; border-radius: var(--sp-radius-sm); background: var(--sp-blue-100); font-size: 15px; font-weight: 500; }
.wpcf7-form.sent .wpcf7-response-output { background: #e8f7ee; color: #0f6a3a; }
.wpcf7-form.invalid .wpcf7-response-output, .wpcf7-form.failed .wpcf7-response-output, .wpcf7-form.spam .wpcf7-response-output { background: #fdecec; color: #9b1c1c; }
.wpcf7-spinner { margin-left: 12px; }

.grecaptcha-badge { visibility: hidden !important; }
.sp-recaptcha-note { margin: 14px 0 0; font-size: 12px; line-height: 1.5; color: var(--sp-muted); }
.sp-recaptcha-note a { color: var(--sp-muted); text-decoration: underline; }
.sp-recaptcha-note a:hover { color: var(--sp-blue); }

.sp-prose .sp-table-wrap, .sp-prose figure.wp-block-table.sp-table-wrap { display: block; margin: 1.6em 0; padding: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius); }
.sp-prose .sp-table-wrap table { border: 0 !important; border-collapse: collapse; border-spacing: 0; table-layout: auto; width: 100%; min-width: 720px; margin: 0; font-size: 15px; line-height: 1.5; background: transparent; }
.sp-prose .sp-table-wrap thead, .sp-prose .sp-table-wrap tfoot { border: 0; }
.sp-prose .sp-table-wrap th, .sp-prose .sp-table-wrap td { border: 0; border-bottom: 1px solid var(--sp-border); padding: 12px 14px; text-align: left; vertical-align: top; word-break: normal; background: transparent; }
.sp-prose .sp-table-wrap th { background: var(--sp-blue-100); color: var(--sp-blue-dark); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.sp-prose .sp-table-wrap tbody tr:nth-child(odd) td { background: transparent; }
.sp-prose .sp-table-wrap tbody tr:nth-child(even) td { background: var(--sp-surface); }
.sp-prose .sp-table-wrap tr:last-child td { border-bottom: 0; }
.sp-prose .sp-table-wrap td:first-child { font-weight: 700; }
.sp-prose .sp-table-wrap figcaption { padding: 10px 14px; font-size: 14px; color: var(--sp-muted); }
@media (min-width: 900px) { .sp-prose .sp-table-wrap, .sp-prose figure.wp-block-table.sp-table-wrap { width: min(1100px, 100vw - 2 * var(--sp-gutter)); margin-left: 50%; transform: translateX(-50%); } }
.sp-prose .sp-table-wrap tbody tr, .sp-prose .sp-table-wrap.is-style-stripes tbody tr:nth-child(odd), .sp-prose .sp-table-wrap.is-style-stripes tbody tr:nth-child(even) { background: transparent; }
.sp-prose .sp-table-wrap.is-style-stripes tbody tr:nth-child(even) td { background: var(--sp-surface); }
.sp-prose .sp-table-wrap.is-style-stripes th, .sp-prose .sp-table-wrap.is-style-stripes td { border-color: var(--sp-border); }
.sp-prose .sp-table-wrap table tr > td, .sp-prose .sp-table-wrap table tr > th { border-width: 0 0 1px 0; border-style: solid; border-color: var(--sp-border); }
.sp-prose .sp-table-wrap table tbody tr:last-child > td { border-bottom-width: 0; }
