/* ==========================================================================
   Submit Guest Posts — main stylesheet
   ========================================================================== */

:root {
	--sgp-brand: #6d28d9;
	--sgp-brand-2: #7c3aed;
	--sgp-brand-soft: #efe9ff;
	--sgp-coral: #ff5a3d;
	--sgp-wa: #25d366;
	--sgp-wa-d: #1ebe5b;
	--sgp-ink: #0f1222;
	--sgp-text: #2b2f45;
	--sgp-muted: #636882;
	--sgp-line: #e7e8f0;
	--sgp-bg: #f7f7fb;
	--sgp-card: #ffffff;
	--sgp-alt: #f0effa;
	--sgp-header: #ffffff;
	--sgp-shadow: 0 1px 2px rgba(16, 18, 40, .04), 0 6px 24px -8px rgba(16, 18, 40, .10);
	--sgp-shadow-lg: 0 24px 60px -20px rgba(40, 20, 100, .28);
	--sgp-radius: 18px;
	--sgp-radius-sm: 12px;
	--sgp-font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--sgp-head: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--sgp-wrap: 1280px;
	--sgp-header-h: 72px;
	color-scheme: light;
}

html[data-scheme="dark"] {
	--sgp-brand-soft: #231a45;
	--sgp-ink: #f2f3fa;
	--sgp-text: #d5d7e6;
	--sgp-muted: #9a9fb8;
	--sgp-line: #262a40;
	--sgp-bg: #0b0d17;
	--sgp-card: #131626;
	--sgp-alt: #10121f;
	--sgp-header: #0e1020;
	--sgp-shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 8px 28px -10px rgba(0, 0, 0, .6);
	color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--sgp-header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
body {
	margin: 0;
	font-family: var(--sgp-font);
	font-size: 16px;
	line-height: 1.65;
	color: var(--sgp-text);
	background: var(--sgp-bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.sgp-lock { overflow: hidden; }
img, svg, video { max-width: 100%; height: auto; }
img { display: block; }
a { color: var(--sgp-brand); text-decoration: none; }
a:hover { text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--sgp-head); color: var(--sgp-ink); line-height: 1.22; margin: 0 0 .5em; letter-spacing: -.015em; font-weight: 800; }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2.5px solid var(--sgp-brand-2); outline-offset: 2px; border-radius: 6px; }
.sgp-ico { flex: none; display: inline-block; vertical-align: middle; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed !important; top: 8px; left: 8px; width: auto; height: auto; clip: auto; z-index: 1000; background: var(--sgp-card); color: var(--sgp-ink); padding: 10px 16px; border-radius: 10px; box-shadow: var(--sgp-shadow); }

.sgp-wrap { width: 100%; max-width: var(--sgp-wrap); margin: 0 auto; padding: 0 20px; }
.sgp-wrap--narrow { max-width: 860px; }
.sgp-mt { margin-top: 36px; }

/* Buttons ------------------------------------------------------------------ */
.sgp-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 44px; padding: 10px 18px; border-radius: 999px; border: 1.5px solid transparent;
	font-family: var(--sgp-head); font-weight: 700; font-size: 15px; line-height: 1.2; white-space: nowrap;
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease; min-width: 0;
}
.sgp-btn:hover { transform: translateY(-1px); }
.sgp-btn--brand { background: linear-gradient(135deg, var(--sgp-brand-2), var(--sgp-brand)); color: #fff; box-shadow: 0 8px 20px -8px rgba(109, 40, 217, .6); }
.sgp-btn--brand:hover { color: #fff; box-shadow: 0 12px 26px -8px rgba(109, 40, 217, .7); }
.sgp-btn--wa { background: var(--sgp-wa); color: #fff; }
.sgp-btn--wa:hover { background: var(--sgp-wa-d); color: #fff; }
.sgp-btn--ghost { background: var(--sgp-card); color: var(--sgp-ink); border-color: var(--sgp-line); }
.sgp-btn--ghost:hover { border-color: var(--sgp-brand); color: var(--sgp-brand); }
.sgp-btn--light { background: #fff; color: #1b1440; }
.sgp-btn--light:hover { color: var(--sgp-brand); }
.sgp-btn--sm { min-height: 38px; padding: 8px 14px; font-size: 14px; }
.sgp-btn--block { width: 100%; }
.sgp-btn[disabled] { opacity: .6; pointer-events: none; }
.sgp-btnrow { display: flex; flex-wrap: wrap; gap: 12px; }
.sgp-iconbtn {
	display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
	background: transparent; border: 1.5px solid var(--sgp-line); color: var(--sgp-ink); transition: .2s;
}
.sgp-iconbtn:hover { border-color: var(--sgp-brand); color: var(--sgp-brand); }
.is-flip { transform: scaleX(-1); }

.sgp-eyebrow {
	display: inline-flex; align-items: center; gap: 6px; font-family: var(--sgp-head); font-size: 12.5px; font-weight: 800;
	letter-spacing: .08em; text-transform: uppercase; color: var(--sgp-brand); background: var(--sgp-brand-soft);
	padding: 6px 12px; border-radius: 999px; margin-bottom: 14px;
}
html[data-scheme="dark"] .sgp-eyebrow { color: #c4b5fd; }
.sgp-eyebrow--light { background: rgba(255, 255, 255, .14); color: #fff !important; }

/* Badges ------------------------------------------------------------------- */
.sgp-badge {
	--c: var(--sgp-brand);
	display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
	font-family: var(--sgp-head); font-size: 12px; font-weight: 800; letter-spacing: .02em;
	color: var(--c); background: color-mix(in srgb, var(--c) 12%, transparent); padding: 4px 10px; border-radius: 999px;
}
.sgp-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--c); }
html[data-scheme="dark"] .sgp-badge { color: color-mix(in srgb, var(--c) 55%, #fff); background: color-mix(in srgb, var(--c) 22%, transparent); }
.sgp-label { display: inline-flex; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: #fff4e5; color: #9a4b00; }
html[data-scheme="dark"] .sgp-label { background: #3a2a12; color: #ffc27a; }

/* Progress ----------------------------------------------------------------- */
.sgp-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120; pointer-events: none; }
.sgp-progress span { display: block; height: 100%; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: linear-gradient(90deg, var(--sgp-brand-2), var(--sgp-coral)); }

/* Topbar ------------------------------------------------------------------- */
.sgp-topbar { background: #0f1222; color: #c9cbe0; font-size: 13px; }
html[data-scheme="dark"] .sgp-topbar { background: #070812; border-bottom: 1px solid var(--sgp-line); }
.sgp-topbar__in { display: flex; align-items: center; gap: 20px; height: 38px; }
.sgp-topbar a { color: #e6e7f3; }
.sgp-topbar a:hover { color: #fff; text-decoration: underline; }
.sgp-ticker { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.sgp-ticker__tag { display: inline-flex; align-items: center; gap: 5px; flex: none; background: linear-gradient(135deg, #ff7a45, #ff3d6e); color: #fff; font-weight: 800; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; }
.sgp-ticker__viewport { overflow: hidden; flex: 1; min-width: 0; mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.sgp-ticker__track { display: flex; gap: 40px; list-style: none; margin: 0; padding: 0; width: max-content; animation: sgp-ticker 60s linear infinite; }
.sgp-ticker:hover .sgp-ticker__track, .sgp-ticker:focus-within .sgp-ticker__track { animation-play-state: paused; }
.sgp-ticker__track li { white-space: nowrap; position: relative; }
.sgp-ticker__track li + li::before { content: ""; position: absolute; left: -22px; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: #6b6f8d; }
@keyframes sgp-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.sgp-topbar__right { display: flex; align-items: center; gap: 18px; flex: none; margin-left: auto; }
.sgp-topbar__date { color: #9ea2c0; }

/* Header ------------------------------------------------------------------- */
.sgp-header { position: sticky; top: 0; z-index: 90; background: var(--sgp-header); border-bottom: 1px solid var(--sgp-line); }
.admin-bar .sgp-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .sgp-header { top: 0; } }
.sgp-header.is-scrolled { box-shadow: 0 6px 24px -14px rgba(16, 18, 40, .35); }
.sgp-header__in { display: flex; align-items: center; gap: 20px; height: var(--sgp-header-h); }
.sgp-logo { display: inline-flex; align-items: center; flex: none; }
.sgp-logo__img { height: 44px; width: auto; max-width: 260px; }
.sgp-logo__dark { display: none; }
html[data-scheme="dark"] .sgp-logo__light { display: none; }
html[data-scheme="dark"] .sgp-logo__dark { display: block; }
.sgp-nav { flex: 1; min-width: 0; display: flex; justify-content: safe center; }
.sgp-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.sgp-menu > li { position: relative; }
.sgp-menu a { display: flex; align-items: center; gap: 4px; padding: 9px 11px; border-radius: 10px; color: var(--sgp-ink); font-weight: 600; font-size: 15px; white-space: nowrap; }
.sgp-menu a:hover, .sgp-menu .current-menu-item > a, .sgp-menu .current-menu-ancestor > a, .sgp-menu .current-category-ancestor > a { color: var(--sgp-brand); background: var(--sgp-brand-soft); }
html[data-scheme="dark"] .sgp-menu a:hover, html[data-scheme="dark"] .sgp-menu .current-menu-item > a { color: #d8ccff; }
.sgp-menu .menu-item-has-children > a::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-3px); margin-left: 5px; opacity: .6; }
.sgp-menu .sub-menu {
	list-style: none; margin: 0; padding: 8px; position: absolute; top: calc(100% + 6px); left: 0; min-width: 230px;
	background: var(--sgp-card); border: 1px solid var(--sgp-line); border-radius: 14px; box-shadow: var(--sgp-shadow-lg);
	display: none; z-index: 5; max-height: 70vh; overflow: auto;
}
.sgp-menu .sub-menu a { font-weight: 500; padding: 8px 12px; }
.sgp-menu > li:hover > .sub-menu, .sgp-menu > li:focus-within > .sub-menu, .sgp-menu > li.is-open > .sub-menu { display: block; }
.sgp-menu > li::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 8px; }
.sgp-nav__extra { display: none; }
.sgp-header__actions { display: flex; align-items: center; gap: 8px; flex: none; margin-left: auto; }
.sgp-header__cta { display: none; }
.sgp-scheme .is-sun { display: none; }
html[data-scheme="dark"] .sgp-scheme .is-sun { display: inline-block; }
html[data-scheme="dark"] .sgp-scheme .is-moon { display: none; }
.sgp-burger { display: none; }
.sgp-burger .is-close { display: none; }
.sgp-burger[aria-expanded="true"] .is-close { display: inline-block; }
.sgp-burger[aria-expanded="true"] .is-open { display: none; }

@media (min-width: 1340px) { .sgp-header__cta { display: inline-flex; } }

html.sgp-drawer-mode .sgp-burger { display: inline-grid; }
html.sgp-drawer-mode .sgp-nav {
display: none; position: fixed; top: var(--sgp-nav-top, 110px); right: 0; bottom: 0; left: auto;
width: min(380px, 100%); background: var(--sgp-card); border-left: 1px solid var(--sgp-line);
padding: 14px 18px 28px; overflow-y: auto; flex-direction: column; justify-content: flex-start; z-index: 95;
box-shadow: -20px 0 60px -20px rgba(0, 0, 0, .35);
}
html.sgp-drawer-mode .sgp-nav.is-open { display: flex; animation: sgp-slide .22s ease-out; }
html.sgp-drawer-mode .sgp-menu { flex-direction: column; align-items: stretch; gap: 2px; }
html.sgp-drawer-mode .sgp-menu a { padding: 12px 12px; font-size: 16px; }
html.sgp-drawer-mode .sgp-menu .menu-item-has-children > a { justify-content: space-between; }
html.sgp-drawer-mode .sgp-menu .sub-menu { position: static; box-shadow: none; border: 0; border-left: 2px solid var(--sgp-line); border-radius: 0; margin: 2px 0 6px 14px; padding: 0 0 0 6px; min-width: 0; max-height: none; background: transparent; }
html.sgp-drawer-mode .sgp-menu > li:hover > .sub-menu { display: none; }
html.sgp-drawer-mode .sgp-menu > li.is-open > .sub-menu { display: block; }
html.sgp-drawer-mode .sgp-menu > li::after { display: none; }
html.sgp-drawer-mode .sgp-nav__extra { display: grid; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--sgp-line); }
html.sgp-drawer-mode .sgp-header.nav-open { z-index: 100; }
@keyframes sgp-slide { from { transform: translateX(30px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (max-width: 560px) {
	.sgp-logo__img { height: 36px; max-width: 200px; }
	.sgp-header__in { gap: 10px; }
	.sgp-iconbtn { width: 40px; height: 40px; }
	.sgp-header__actions { gap: 6px; }
	.sgp-topbar__right { display: none; }
}
@media (max-width: 380px) { .sgp-logo__img { height: 32px; max-width: 168px; } .sgp-header__actions { gap: 4px; } .sgp-iconbtn { width: 38px; height: 38px; } }

.sgp-overlay { position: fixed; inset: 0; background: rgba(8, 9, 20, .5); z-index: 80; }
.sgp-overlay[hidden] { display: none; }

/* Search dialog ------------------------------------------------------------ */
.sgp-search { position: fixed; inset: 0; z-index: 140; background: rgba(8, 9, 20, .55); display: flex; justify-content: center; align-items: flex-start; padding: 10vh 16px 16px; }
.sgp-search[hidden] { display: none; }
.sgp-search__box { width: min(680px, 100%); background: var(--sgp-card); border-radius: 22px; box-shadow: var(--sgp-shadow-lg); padding: 10px; animation: sgp-pop .18s ease-out; max-height: 80vh; overflow: auto; }
@keyframes sgp-pop { from { transform: translateY(-8px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.sgp-search__form { display: flex; align-items: center; gap: 10px; padding: 6px 6px 6px 14px; border-bottom: 1px solid var(--sgp-line); color: var(--sgp-muted); }
.sgp-search__form input { flex: 1; min-width: 0; border: 0; background: transparent; font-size: 18px; padding: 12px 0; outline: none; color: var(--sgp-ink); }
.sgp-search__results:empty { display: none; }
.sgp-search__results { padding: 8px 4px; }
.sgp-search__results a { display: block; padding: 10px 12px; border-radius: 12px; color: var(--sgp-ink); font-weight: 600; }
.sgp-search__results a:hover, .sgp-search__results a:focus { background: var(--sgp-brand-soft); }
.sgp-search__results a small { display: block; color: var(--sgp-muted); font-weight: 500; font-size: 12.5px; text-transform: capitalize; }
.sgp-search__results p { padding: 10px 12px; margin: 0; color: var(--sgp-muted); }
.sgp-search__chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 10px 8px; align-items: center; }
.sgp-search__chips span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--sgp-muted); margin-right: 4px; }
.sgp-search__chips a { font-size: 14px; padding: 6px 12px; border-radius: 999px; background: var(--sgp-alt); color: var(--sgp-ink); }
.sgp-search__chips a:hover { background: var(--sgp-brand-soft); color: var(--sgp-brand); }

/* Sections ----------------------------------------------------------------- */
.sgp-main { display: block; }
.sgp-section { padding: 48px 0; }
.sgp-section--tight { padding: 16px 0 8px; }
.sgp-section--alt { background: var(--sgp-alt); }
.sgp-sechead { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.sgp-sechead--center { flex-direction: column; align-items: center; text-align: center; }
.sgp-sechead__t { font-size: clamp(22px, 2.4vw, 30px); margin: 0; }
.sgp-sechead__s { color: var(--sgp-muted); margin: 8px 0 0; }
.sgp-empty { padding: 30px; text-align: center; background: var(--sgp-card); border: 1px dashed var(--sgp-line); border-radius: var(--sgp-radius); color: var(--sgp-muted); }
.sgp-empty .sgp-grid { margin-top: 20px; text-align: left; }

/* Intro + bento ------------------------------------------------------------ */
.sgp-intro { padding: 34px 0 20px; background:
	radial-gradient(900px 380px at 12% -10%, color-mix(in srgb, var(--sgp-brand-2) 16%, transparent), transparent 70%),
	radial-gradient(700px 300px at 95% 0%, color-mix(in srgb, var(--sgp-coral) 10%, transparent), transparent 70%); }
.sgp-intro__head { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 30px; align-items: end; margin-bottom: 26px; }
.sgp-intro__title { font-size: clamp(28px, 4vw, 46px); margin: 0 0 10px; background: linear-gradient(120deg, var(--sgp-ink) 30%, var(--sgp-brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
html[data-scheme="dark"] .sgp-intro__title { background-image: linear-gradient(120deg, #fff 30%, #b9a5ff); }
.sgp-intro__sub { color: var(--sgp-muted); font-size: 17px; margin: 0; max-width: 620px; }
.sgp-intro__search { display: flex; align-items: center; gap: 8px; background: var(--sgp-card); border: 1.5px solid var(--sgp-line); border-radius: 999px; padding: 6px 6px 6px 18px; box-shadow: var(--sgp-shadow); color: var(--sgp-muted); }
.sgp-intro__search:focus-within { border-color: var(--sgp-brand-2); }
.sgp-intro__search input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; padding: 10px 0; font-size: 16px; color: var(--sgp-ink); }

.sgp-bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(210px, auto)); gap: 16px; }
.sgp-bento__lead { grid-column: span 2; grid-row: span 2; display: flex; min-width: 0; }
.sgp-bento--1 .sgp-bento__lead { grid-column: 1 / -1; }
.sgp-bento--2, .sgp-bento--3 { grid-template-rows: auto; }
.sgp-bento--2 .sgp-bento__lead, .sgp-bento--3 .sgp-bento__lead { grid-row: span 1; }
.sgp-bento--2 .sgp-card--tile { grid-column: span 2; }

/* Cards -------------------------------------------------------------------- */
.sgp-card { position: relative; display: flex; flex-direction: column; min-width: 0; background: var(--sgp-card); border: 1px solid var(--sgp-line); border-radius: var(--sgp-radius); overflow: hidden; box-shadow: var(--sgp-shadow); transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.sgp-card:hover { transform: translateY(-3px); box-shadow: var(--sgp-shadow-lg); border-color: color-mix(in srgb, var(--sgp-brand-2) 30%, var(--sgp-line)); }
.sgp-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--sgp-alt); }
.sgp-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sgp-card:hover .sgp-card__media img { transform: scale(1.045); }
.sgp-card__body { display: flex; flex-direction: column; gap: 10px; padding: 18px 18px 20px; flex: 1; min-width: 0; }
.sgp-card__title { font-size: 18px; margin: 0; line-height: 1.32; overflow-wrap: anywhere; }
.sgp-card__title a { color: var(--sgp-ink); background: linear-gradient(currentColor, currentColor) 0 100% / 0 2px no-repeat; transition: background-size .3s; }
.sgp-card__title a:hover { background-size: 100% 2px; }
.sgp-card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.sgp-card .sgp-badge { position: relative; z-index: 2; }
.sgp-card__ex { color: var(--sgp-muted); font-size: 14.5px; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.sgp-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: auto; font-size: 13px; color: var(--sgp-muted); }
.sgp-meta span { display: inline-flex; align-items: center; gap: 4px; }
.sgp-meta i { font-style: normal; opacity: .6; }

.sgp-ph { --c: var(--sgp-brand); display: grid; place-items: center; width: 100%; height: 100%; min-height: 100%; color: #fff; background:
	radial-gradient(circle at 25% 20%, color-mix(in srgb, var(--c) 55%, #fff) 0, transparent 45%),
	linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 60%, #0f1222)); }
.sgp-ph .sgp-ico { opacity: .85; width: 56px; height: 56px; }

/* hero card */
.sgp-card--hero { flex: 1; }
.sgp-card--hero .sgp-card__media { aspect-ratio: auto; flex: 1; min-height: 260px; }
.sgp-card--hero .sgp-card__body { padding: 22px 24px 24px; flex: none; }
.sgp-card--hero .sgp-card__title { font-size: clamp(22px, 2.4vw, 30px); }

/* tile: image with overlay */
.sgp-card--tile { min-height: 210px; border: 0; background: #151833; }
.sgp-card--tile .sgp-card__media { position: absolute; inset: 0; aspect-ratio: auto; }
.sgp-card--tile .sgp-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 10, 25, .05) 20%, rgba(10, 10, 25, .88)); }
.sgp-card--tile .sgp-card__body { position: relative; margin-top: auto; flex: none; padding: 16px; gap: 8px; }
.sgp-card--tile .sgp-card__title { font-size: 16.5px; }
.sgp-card--tile .sgp-card__title a { color: #fff; }
.sgp-card--tile .sgp-meta { color: rgba(255, 255, 255, .78); }
.sgp-card--tile .sgp-badge { background: rgba(255, 255, 255, .92); color: color-mix(in srgb, var(--c) 80%, #000); }

/* list & mini */
.sgp-card--mini { flex-direction: row; align-items: center; gap: 14px; border: 0; box-shadow: none; background: transparent; border-radius: 12px; padding: 0; }
.sgp-card--mini:hover { transform: none; box-shadow: none; }
.sgp-card--mini .sgp-card__media { flex: none; width: 96px; aspect-ratio: 4 / 3; border-radius: 12px; }
.sgp-card--mini .sgp-card__body { padding: 0; gap: 6px; }
.sgp-card--mini .sgp-card__title { font-size: 15.5px; }

.sgp-card--mini .sgp-meta > i, .sgp-card--mini .sgp-meta > span { display: none; }

/* Block widgets */
.sgp-widget h2, .sgp-widget .wp-block-heading { font-size: 17px; margin: 0 0 12px; }
.sgp-widget ul, .sgp-widget ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.sgp-widget li a { color: var(--sgp-ink); font-weight: 500; }
.sgp-widget li a:hover { color: var(--sgp-brand); }
.sgp-widget .wp-block-search__label { font-weight: 700; color: var(--sgp-ink); }
.sgp-widget .wp-block-search__inside-wrapper { gap: 6px; }
.sgp-widget .wp-block-search__input { border-radius: 12px; border: 1.5px solid var(--sgp-line); background: var(--sgp-bg); padding: 10px 12px; min-width: 0; }
.sgp-widget .wp-block-search__button { border-radius: 12px; border: 0; background: var(--sgp-brand); color: #fff; font-weight: 700; margin-left: 0; }
.sgp-widget select { width: 100%; padding: 10px; border-radius: 12px; border: 1.5px solid var(--sgp-line); background: var(--sgp-bg); }

/* grids */
.sgp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr)); gap: 20px; }
.sgp-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sgp-more { display: flex; justify-content: center; margin-top: 28px; }

/* Topic rail --------------------------------------------------------------- */
.sgp-rail__nav { display: flex; gap: 8px; }
.sgp-rail { list-style: none; margin: 0; padding: 4px 2px 12px; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(150px, 1fr); gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.sgp-rail li { scroll-snap-align: start; min-width: 0; }
.sgp-topic { --c: var(--sgp-brand); display: flex; flex-direction: column; gap: 4px; padding: 16px; height: 100%; border-radius: 16px; background: var(--sgp-card); border: 1px solid var(--sgp-line); color: var(--sgp-ink); transition: .2s; }
.sgp-topic:hover { border-color: var(--c); transform: translateY(-2px); box-shadow: 0 12px 26px -14px color-mix(in srgb, var(--c) 60%, transparent); }
.sgp-topic__ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; margin-bottom: 8px; color: #fff; background: linear-gradient(135deg, color-mix(in srgb, var(--c) 75%, #fff), var(--c)); }
.sgp-topic__name { font-family: var(--sgp-head); font-weight: 800; font-size: 15.5px; line-height: 1.25; }
.sgp-topic__n { font-size: 12.5px; color: var(--sgp-muted); }

/* Layout with sidebar ------------------------------------------------------ */
.sgp-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 36px; align-items: start; }
.sgp-layout__main { min-width: 0; }
.sgp-layout .sgp-grid { grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr)); }
.sgp-side { display: grid; gap: 20px; position: sticky; top: calc(var(--sgp-header-h) + 20px); min-width: 0; }
.admin-bar .sgp-side { top: calc(var(--sgp-header-h) + 52px); }
.sgp-box, .sgp-widget { background: var(--sgp-card); border: 1px solid var(--sgp-line); border-radius: var(--sgp-radius); padding: 20px; box-shadow: var(--sgp-shadow); min-width: 0; }
.sgp-box__t, .sgp-widget__title { display: flex; align-items: center; gap: 8px; font-size: 17px; margin: 0 0 14px; }
.sgp-box__t .sgp-ico { color: var(--sgp-coral); }
.sgp-widget ul { margin: 0; padding-left: 18px; }
.sgp-ranks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; counter-reset: r; }
.sgp-rank { display: flex; gap: 12px; align-items: flex-start; }
.sgp-rank__n { flex: none; font-family: var(--sgp-head); font-weight: 800; font-size: 26px; line-height: 1; background: linear-gradient(135deg, var(--sgp-brand-2), var(--sgp-coral)); -webkit-background-clip: text; background-clip: text; color: transparent; min-width: 34px; }
.sgp-rank__t { font-size: 15px; margin: 0 0 4px; line-height: 1.35; }
.sgp-rank__t a { color: var(--sgp-ink); }
.sgp-rank__t a:hover { color: var(--sgp-brand); }
.sgp-rank .sgp-meta { font-size: 12px; }
.sgp-box--promo { color: #e9e6ff; border: 0; background:
	radial-gradient(300px 160px at 100% 0, rgba(255, 90, 61, .35), transparent 70%),
	linear-gradient(145deg, #3b1d8f, #1b1440); display: grid; gap: 10px; }
.sgp-box--promo .sgp-box__t { color: #fff; margin: 0; font-size: 20px; }
.sgp-box--promo p { margin: 0 0 6px; font-size: 14.5px; }
.sgp-box__badge { justify-self: start; font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: rgba(255, 255, 255, .15); color: #fff; }
.sgp-catlist { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.sgp-catlist a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; color: var(--sgp-ink); font-weight: 600; font-size: 14.5px; }
.sgp-catlist a:hover { background: var(--sgp-alt); }
.sgp-catlist em { margin-left: auto; font-style: normal; font-size: 12px; color: var(--sgp-muted); background: var(--sgp-alt); padding: 2px 8px; border-radius: 999px; }
.sgp-dot { width: 9px; height: 9px; border-radius: 3px; background: var(--c); flex: none; }

/* Category blocks ---------------------------------------------------------- */
.sgp-catblocks { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 22px; }
.sgp-catblock { --c: var(--sgp-brand); display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.sgp-catblock__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-bottom: 10px; border-bottom: 2px solid var(--c); }
.sgp-catblock__head h2 { display: flex; align-items: center; gap: 10px; font-size: 19px; margin: 0; }
.sgp-catblock__ic { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: var(--c); color: #fff; }
.sgp-catblock__head a { display: inline-flex; align-items: center; gap: 4px; font-size: 13.5px; font-weight: 700; color: var(--c); white-space: nowrap; }
html[data-scheme="dark"] .sgp-catblock__head a { color: color-mix(in srgb, var(--c) 55%, #fff); }
.sgp-catblock__list { display: grid; gap: 14px; }
.sgp-catblock .sgp-card--grid .sgp-card__ex { -webkit-line-clamp: 2; }

/* Services band (home) ----------------------------------------------------- */
.sgp-services { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 36px; align-items: center; padding: 40px; border-radius: 28px; color: #e9e6ff; background:
	radial-gradient(600px 260px at 0% 0%, rgba(124, 58, 237, .55), transparent 70%),
	radial-gradient(500px 260px at 100% 100%, rgba(255, 90, 61, .28), transparent 70%),
	#15112e; overflow: hidden; }
.sgp-services h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); }
.sgp-services .sgp-eyebrow { background: rgba(255, 255, 255, .12); color: #fff; }
.sgp-services p { color: #cfcbef; }
.sgp-stats { list-style: none; margin: 22px 0 24px; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.sgp-stats li { background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .1); border-radius: 14px; padding: 12px; min-width: 0; }
.sgp-stats strong { display: block; font-family: var(--sgp-head); font-size: 21px; color: #fff; line-height: 1.2; }
.sgp-stats span { font-size: 12.5px; color: #bdb8e6; }
.sgp-services__plans { display: grid; gap: 12px; }
.sgp-miniplan { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 2px 16px; padding: 18px 56px 18px 20px; border-radius: 18px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); color: #fff; transition: .2s; }
.sgp-miniplan:hover { background: rgba(255, 255, 255, .12); color: #fff; transform: translateX(4px); }
.sgp-miniplan.is-pop { background: #fff; color: #1b1440; }
.sgp-miniplan.is-pop .sgp-miniplan__f { color: #5b5780; }
.sgp-miniplan__name { font-family: var(--sgp-head); font-weight: 800; font-size: 17px; }
.sgp-miniplan__name em { font-style: normal; font-size: 11px; padding: 2px 8px; border-radius: 999px; background: linear-gradient(135deg, #ff7a45, #ff3d6e); color: #fff; margin-left: 6px; vertical-align: 2px; }
.sgp-miniplan__price { font-family: var(--sgp-head); font-weight: 800; font-size: 22px; grid-row: span 2; align-self: center; }
.sgp-miniplan__f { font-size: 13.5px; color: #cfcbef; }
.sgp-miniplan__go { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); }

/* CTA band (footer) -------------------------------------------------------- */
.sgp-cta-band { padding: 0 0 48px; }
.sgp-cta-band__in { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 34px 38px; border-radius: 26px; color: #fff; background: linear-gradient(120deg, #5b21b6, #7c3aed 55%, #ff5a3d); box-shadow: var(--sgp-shadow-lg); }
.sgp-cta-band h2 { color: #fff; font-size: clamp(22px, 2.6vw, 30px); margin: 0 0 6px; }
.sgp-cta-band p { margin: 0; color: rgba(255, 255, 255, .88); max-width: 620px; }
.sgp-cta-band__btns { display: flex; gap: 12px; flex-wrap: wrap; flex: none; }

/* Footer ------------------------------------------------------------------- */
.sgp-footer { background: #0c0e1c; color: #a9adc6; padding: 56px 0 24px; font-size: 14.5px; }
html[data-scheme="dark"] .sgp-footer { background: #070812; border-top: 1px solid var(--sgp-line); }
.sgp-footer a { color: #d4d6e8; }
.sgp-footer a:hover { color: #fff; }
.sgp-footer__grid { display: grid; grid-template-columns: 1.4fr 1.2fr .8fr 1fr; gap: 36px; }
.sgp-footer__grid > * { min-width: 0; }
.sgp-footer .sgp-logo__light { display: none; }
.sgp-footer .sgp-logo__dark { display: block; }
.sgp-footer__brand p { margin: 16px 0; max-width: 360px; }
.sgp-footer__h { color: #fff; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 14px; }
.sgp-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.sgp-footer__list--cols { grid-template-columns: 1fr 1fr; column-gap: 16px; }
.sgp-footer__contact a { display: inline-flex; align-items: center; gap: 8px; overflow-wrap: anywhere; }
.sgp-footer__contact .sgp-ico { color: #8b7cf6; }
.sgp-footer__contact li:first-child .sgp-ico { color: var(--sgp-wa); }
.sgp-footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 40px; padding-top: 22px; border-top: 1px solid #22253b; font-size: 13.5px; }
.sgp-footer__bottom p { margin: 0; }
.sgp-footer__legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px; }
.sgp-social { display: flex; gap: 8px; flex-wrap: wrap; }
.sgp-social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: #1a1d33; color: #fff; }
.sgp-social a:hover { background: var(--sgp-brand); }
.sgp-footer .sgp-widget { background: transparent; border: 0; box-shadow: none; padding: 16px 0 0; }
.sgp-footer .sgp-widget__title { color: #fff; }

/* WhatsApp float (bottom right) -------------------------------------------- */
.sgp-wa {
	position: fixed; right: 20px; bottom: 20px; z-index: 110; display: inline-flex; align-items: center; gap: 0;
	height: 60px; min-width: 60px; padding: 0 15px; border-radius: 999px; background: var(--sgp-wa); color: #fff;
	box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .65); transition: gap .25s, padding .25s, background .2s;
}
.sgp-wa:hover { color: #fff; background: var(--sgp-wa-d); }
.sgp-wa::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: var(--sgp-wa); z-index: -1; animation: sgp-pulse 2.4s ease-out infinite; }
@keyframes sgp-pulse { 0% { transform: scale(1); opacity: .55; } 80%, 100% { transform: scale(1.45); opacity: 0; } }
.sgp-wa__label { max-width: 0; overflow: hidden; white-space: nowrap; font-family: var(--sgp-head); font-weight: 700; font-size: 15px; transition: max-width .3s ease; }
@media (hover: hover) and (min-width: 700px) {
	.sgp-wa:hover, .sgp-wa:focus-visible { gap: 10px; padding-right: 20px; }
	.sgp-wa:hover .sgp-wa__label, .sgp-wa:focus-visible .sgp-wa__label { max-width: 160px; }
}
@media (max-width: 560px) { .sgp-wa { right: 14px; bottom: 14px; height: 56px; min-width: 56px; padding: 0 13px; } }
.sgp-totop { position: fixed; right: 26px; bottom: 92px; z-index: 105; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--sgp-line); background: var(--sgp-card); color: var(--sgp-ink); display: grid; place-items: center; box-shadow: var(--sgp-shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .25s; }
.sgp-totop.is-on { opacity: 1; visibility: visible; transform: none; }
.sgp-totop:hover { color: var(--sgp-brand); }
@media (max-width: 560px) { .sgp-totop { right: 19px; bottom: 82px; width: 44px; height: 44px; } }

/* Archive / page header ---------------------------------------------------- */
.sgp-archead { --c: var(--sgp-brand); padding: 26px 0 30px; background:
	radial-gradient(700px 240px at 0% 0%, color-mix(in srgb, var(--c) 16%, transparent), transparent 70%), var(--sgp-card); border-bottom: 1px solid var(--sgp-line); }
.sgp-archead__row { display: flex; gap: 18px; align-items: flex-start; }
.sgp-archead__ic { flex: none; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 18px; color: #fff; background: linear-gradient(135deg, color-mix(in srgb, var(--c) 70%, #fff), var(--c)); box-shadow: 0 12px 26px -12px var(--c); }
.sgp-archead__k { display: block; font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--c); }
html[data-scheme="dark"] .sgp-archead__k { color: color-mix(in srgb, var(--c) 55%, #fff); }
.sgp-archead__t { font-size: clamp(26px, 3.4vw, 40px); margin: 2px 0 6px; overflow-wrap: anywhere; }
.sgp-archead__d { color: var(--sgp-muted); max-width: 720px; }
.sgp-archead__d p { margin: 0; }
.sgp-archead--page { padding-bottom: 26px; }
.sgp-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.sgp-pills a { padding: 7px 14px; border-radius: 999px; background: var(--sgp-alt); color: var(--sgp-ink); font-size: 14px; font-weight: 600; border: 1px solid var(--sgp-line); }
.sgp-pills a:hover { border-color: var(--sgp-brand); color: var(--sgp-brand); }
.sgp-inline-search { display: flex; gap: 8px; margin-top: 18px; max-width: 560px; }
.sgp-inline-search input { flex: 1; min-width: 0; padding: 11px 16px; border-radius: 999px; border: 1.5px solid var(--sgp-line); background: var(--sgp-bg); }

.sgp-crumbs ol { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 8px; font-size: 13px; color: var(--sgp-muted); }
.sgp-crumbs li { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.sgp-crumbs li + li::before { content: "/"; opacity: .5; }
.sgp-crumbs a { color: var(--sgp-muted); }
.sgp-crumbs a:hover { color: var(--sgp-brand); }
.sgp-crumbs [aria-current] span { color: var(--sgp-ink); font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 46ch; display: inline-block; }
@media (max-width: 700px) { .sgp-single .sgp-crumbs li[aria-current] { display: none; } }

.sgp-pages { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 34px; }
.sgp-pages .page-numbers, .sgp-pages a, .sgp-pages > span { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; border-radius: 12px; background: var(--sgp-card); border: 1px solid var(--sgp-line); color: var(--sgp-ink); font-weight: 700; }
.sgp-pages .current { background: var(--sgp-brand); border-color: var(--sgp-brand); color: #fff; }
.sgp-pages a:hover { border-color: var(--sgp-brand); color: var(--sgp-brand); }

/* Single ------------------------------------------------------------------- */
.sgp-single__head { padding: 30px 0 24px; }
.sgp-single__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.sgp-single__title { font-size: clamp(28px, 4vw, 46px); line-height: 1.15; margin: 0 0 14px; overflow-wrap: anywhere; }
.sgp-single__lede { font-size: 19px; color: var(--sgp-muted); margin: 0 0 22px; }
.sgp-byline { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--sgp-line); }
.sgp-byline__txt { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.sgp-byline__name { font-weight: 700; color: var(--sgp-ink); }
.sgp-byline__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13.5px; color: var(--sgp-muted); }
.sgp-byline__meta span { display: inline-flex; align-items: center; gap: 4px; }
.sgp-byline__meta i { font-style: normal; opacity: .6; }
.sgp-avatar { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: #fff; font-family: var(--sgp-head); font-weight: 800; font-size: 15px; background: linear-gradient(135deg, var(--sgp-brand-2), var(--sgp-coral)); }
.sgp-avatar--lg { width: 64px; height: 64px; font-size: 21px; }
.sgp-single__hero { margin: 0 auto 10px; max-width: 1100px; }
.sgp-single__hero img { width: 100%; border-radius: 24px; aspect-ratio: 16 / 9; object-fit: cover; }
.sgp-single__hero figcaption { font-size: 13px; color: var(--sgp-muted); text-align: center; margin-top: 8px; }
.sgp-layout--single { padding-top: 26px; padding-bottom: 48px; }
.sgp-disclosure { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; background: #fff8ec; color: #7a4b00; border: 1px solid #ffe2b5; padding: 12px 14px; border-radius: 12px; }
html[data-scheme="dark"] .sgp-disclosure { background: #2a2012; color: #ffcf8a; border-color: #4a3717; }

.sgp-toc { background: var(--sgp-card); border: 1px solid var(--sgp-line); border-radius: 16px; padding: 14px 18px; margin: 0 0 26px; }
.sgp-toc summary { display: flex; align-items: center; gap: 8px; font-family: var(--sgp-head); font-weight: 800; color: var(--sgp-ink); cursor: pointer; list-style: none; }
.sgp-toc summary::-webkit-details-marker { display: none; }
.sgp-toc summary .sgp-ico { color: var(--sgp-brand); }
.sgp-toc ol { margin: 12px 0 2px; padding-left: 20px; display: grid; gap: 6px; font-size: 15px; }
.sgp-toc .is-h3 { margin-left: 16px; list-style: circle; font-size: 14px; }
.sgp-toc a { color: var(--sgp-text); }
.sgp-toc a:hover, .sgp-toc a.is-active { color: var(--sgp-brand); }

.sgp-content { font-size: 18px; line-height: 1.8; color: var(--sgp-text); overflow-wrap: break-word; }
.sgp-content > * { margin-top: 0; margin-bottom: 1.2em; }
.sgp-content h2 { font-size: 28px; margin: 1.6em 0 .6em; }
.sgp-content h3 { font-size: 22px; margin: 1.4em 0 .5em; }
.sgp-content h4 { font-size: 19px; margin: 1.3em 0 .5em; }
.sgp-content a { color: var(--sgp-brand); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
html[data-scheme="dark"] .sgp-content a { color: #b9a5ff; }
.sgp-content ul, .sgp-content ol { padding-left: 1.4em; }
.sgp-content li { margin-bottom: .45em; }
.sgp-content li::marker { color: var(--sgp-brand); }
.sgp-content blockquote { margin: 1.6em 0; padding: 18px 24px; border-left: 4px solid var(--sgp-brand); background: var(--sgp-brand-soft); border-radius: 0 16px 16px 0; font-size: 19px; color: var(--sgp-ink); }
.sgp-content blockquote p:last-child { margin-bottom: 0; }
.sgp-content img { border-radius: 16px; height: auto; }
.sgp-content figure { margin-left: 0; margin-right: 0; }
.sgp-content figcaption { font-size: 14px; color: var(--sgp-muted); text-align: center; }
.sgp-content table { width: 100%; border-collapse: collapse; font-size: 15.5px; display: block; overflow-x: auto; }
.sgp-content th, .sgp-content td { border: 1px solid var(--sgp-line); padding: 10px 12px; text-align: left; }
.sgp-content th { background: var(--sgp-alt); color: var(--sgp-ink); }
.sgp-content pre { background: #0f1222; color: #e6e7f3; padding: 18px; border-radius: 14px; overflow-x: auto; font-size: 14.5px; }
.sgp-content code { font-size: .9em; background: var(--sgp-alt); padding: 2px 6px; border-radius: 6px; }
.sgp-content pre code { background: none; padding: 0; }
.sgp-content hr { border: 0; border-top: 1px solid var(--sgp-line); margin: 2em 0; }
.sgp-content .alignwide { margin-left: -40px; margin-right: -40px; max-width: none; }
.sgp-content .aligncenter { margin-left: auto; margin-right: auto; }
.sgp-content .alignleft { float: left; margin: 0 1.2em 1em 0; }
.sgp-content .alignright { float: right; margin: 0 0 1em 1.2em; }
.sgp-content .wp-block-button__link { background: var(--sgp-brand); color: #fff; text-decoration: none; border-radius: 999px; }
.sgp-content iframe { max-width: 100%; }

.sgp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0; }
.sgp-tags a { font-size: 14px; padding: 6px 12px; border-radius: 999px; background: var(--sgp-alt); color: var(--sgp-text); }
.sgp-tags a:hover { color: var(--sgp-brand); }
.sgp-share { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 18px 0; border-top: 1px solid var(--sgp-line); border-bottom: 1px solid var(--sgp-line); margin: 26px 0; }
.sgp-share__t { font-family: var(--sgp-head); font-weight: 800; color: var(--sgp-ink); }
.sgp-share__btns { display: flex; gap: 8px; flex-wrap: wrap; }
.sgp-share__btns a, .sgp-share__btns button { --c: var(--sgp-brand); display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--sgp-line); background: var(--sgp-card); color: var(--c); transition: .2s; }
html[data-scheme="dark"] .sgp-share__btns a, html[data-scheme="dark"] .sgp-share__btns button { color: #fff; }
.sgp-share__btns a:hover, .sgp-share__btns button:hover { background: var(--c); border-color: var(--c); color: #fff; }
.sgp-askbox { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: 18px; background: color-mix(in srgb, var(--sgp-wa) 10%, var(--sgp-card)); border: 1px solid color-mix(in srgb, var(--sgp-wa) 30%, var(--sgp-line)); margin: 26px 0; }
.sgp-askbox__ic { flex: none; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--sgp-wa); color: #fff; }
.sgp-askbox__txt { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.sgp-askbox__txt strong { color: var(--sgp-ink); font-family: var(--sgp-head); }
.sgp-askbox__txt span { font-size: 14.5px; color: var(--sgp-muted); }
.sgp-authorbox { display: flex; gap: 16px; padding: 22px; border-radius: 18px; background: var(--sgp-card); border: 1px solid var(--sgp-line); margin: 26px 0; }
.sgp-authorbox__k { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--sgp-muted); font-weight: 700; }
.sgp-authorbox__n { font-family: var(--sgp-head); font-weight: 800; font-size: 19px; color: var(--sgp-ink); }
.sgp-authorbox p { margin: 6px 0 0; color: var(--sgp-muted); font-size: 15px; }
.sgp-prevnext { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0; }
.sgp-prevnext a { display: flex; flex-direction: column; gap: 4px; padding: 16px 18px; border-radius: 16px; background: var(--sgp-card); border: 1px solid var(--sgp-line); min-width: 0; }
.sgp-prevnext a:hover { border-color: var(--sgp-brand); }
.sgp-prevnext span { font-size: 13px; color: var(--sgp-muted); font-weight: 600; }
.sgp-prevnext strong { color: var(--sgp-ink); font-family: var(--sgp-head); line-height: 1.35; }
.sgp-prevnext .is-next { text-align: right; grid-column: 2; }

.sgp-comments { margin-top: 34px; }
.sgp-comments__t { font-size: 22px; }
.sgp-comments__list { list-style: none; padding: 0; margin: 0 0 30px; }
.sgp-comments__list .children { list-style: none; padding-left: 24px; }
.sgp-comments__list .comment-body { padding: 16px 18px; border-radius: 16px; background: var(--sgp-card); border: 1px solid var(--sgp-line); margin-bottom: 12px; }
.sgp-comments__list .avatar { border-radius: 50%; float: left; margin-right: 12px; }
.sgp-comments__list .comment-meta { font-size: 13.5px; color: var(--sgp-muted); }
.sgp-comments__list .fn { color: var(--sgp-ink); font-style: normal; }
.comment-form { display: grid; gap: 12px; }
.comment-form p { margin: 0; }
.comment-form label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 4px; color: var(--sgp-ink); }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--sgp-line); background: var(--sgp-card); }
.comment-form .comment-form-cookies-consent { display: flex; gap: 8px; align-items: flex-start; }
.comment-form .comment-form-cookies-consent label { font-weight: 400; }

/* Forms -------------------------------------------------------------------- */
.sgp-formcard { background: var(--sgp-card); border: 1px solid var(--sgp-line); border-radius: 24px; padding: 28px; box-shadow: var(--sgp-shadow); min-width: 0; }
.sgp-formcard .sgp-sechead__s { margin-bottom: 18px; }
.sgp-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.sgp-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.sgp-field.is-wide { grid-column: 1 / -1; }
.sgp-field label { font-weight: 600; font-size: 14px; color: var(--sgp-ink); }
.sgp-field label span { color: var(--sgp-coral); }
.sgp-field input, .sgp-field select, .sgp-field textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--sgp-line); background: var(--sgp-bg); color: var(--sgp-ink); transition: border-color .2s, box-shadow .2s; }
.sgp-field input:focus, .sgp-field select:focus, .sgp-field textarea:focus { outline: 0; border-color: var(--sgp-brand-2); box-shadow: 0 0 0 4px color-mix(in srgb, var(--sgp-brand-2) 18%, transparent); }
.sgp-seg { display: flex; flex-wrap: wrap; gap: 8px; }
.sgp-seg label { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 12px; border: 1.5px solid var(--sgp-line); font-weight: 500; cursor: pointer; }
.sgp-seg label:has(input:checked) { border-color: var(--sgp-brand-2); background: var(--sgp-brand-soft); }
.sgp-seg input { accent-color: var(--sgp-brand); width: auto; padding: 0; flex: none; }
.sgp-form__foot { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.sgp-form__note { font-size: 13px; color: var(--sgp-muted); margin: 12px 0 0; }
.sgp-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.sgp-notice { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: 14px; margin-bottom: 18px; }
.sgp-notice p { margin: 4px 0 10px; font-size: 14.5px; }
.sgp-notice--ok { background: #e9fbf0; color: #0f5132; border: 1px solid #b6efcb; }
.sgp-notice--ok .sgp-ico { color: #16a34a; }
.sgp-notice--err { background: #fff0f0; color: #8a1c1c; border: 1px solid #ffd0d0; }
html[data-scheme="dark"] .sgp-notice--ok { background: #0f2a1b; color: #b9f3cf; border-color: #1d4a31; }
html[data-scheme="dark"] .sgp-notice--err { background: #2c1212; color: #ffc9c9; border-color: #4d1f1f; }

/* Services page ------------------------------------------------------------ */
.sgp-gphero { color: #e9e6ff; padding: 30px 0 56px; background:
	radial-gradient(700px 320px at 10% 0%, rgba(124, 58, 237, .6), transparent 70%),
	radial-gradient(600px 320px at 100% 100%, rgba(255, 90, 61, .3), transparent 70%), #120f29; }
.sgp-gphero .sgp-crumbs a, .sgp-gphero .sgp-crumbs ol { color: #bdb8e6; }
.sgp-gphero .sgp-crumbs [aria-current] span { color: #fff; }
.sgp-gphero__in { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.sgp-gphero h1 { color: #fff; font-size: clamp(32px, 5vw, 56px); margin: 0 0 14px; }
.sgp-gphero__sub { font-size: 18px; color: #d2cef2; max-width: 600px; }
.sgp-gphero__stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.sgp-statcard { padding: 22px; border-radius: 20px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12); display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sgp-statcard .sgp-ico { color: #ffb199; margin-bottom: 6px; }
.sgp-statcard strong { font-family: var(--sgp-head); font-size: 30px; color: #fff; line-height: 1.1; }
.sgp-statcard span { font-size: 14px; color: #bdb8e6; }
.sgp-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.sgp-checks li { display: flex; gap: 10px; align-items: flex-start; }
.sgp-checks .sgp-ico { flex: none; margin-top: 3px; color: #16a34a; }
.sgp-checks--no .sgp-ico { color: #dc2626; }
.sgp-checks--light { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 22px; color: #e9e6ff; font-weight: 600; font-size: 14.5px; }
.sgp-checks--light .sgp-ico { color: #4ade80; }
.sgp-checks--lg { gap: 14px; font-size: 17px; }
.sgp-features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.sgp-feature { padding: 24px; border-radius: 20px; background: var(--sgp-card); border: 1px solid var(--sgp-line); box-shadow: var(--sgp-shadow); min-width: 0; }
.sgp-feature__ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--sgp-brand-soft); color: var(--sgp-brand); margin-bottom: 14px; }
html[data-scheme="dark"] .sgp-feature__ic { color: #c4b5fd; }
.sgp-feature h3 { font-size: 18px; margin: 0 0 6px; }
.sgp-feature p { margin: 0; color: var(--sgp-muted); font-size: 15px; }
.sgp-plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.sgp-plan { position: relative; display: flex; flex-direction: column; gap: 16px; padding: 30px 26px 24px; border-radius: 24px; background: var(--sgp-card); border: 1.5px solid var(--sgp-line); box-shadow: var(--sgp-shadow); min-width: 0; }
.sgp-plan.is-pop { border-color: var(--sgp-brand-2); box-shadow: 0 24px 60px -24px rgba(109, 40, 217, .55); }
.sgp-plan__pop { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 999px; background: linear-gradient(135deg, #ff7a45, #ff3d6e); color: #fff; font-size: 12.5px; font-weight: 800; white-space: nowrap; }
.sgp-plan__name { font-size: 20px; margin: 0; }
.sgp-plan__price { font-family: var(--sgp-head); font-weight: 800; font-size: 44px; color: var(--sgp-ink); line-height: 1; }
.sgp-plan .sgp-checks { flex: 1; font-size: 15px; }
.sgp-plan__wa { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-size: 14px; font-weight: 700; color: #16a34a; }
.sgp-split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px; align-items: start; }
.sgp-split--form { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); }
.sgp-steps { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 14px; counter-reset: st; }
.sgp-steps li { counter-increment: st; position: relative; padding: 16px 18px 16px 68px; border-radius: 16px; background: var(--sgp-card); border: 1px solid var(--sgp-line); display: flex; flex-direction: column; }
.sgp-steps li::before { content: counter(st); position: absolute; left: 16px; top: 16px; width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; font-family: var(--sgp-head); font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--sgp-brand-2), var(--sgp-coral)); }
.sgp-steps strong { color: var(--sgp-ink); font-family: var(--sgp-head); }
.sgp-steps span { color: var(--sgp-muted); font-size: 15px; }
.sgp-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.sgp-chips a { --c: var(--sgp-brand); display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--sgp-ink); background: var(--sgp-card); border: 1px solid var(--sgp-line); }
.sgp-chips a .sgp-ico { color: var(--c); }
.sgp-chips a:hover { border-color: var(--c); }
.sgp-dodont { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.sgp-dodont > div { padding: 18px; border-radius: 16px; background: var(--sgp-card); border: 1px solid var(--sgp-line); min-width: 0; }
.sgp-dodont h3 { font-size: 16px; }
.sgp-dodont .sgp-checks { font-size: 14.5px; }
.sgp-faq { display: grid; gap: 10px; margin-top: 20px; }
.sgp-faq details { background: var(--sgp-card); border: 1px solid var(--sgp-line); border-radius: 16px; padding: 0 18px; }
.sgp-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 0; font-family: var(--sgp-head); font-weight: 700; color: var(--sgp-ink); cursor: pointer; list-style: none; }
.sgp-faq summary::-webkit-details-marker { display: none; }
.sgp-faq summary .sgp-ico { transition: transform .2s; flex: none; }
.sgp-faq details[open] summary .sgp-ico { transform: rotate(180deg); }
.sgp-faq p { color: var(--sgp-muted); margin: 0 0 16px; }

.sgp-contactcards { display: grid; gap: 14px; }
.sgp-contactcard { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 16px; align-items: center; padding: 20px; border-radius: 18px; background: var(--sgp-card); border: 1px solid var(--sgp-line); box-shadow: var(--sgp-shadow); color: var(--sgp-ink); min-width: 0; }
.sgp-contactcard:hover { border-color: var(--sgp-brand); }
.sgp-contactcard__ic { grid-row: span 2; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--sgp-brand-soft); color: var(--sgp-brand); }
.sgp-contactcard.is-wa .sgp-contactcard__ic { background: var(--sgp-wa); color: #fff; }
.sgp-contactcard strong { font-family: var(--sgp-head); }
.sgp-contactcard span:last-child { color: var(--sgp-muted); font-size: 14.5px; overflow-wrap: anywhere; }

.sgp-page__img img { border-radius: 20px; width: 100%; margin-bottom: 26px; }

/* 404 ---------------------------------------------------------------------- */
.sgp-404 { padding: 60px 0; text-align: center; }
.sgp-404__code { display: block; font-family: var(--sgp-head); font-weight: 800; font-size: clamp(90px, 16vw, 160px); line-height: 1; background: linear-gradient(135deg, var(--sgp-brand-2), var(--sgp-coral)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sgp-404 .sgp-inline-search { margin: 20px auto 40px; }
.sgp-404 .sgp-grid { text-align: left; }

/* Ads ---------------------------------------------------------------------- */
.sgp-ad { margin: 24px auto; text-align: center; max-width: 100%; overflow: hidden; }
.sgp-ad__label { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--sgp-muted); margin-bottom: 6px; }
.sgp-ad--header { max-width: var(--sgp-wrap); padding: 0 20px; }
.sgp-ad--empty { border: 2px dashed var(--sgp-line); padding: 20px; border-radius: 12px; color: var(--sgp-muted); font-size: 13px; }

/* WordPress core ----------------------------------------------------------- */
.wp-caption, .gallery-caption { max-width: 100%; }
.bypostauthor { display: block; }
.sticky { display: block; }

/* Responsive --------------------------------------------------------------- */
@media (max-width: 1100px) {
	.sgp-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 26px; }
	.sgp-footer__grid { grid-template-columns: 1fr 1fr; }
	.sgp-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; }
	.sgp-bento__lead { grid-column: 1 / -1; grid-row: auto; }
	.sgp-card--hero .sgp-card__media { aspect-ratio: 16 / 8; min-height: 0; flex: none; }
}
@media (max-width: 960px) {
	.sgp-layout { grid-template-columns: minmax(0, 1fr); }
	.sgp-side { position: static; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
	.sgp-intro__head { grid-template-columns: minmax(0, 1fr); gap: 18px; }
	.sgp-services { grid-template-columns: minmax(0, 1fr); padding: 28px; }
	.sgp-gphero__in, .sgp-split, .sgp-split--form { grid-template-columns: minmax(0, 1fr); }
	.sgp-features, .sgp-plans { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
	.sgp-plans .sgp-plan.is-pop { order: -1; grid-column: 1 / -1; }
	.sgp-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sgp-cta-band__in { flex-direction: column; align-items: flex-start; padding: 28px; }
}
@media (max-width: 700px) {
	.sgp-section { padding: 36px 0; }
	.sgp-wrap { padding: 0 16px; }
	.sgp-bento { grid-template-columns: minmax(0, 1fr); gap: 12px; }
	.sgp-card--tile { min-height: 200px; }
	.sgp-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sgp-features, .sgp-plans, .sgp-grid--3, .sgp-dodont, .sgp-form__grid, .sgp-prevnext { grid-template-columns: minmax(0, 1fr); }
	.sgp-prevnext .is-next { grid-column: auto; }
	.sgp-plans .sgp-plan.is-pop { grid-column: auto; }
	.sgp-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
	.sgp-content { font-size: 17px; }
	.sgp-content h2 { font-size: 24px; }
	.sgp-content .alignwide { margin-left: 0; margin-right: 0; }
	.sgp-askbox { flex-wrap: wrap; }
	.sgp-askbox .sgp-btn { width: 100%; }
	.sgp-archead__ic { width: 48px; height: 48px; border-radius: 14px; }
	.sgp-archead__ic .sgp-ico { width: 22px; height: 22px; }
	.sgp-formcard { padding: 20px; border-radius: 20px; }
	.sgp-services { padding: 22px; border-radius: 22px; }
	.sgp-miniplan { padding: 16px 44px 16px 16px; }
	.sgp-miniplan__go { right: 14px; }
	.sgp-gphero__stats { gap: 10px; }
	.sgp-statcard { padding: 16px; }
	.sgp-statcard strong { font-size: 24px; }
	.sgp-intro__search .sgp-btn { padding: 10px 14px; }
	.sgp-rail__nav { display: none; }
	.sgp-rail { grid-auto-columns: minmax(140px, 44%); }
	.sgp-single__lede { font-size: 17px; }
	.sgp-cta-band__btns, .sgp-cta-band__btns .sgp-btn { width: 100%; }
	.sgp-form__foot .sgp-btn { width: 100%; }
}
