/*
Theme Name: WebsitePusher
Theme URI: https://websitepusher.com
Author: WebsitePusher
Description: Single-page marketing site for WebsitePusher — push WordPress changes from local to live, safely.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GPL-2.0-or-later
Text Domain: websitepusher
*/

:root {
	--wp-blue: #0071e3;
	--wp-blue-hover: #0077ed;
	--wp-blue-deep: #0058b8;
	--wp-green: #15803d;
	--wp-grad: linear-gradient(120deg, #0071e3 0%, #15803d 100%);
	--wp-ink: #1d1d1f;
	--wp-ink-soft: #424245;
	--wp-muted: #6e6e73;
	--wp-line: #d2d2d7;
	--wp-bg-soft: #f5f5f7;
	--wp-radius: 12px;
	--wp-radius-pill: 980px;
	--wp-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 28px rgba(0, 0, 0, 0.06);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.5;
	color: var(--wp-ink);
	background: #ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a { color: var(--wp-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.wp-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}

.wp-container--narrow {
	max-width: 860px;
}

/* Nav */
.wp-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wp-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.wp-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 20px;
	color: var(--wp-ink);
	letter-spacing: -0.02em;
}

.wp-brand:hover { text-decoration: none; }

.wp-logo {
	display: block;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.wp-nav__links {
	display: flex;
	gap: 28px;
	font-size: 14px;
	color: var(--wp-ink-soft);
}

.wp-nav__links a { color: inherit; }

/* Mobile nav */
.wp-nav__toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	color: var(--wp-ink);
}
.wp-nav__toggle svg { display: block; width: 22px; height: 22px; }

@media (max-width: 640px) {
	.wp-nav__toggle { display: flex; align-items: center; justify-content: center; }
	.wp-nav__links {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: rgba(255,255,255,0.97);
		backdrop-filter: saturate(180%) blur(20px);
		-webkit-backdrop-filter: saturate(180%) blur(20px);
		border-bottom: 1px solid rgba(0,0,0,0.08);
		flex-direction: column;
		padding: 16px 24px 24px;
		gap: 0;
		z-index: 49;
	}
	.wp-nav__links.is-open { display: flex; }
	.wp-nav__links a {
		padding: 12px 0;
		font-size: 16px;
		border-bottom: 1px solid rgba(0,0,0,0.06);
	}
	.wp-nav__links a:last-child { border-bottom: none; }
}

/* Hero */
.wp-hero {
	position: relative;
	padding: 140px 0 100px;
	text-align: center;
	overflow: hidden;
	background: linear-gradient(180deg, #d8e8fb 0%, #eef4fc 35%, #ffffff 90%);
}

.wp-hero__shot {
	display: block;
	width: 100%;
	max-width: 1100px;
	height: auto;
	margin: 64px auto 0;
	border-radius: 16px;
	box-shadow:
		0 1px 3px rgba(0, 0, 0, 0.06),
		0 18px 50px rgba(15, 30, 60, 0.18),
		0 40px 80px rgba(15, 30, 60, 0.12);
}

.wp-hero h1 {
	margin: 0 0 22px;
	font-size: 76px;
	line-height: 1.02;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--wp-ink);
}

.wp-hero__sub {
	max-width: 720px;
	margin: 0 auto 36px;
	font-size: 21px;
	line-height: 1.45;
	color: var(--wp-ink-soft);
	font-weight: 400;
}

.wp-hero__ctas {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.wp-hero__pill {
	display: inline-block;
	margin-bottom: 22px;
	padding: 6px 14px;
	font-size: 13px;
	font-weight: 500;
	color: var(--wp-blue);
	background: rgba(0, 113, 227, 0.1);
	border-radius: 999px;
	letter-spacing: 0.01em;
}

.wp-reassure {
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px 24px;
	font-size: 14px;
	color: var(--wp-muted);
}

.wp-reassure li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.wp-reassure svg {
	width: 14px;
	height: 14px;
	color: var(--wp-blue);
	flex-shrink: 0;
}

.wp-hero h1 em,
.wp-section h2 em {
	font-style: italic;
	font-weight: inherit;
	color: inherit;
}

.wp-hero h1 em {
	color: var(--wp-green);
}

@media (max-width: 700px) {
	.wp-hero { padding: 88px 0 72px; }
	.wp-hero h1 { font-size: 46px; letter-spacing: -0.02em; }
	.wp-hero__sub { font-size: 18px; }
	.wp-hero__shot { margin-top: 44px; border-radius: 12px; }
}

/* Buttons */
.wp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 24px;
	border-radius: var(--wp-radius-pill);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: -0.01em;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
	text-decoration: none;
	font-family: inherit;
}

.wp-btn:hover { text-decoration: none; }
.wp-btn:active { transform: scale(0.98); }

.wp-btn--primary {
	background: var(--wp-blue);
	color: #fff;
}
.wp-btn--primary:hover {
	background: var(--wp-blue-hover);
	color: #fff;
}

.wp-btn--ghost {
	background: transparent;
	color: var(--wp-blue);
	border-color: var(--wp-blue);
}
.wp-btn--ghost:hover {
	background: rgba(0, 113, 227, 0.06);
	color: var(--wp-blue);
}

.wp-btn--lg {
	height: 56px;
	padding: 0 36px;
	font-size: 18px;
}

.wp-btn--block { width: 100%; }

.wp-btn[disabled],
.wp-btn[aria-busy="true"] { opacity: 0.6; cursor: progress; }

/* Sections */
.wp-section {
	padding: 120px 0;
}

.wp-section--alt {
	background: var(--wp-bg-soft);
}

.wp-section--dark {
	background: #1d1d1f;
	color: #f5f5f7;
}

.wp-section--dark .wp-section__eyebrow {
	color: rgba(255, 255, 255, 0.5);
}

.wp-section--dark h2 {
	color: #f5f5f7;
}

.wp-section--dark h2 em {
	color: #6bc5f8;
}

.wp-section--dark .wp-section__lede {
	color: rgba(255, 255, 255, 0.6);
}

/* App screenshots strip */
.wp-screens {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.wp-screen {
	border-radius: 14px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.wp-screen img {
	display: block;
	width: 100%;
	height: auto;
}

.wp-screen__cap {
	padding: 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.wp-screen__cap strong {
	font-size: 15px;
	font-weight: 600;
	color: #f5f5f7;
}

.wp-screen__cap span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.5;
}

@media (max-width: 800px) { .wp-screens { grid-template-columns: 1fr; } }

/* ── Screenshot carousel ────────────────────────────────────────────────── */
.wp-carousel {
	margin-top: 24px;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.wp-carousel__track {
	display: flex;
	gap: 12px;
	animation: wp-scroll 30s linear infinite;
	width: max-content;
}

.wp-carousel:hover .wp-carousel__track {
	animation-play-state: paused;
}

@keyframes wp-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.wp-carousel__item {
	position: relative;
	display: block;
	flex-shrink: 0;
	width: 280px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.08);
	cursor: zoom-in;
}

.wp-carousel__item img {
	display: block;
	width: 100%;
	height: auto;
	transition: opacity 0.2s ease;
}

.wp-carousel__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.wp-carousel__overlay svg {
	width: 28px;
	height: 28px;
	stroke: #fff;
}

.wp-carousel__item:hover img { opacity: 0.85; }
.wp-carousel__item:hover .wp-carousel__overlay { opacity: 1; }

@media (max-width: 600px) {
	.wp-carousel__item { width: 200px; }
}

.wsp-lb-trigger { display: block; cursor: zoom-in; }
.wsp-lb-trigger img { transition: opacity 0.15s; }
.wsp-lb-trigger:hover img { opacity: 0.85; }

/* ── Lightbox ───────────────────────────────────────────────────────────── */
.wsp-lb {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.92);
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.25s ease;
}
.wsp-lb.is-open {
	display: flex;
	opacity: 1;
}

.wsp-lb__img-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 80px 20px;
	width: 100%;
	box-sizing: border-box;
}
.wsp-lb__img {
	max-width: 100%;
	max-height: calc(100vh - 200px);
	border-radius: 10px;
	box-shadow: 0 20px 80px rgba(0,0,0,0.6);
	object-fit: contain;
}

.wsp-lb__close {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: none;
	color: #fff;
	font-size: 36px;
	line-height: 1;
	cursor: pointer;
	opacity: 0.7;
	padding: 4px 8px;
}
.wsp-lb__close:hover { opacity: 1; }

.wsp-lb__prev,
.wsp-lb__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.1);
	border: none;
	color: #fff;
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
	padding: 12px 18px;
	border-radius: 8px;
	opacity: 0.7;
	transition: opacity 0.15s, background 0.15s;
}
.wsp-lb__prev { left: 16px; }
.wsp-lb__next { right: 16px; }
.wsp-lb__prev:hover,
.wsp-lb__next:hover { opacity: 1; background: rgba(255,255,255,0.2); }

.wsp-lb__dots {
	display: flex;
	gap: 8px;
	margin-bottom: 14px;
}
.wsp-lb__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.3);
	cursor: pointer;
	padding: 0;
	transition: background 0.15s;
}
.wsp-lb__dot.is-active { background: #fff; }

.wsp-lb__thumbs {
	display: flex;
	gap: 8px;
	padding: 0 16px 20px;
	overflow-x: auto;
	max-width: 100%;
}
.wsp-lb__thumb {
	flex-shrink: 0;
	width: 72px;
	height: 48px;
	border-radius: 6px;
	overflow: hidden;
	border: 2px solid transparent;
	cursor: pointer;
	padding: 0;
	background: none;
	transition: border-color 0.15s;
}
.wsp-lb__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.wsp-lb__thumb.is-active { border-color: #fff; }

@media (max-width: 600px) {
	.wsp-lb__img-wrap { padding: 50px 16px 10px; }
	.wsp-lb__prev { left: 4px; }
	.wsp-lb__next { right: 4px; }
}

.wp-section__head {
	text-align: center;
	margin: 0 auto 64px;
	max-width: 760px;
}

.wp-section__eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wp-blue);
	margin-bottom: 14px;
}

.wp-section h2 {
	margin: 0 0 16px;
	font-size: 52px;
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -0.025em;
}

.wp-section__lede {
	font-size: 20px;
	color: var(--wp-ink-soft);
	margin: 0;
	line-height: 1.5;
}

@media (max-width: 700px) {
	.wp-section { padding: 80px 0; }
	.wp-section h2 { font-size: 36px; }
	.wp-section__lede { font-size: 17px; }
}

/* How it works */
.wp-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.wp-step {
	background: #fff;
	border: 1px solid var(--wp-line);
	border-radius: var(--wp-radius);
	padding: 32px 28px;
	text-align: left;
}

.wp-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--wp-blue);
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 18px;
	box-shadow: 0 4px 14px rgba(0, 113, 227, 0.30);
}

.wp-step:nth-child(4) .wp-step__num {
	background: var(--wp-green);
	box-shadow: 0 4px 14px rgba(28, 146, 57, 0.30);
}

.wp-step h3 {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.wp-step p {
	margin: 0;
	color: var(--wp-ink-soft);
	font-size: 16px;
}

@media (max-width: 980px) {
	.wp-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
	.wp-steps { grid-template-columns: 1fr; }
}

/* Problem section */
.wp-problems {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.wp-problem {
	position: relative;
	background: #fff;
	border: 1px solid var(--wp-line);
	border-radius: 16px;
	padding: 44px 36px 40px;
	text-align: left;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 12px 32px rgba(15, 30, 60, 0.06);
}

.wp-problem::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--wp-grad);
}

.wp-problem h3 {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: var(--wp-ink);
}

.wp-problem p {
	margin: 0;
	color: var(--wp-ink-soft);
	font-size: 16px;
	line-height: 1.6;
}

@media (max-width: 800px) {
	.wp-problems { grid-template-columns: 1fr; }
}

/* Final CTA */
.wp-cta {
	background: var(--wp-grad);
	color: #fff;
	text-align: center;
	padding: 110px 0;
}

.wp-cta .wp-section__eyebrow {
	color: rgba(255, 255, 255, 0.85);
}

.wp-cta h2 {
	color: #fff;
}

.wp-cta .wp-section__lede {
	color: rgba(255, 255, 255, 0.88);
}

.wp-cta .wp-hero__ctas {
	justify-content: center;
}

.wp-cta .wp-btn--primary {
	background: #fff;
	color: var(--wp-blue);
}

.wp-cta .wp-btn--primary:hover {
	background: rgba(255, 255, 255, 0.92);
	color: var(--wp-blue);
}

.wp-cta .wp-btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.65);
	color: #fff;
}

.wp-cta .wp-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.wp-cta .wp-reassure {
	color: rgba(255, 255, 255, 0.85);
}

.wp-cta .wp-reassure svg {
	color: #fff;
}

@media (max-width: 700px) {
	.wp-cta { padding: 72px 0; }
}

/* Features */
.wp-feat-groups {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.wp-feat-group {
	background: #fff;
	border-radius: 20px;
	padding: 36px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.wp-feat-group__head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.wp-feat-group__icon {
	width: 52px;
	height: 52px;
	flex-shrink: 0;
	border-radius: 14px;
	background: var(--wp-grad);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(0, 113, 227, 0.22);
}

.wp-feat-group__icon svg { width: 24px; height: 24px; }

.wp-feat-group h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.wp-feat-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.wp-feat-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	color: var(--wp-ink-soft);
	line-height: 1.45;
}

.wp-feat-list li svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--wp-green);
}

@media (max-width: 800px) { .wp-feat-groups { grid-template-columns: 1fr; } }

/* Pricing */
.wp-pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.wp-pricing--two {
	grid-template-columns: 1fr 1fr;
	max-width: 780px;
	margin: 0 auto;
}

.wp-plan {
	background: #fff;
	border: 1px solid var(--wp-line);
	border-radius: 18px;
	padding: 52px 36px 44px;
	display: flex;
	flex-direction: column;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wp-plan--featured {
	background: var(--wp-blue-deep);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 24px 60px rgba(0, 88, 184, 0.40);
	position: relative;
	transform: translateY(-12px);
	padding: 60px 36px 52px;
}

@media (max-width: 900px) {
	.wp-plan--featured { transform: none; }
}

.wp-plan--featured::before {
	content: "Launch price";
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	color: var(--wp-blue);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 5px 14px;
	border-radius: var(--wp-radius-pill);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
}

.wp-plan--featured .wp-plan__name {
	color: #fff;
}

.wp-plan--featured .wp-plan__price small,
.wp-plan--featured .wp-plan__sites,
.wp-plan--featured .wp-plan__features {
	color: rgba(255, 255, 255, 0.90);
}

.wp-plan--featured .wp-plan__features li::before {
	background: rgba(255, 255, 255, 0.22) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 10px 10px no-repeat;
}

.wp-plan--featured .wp-btn--primary {
	background: #fff;
	color: var(--wp-blue);
}

.wp-plan--featured .wp-btn--primary:hover {
	background: rgba(255, 255, 255, 0.92);
	color: var(--wp-blue);
}

.wp-plan__name {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wp-blue);
	margin-bottom: 14px;
}

.wp-plan__price {
	font-size: 48px;
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1;
	margin-bottom: 6px;
}

.wp-plan--featured .wp-plan__price {
	font-size: 64px;
}

.wp-plan__price small {
	font-size: 15px;
	font-weight: 500;
	color: var(--wp-muted);
	margin-left: 2px;
}

.wp-plan__was {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: line-through;
	margin-bottom: 6px;
}

.wp-plan__sites {
	font-size: 15px;
	color: var(--wp-ink-soft);
	margin-bottom: 20px;
}

.wp-plan__features {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	font-size: 15px;
	color: var(--wp-ink-soft);
}

.wp-plan__features li {
	position: relative;
	padding: 6px 0 6px 26px;
}

.wp-plan__features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: rgba(0, 113, 227, 0.12) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230071e3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 10px 10px no-repeat;
}

.wp-plan__cta {
	margin-top: auto;
}

.wp-plan__coming-soon {
	margin-top: auto;
	width: 100%;
	padding: 14px;
	border-radius: var(--wp-radius-pill);
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	background: rgba(0, 0, 0, 0.06);
	color: var(--wp-muted);
	letter-spacing: 0.02em;
}

.wp-plan--featured .wp-plan__coming-soon {
	background: rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.7);
}

.wp-pricing__note {
	text-align: center;
	font-size: 14px;
	color: var(--wp-muted);
	margin-top: 32px;
}

@media (max-width: 900px) {
	.wp-pricing { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
	.wp-pricing--two { grid-template-columns: 1fr; max-width: 420px; }
}

/* FAQ */
.wp-faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 56px;
	align-items: start;
}

.wp-faq-col {
	display: flex;
	flex-direction: column;
	gap: 44px;
}

.wp-faq-group__title {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wp-blue);
	margin: 0 0 4px;
}

.wp-faq-item {
	border-top: 1px solid var(--wp-line);
}

.wp-faq-item:last-child {
	border-bottom: 1px solid var(--wp-line);
}

.wp-faq-item summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 16px 0;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	line-height: 1.4;
}

.wp-faq-item summary::-webkit-details-marker { display: none; }

.wp-faq-chevron {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--wp-muted);
	transition: transform 0.2s ease;
}

.wp-faq-item[open] summary { color: var(--wp-blue); }
.wp-faq-item[open] .wp-faq-chevron { transform: rotate(180deg); }

.wp-faq-answer {
	padding: 0 32px 20px 0;
}

.wp-faq-answer p {
	margin: 0;
	font-size: 15px;
	color: var(--wp-ink-soft);
	line-height: 1.6;
}

@media (max-width: 700px) {
	.wp-faq-grid { grid-template-columns: 1fr; gap: 44px 0; }
}

/* Download section */
.wp-download {
	text-align: center;
}

.wp-download__hint {
	max-width: 520px;
	margin: 24px auto 0;
	color: var(--wp-muted);
	font-size: 14px;
	background: #fff;
	border: 1px solid var(--wp-line);
	border-radius: var(--wp-radius);
	padding: 14px 18px;
	line-height: 1.5;
}

/* Testimonials */
.wp-testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 56px;
}

.wp-testi {
	background: #fff;
	border: 1px solid var(--wp-line);
	border-radius: var(--wp-radius);
	padding: 28px 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	box-shadow: var(--wp-shadow);
}

.wp-testi__stars {
	display: flex;
	gap: 3px;
	color: #f59e0b;
}

.wp-testi__stars svg {
	width: 16px;
	height: 16px;
}

.wp-testi__quote {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: var(--wp-ink-soft);
	flex: 1;
}

.wp-testi__author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.wp-testi__avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.02em;
}

.wp-testi__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.wp-testi__meta strong {
	font-size: 14px;
	font-weight: 600;
	color: var(--wp-ink);
}

.wp-testi__meta span {
	font-size: 13px;
	color: var(--wp-muted);
}

@media (max-width: 900px) {
	.wp-testi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
	.wp-testi-grid { grid-template-columns: 1fr; }
}

/* Footer */
.wp-footer {
	background: var(--wp-bg-soft);
	border-top: 1px solid var(--wp-line);
	padding: 64px 0 56px;
	text-align: center;
	font-size: 13px;
	color: var(--wp-muted);
}

.wp-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--wp-ink);
	margin-bottom: 12px;
}

.wp-footer__brand .wp-logo {
	width: 28px;
	height: 28px;
}

.wp-footer__tagline {
	margin: 0 0 22px;
	font-size: 15px;
	color: var(--wp-ink-soft);
}

.wp-footer__row {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.wp-footer__copy {
	color: var(--wp-muted);
}

.wp-footer a { color: var(--wp-muted); }
.wp-footer a:hover { color: var(--wp-ink); }

/* ── Legal page ─────────────────────────────────────────────────────────── */
.wsp-legal-main {
	padding: 80px 0 120px;
}
.wsp-legal-body {
	max-width: 720px;
}
.wsp-legal-body h1 {
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 8px;
}
.wsp-legal-updated {
	font-size: 14px;
	color: var(--wp-muted);
	margin-bottom: 40px;
}
.wsp-legal-body h2 {
	font-size: 20px;
	font-weight: 700;
	margin: 40px 0 10px;
}
.wsp-legal-body p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--wp-ink-soft);
	margin-bottom: 16px;
}
.wsp-legal-body a {
	color: var(--wp-blue);
}

/* Toast */
.wp-toast {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: var(--wp-ink);
	color: #fff;
	padding: 12px 18px;
	border-radius: var(--wp-radius);
	font-size: 14px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 100;
	max-width: 90%;
}

.wp-toast.is-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

/* ── Gate & Download pages ─────────────────────────────────────────────── */

.wsp-bare-page {
	background: var(--wp-bg-soft);
}

.wsp-gate {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 48px 24px;
	gap: 0;
}

.wsp-gate__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--wp-ink);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin-bottom: 36px;
}

.wsp-gate__brand .wp-logo {
	width: 36px;
	height: 36px;
}

.wsp-gate__brand:hover { text-decoration: none; }

.wsp-gate__card {
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 4px 40px rgba(0, 0, 0, 0.10);
	padding: 52px 48px;
	width: 100%;
	max-width: 575px;
	text-align: center;
}

.wsp-gate__card h1 {
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin: 0 0 8px;
}

.wsp-gate__card h1 em {
	color: var(--wp-green);
	font-style: normal;
}

.wsp-gate__sub {
	color: var(--wp-muted);
	font-size: 15px;
	margin: 0 0 28px;
}

/* Form */
.wsp-gate__form { text-align: left; }

.wsp-gate__field { margin-bottom: 14px; }

.wsp-gate__field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--wp-ink-soft);
	margin-bottom: 6px;
}

.wsp-gate__field input {
	display: block;
	width: 100%;
	padding: 12px 16px;
	font-size: 16px;
	font-family: inherit;
	border: 1.5px solid var(--wp-line);
	border-radius: 10px;
	color: var(--wp-ink);
	background: #fff;
	outline: none;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.wsp-gate__field input:focus {
	border-color: var(--wp-blue);
	box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.12);
}

.wsp-gate__msg {
	font-size: 14px;
	min-height: 18px;
	margin: 0 0 12px;
	text-align: center;
}

.wsp-gate__msg--err { color: #c0392b; }
.wsp-gate__msg--ok  { color: var(--wp-green); }

.wsp-gate__hint {
	margin: 16px 0 0;
	font-size: 13px;
	color: var(--wp-muted);
	line-height: 1.5;
}

.wsp-gate__footer {
	margin-top: 28px;
	font-size: 13px;
	color: var(--wp-muted);
}

.wsp-gate__footer a { color: var(--wp-muted); }
.wsp-gate__footer a:hover { color: var(--wp-ink); text-decoration: none; }

/* Download card */
.wsp-gate__card--dl { max-width: 625px; }

.wsp-dl-icon {
	width: 64px;
	height: 64px;
	background: var(--wp-grad);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	color: #fff;
	box-shadow: 0 6px 20px rgba(0, 113, 227, 0.25);
}

.wsp-dl-icon svg { width: 28px; height: 28px; }

.wsp-dl-steps {
	text-align: left;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--wp-line);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.wsp-dl-step {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: var(--wp-ink-soft);
	line-height: 1.5;
}

.wsp-dl-step__num {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	background: var(--wp-blue);
	color: #fff;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}

@media (max-width: 540px) {
	.wsp-gate__card { padding: 36px 24px; }
	.wsp-gate__card h1 { font-size: 24px; }
}

/* ── Thank you page ────────────────────────────────────────────────────── */

.wsp-ty-check {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #dcfce7;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
.wsp-ty-check svg {
	width: 28px;
	height: 28px;
	stroke: #15803d;
}

.wsp-ty-plan {
	background: var(--wp-soft);
	border: 1px solid var(--wp-border);
	border-radius: 12px;
	padding: 16px 20px;
	margin: 20px 0 28px;
	text-align: left;
}
.wsp-ty-plan__label {
	font-weight: 700;
	font-size: 14px;
	color: var(--wp-ink);
	margin-bottom: 10px;
}
.wsp-ty-plan__features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.wsp-ty-plan__features li {
	font-size: 14px;
	color: var(--wp-muted);
	padding-left: 20px;
	position: relative;
}
.wsp-ty-plan__features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #15803d;
	font-weight: 700;
}

.wsp-ty-support {
	display: block;
	margin-top: 28px;
	font-size: 14px;
	color: var(--wp-blue);
	text-decoration: none;
}
.wsp-ty-support:hover { text-decoration: underline; }

/* ── Support page ──────────────────────────────────────────────────────── */

.wsp-support-hero {
	padding: 80px 0 56px;
	background: var(--wp-bg-soft);
	border-bottom: 1px solid var(--wp-line);
}

.wsp-support-hero .wp-section__eyebrow { display: block; margin-bottom: 12px; }

.wsp-support-hero h1 {
	font-size: 48px;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0 0 12px;
}

.wsp-support-hero p {
	font-size: 18px;
	color: var(--wp-ink-soft);
	margin: 0 0 32px;
}

.wsp-support-toc {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.wsp-support-toc a {
	display: inline-block;
	padding: 8px 16px;
	border-radius: var(--wp-radius-pill);
	background: #fff;
	border: 1px solid var(--wp-line);
	font-size: 14px;
	font-weight: 500;
	color: var(--wp-ink);
	text-decoration: none;
}

.wsp-support-toc a:hover { border-color: var(--wp-blue); color: var(--wp-blue); text-decoration: none; }

.wsp-support-body {
	padding-top: 72px;
	padding-bottom: 80px;
}

.wsp-support-section {
	margin-bottom: 80px;
	padding-bottom: 80px;
	border-bottom: 1px solid var(--wp-line);
}

.wsp-support-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.wsp-support-section h2 {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -0.025em;
	margin: 0 0 8px;
}

.wsp-support-intro {
	font-size: 18px;
	color: var(--wp-ink-soft);
	margin: 0 0 40px;
}

/* Step list */
.wsp-steps-list {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.wsp-step-item {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.wsp-step-item__num {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--wp-blue);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
	box-shadow: 0 4px 12px rgba(0, 113, 227, 0.25);
}

.wsp-step-item__body h3 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 8px;
	letter-spacing: -0.01em;
}

.wsp-step-item__body p {
	margin: 0 0 16px;
	color: var(--wp-ink-soft);
	font-size: 16px;
	line-height: 1.6;
}

.wsp-support-screenshot {
	display: block;
	width: 100%;
	max-width: 700px;
	height: auto;
	border-radius: 14px;
	border: 1px solid var(--wp-line);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	margin-bottom: 16px;
}

.wsp-support-tips {
	margin: 0;
	padding: 0 0 0 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.wsp-support-tips li {
	font-size: 15px;
	color: var(--wp-ink-soft);
	line-height: 1.5;
}

/* First push cards */
.wsp-support-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 32px;
}

.wsp-support-card {
	background: var(--wp-bg-soft);
	border-radius: 16px;
	padding: 28px;
	position: relative;
}

.wsp-support-card__num {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--wp-blue);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.wsp-support-card h3 {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 6px;
}

.wsp-support-card p {
	font-size: 15px;
	color: var(--wp-ink-soft);
	margin: 0;
	line-height: 1.55;
}

.wsp-support-tip-box {
	background: rgba(0, 113, 227, 0.05);
	border: 1px solid rgba(0, 113, 227, 0.15);
	border-radius: 16px;
	padding: 28px;
	font-size: 15px;
	color: var(--wp-ink-soft);
	line-height: 1.6;
}

.wsp-support-tip-box strong { color: var(--wp-ink); }

/* Contact */
.wsp-support-contact { text-align: center; }
.wsp-support-contact h2 { margin-bottom: 12px; }
.wsp-support-contact p { font-size: 18px; color: var(--wp-ink-soft); margin-bottom: 28px; }

@media (max-width: 700px) {
	.wsp-support-hero h1 { font-size: 32px; }
	.wsp-support-section h2 { font-size: 28px; }
	.wsp-step-item { flex-direction: column; gap: 12px; }
	.wsp-support-cards { grid-template-columns: 1fr; }
}
