/* ==========================================================================
   StickerHUB B2B — Main Stylesheet
   ========================================================================== */

/* --- CSS Custom Properties --- */
:root {
	--sh-primary: #2563eb;
	--sh-secondary: #1e40af;
	--sh-accent: #f59e0b;

	--sh-text: #1e293b;
	--sh-text-light: #64748b;
	--sh-text-inverse: #ffffff;

	--sh-bg: #ffffff;
	--sh-bg-alt: #f8fafc;
	--sh-bg-dark: #0f172a;

	--sh-border: #e2e8f0;
	--sh-radius: 8px;
	--sh-radius-lg: 16px;

	--sh-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
	--sh-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
	--sh-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);

	--sh-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--sh-container: 1200px;
	--sh-header-h: 72px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--sh-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--sh-text);
	background: var(--sh-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--sh-primary);
	text-decoration: none;
	transition: color 0.2s;
}

a:hover {
	color: var(--sh-secondary);
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	line-height: 1.25;
	font-weight: 700;
	color: var(--sh-text);
}

/* --- Layout --- */
.container {
	max-width: var(--sh-container);
	margin: 0 auto;
	padding: 0 24px;
}

.container--narrow {
	max-width: 780px;
}

/* --- Accessibility --- */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: 600;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.skip-link:focus {
	z-index: 100001;
}

/* --- Buttons --- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--sh-font);
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	padding: 12px 24px;
	border: 2px solid transparent;
	border-radius: var(--sh-radius);
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	white-space: nowrap;
}

.btn--primary {
	background: var(--sh-primary);
	color: var(--sh-text-inverse);
	border-color: var(--sh-primary);
}

.btn--primary:hover {
	background: var(--sh-secondary);
	border-color: var(--sh-secondary);
	color: var(--sh-text-inverse);
}

.btn--outline {
	background: transparent;
	color: var(--sh-primary);
	border-color: var(--sh-primary);
}

.btn--outline:hover {
	background: var(--sh-primary);
	color: var(--sh-text-inverse);
}

.btn--accent {
	background: var(--sh-accent);
	color: #1e293b;
	border-color: var(--sh-accent);
}

.btn--accent:hover {
	background: #d97706;
	border-color: #d97706;
}

.btn--sm {
	font-size: 13px;
	padding: 8px 16px;
}

.btn--lg {
	font-size: 17px;
	padding: 16px 32px;
	border-radius: 10px;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.topbar {
	background: var(--sh-bg-dark);
	color: rgba(255,255,255,0.7);
	font-size: 13px;
	padding: 6px 0;
}

.topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.topbar__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 20px;
}

.topbar__menu a {
	color: rgba(255,255,255,0.7);
	font-size: 13px;
}

.topbar__menu a:hover {
	color: #fff;
}

.topbar__contact {
	display: flex;
	gap: 20px;
	align-items: center;
}

.topbar__contact a {
	color: rgba(255,255,255,0.7);
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
}

.topbar__contact a:hover {
	color: #fff;
}

/* ==========================================================================
   Site Header
   ========================================================================== */
.site-header {
	background: var(--sh-bg);
	border-bottom: 1px solid var(--sh-border);
	position: sticky;
	top: 0;
	z-index: 1000;
	height: var(--sh-header-h);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 24px;
}

.site-header__brand {
	flex-shrink: 0;
}

.site-header__brand .custom-logo {
	max-height: 48px;
	width: auto;
}

.site-header__logo-link {
	display: flex;
	align-items: center;
}

.site-header__logo {
	max-height: 48px;
	width: auto;
}

.site-header__title {
	font-size: 22px;
	font-weight: 800;
	color: var(--sh-text);
	text-decoration: none;
	letter-spacing: -0.02em;
}

.site-header__title:hover {
	color: var(--sh-primary);
}

.site-header__actions {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* --- Promoter dropdown menu --- */
.promoter-menu {
	position: relative;
}

.promoter-menu__toggle {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.promoter-menu__dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	min-width: 160px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	padding: 4px 0;
	z-index: 1000;
}

.promoter-menu.is-open .promoter-menu__dropdown {
	display: block;
}

.promoter-menu__item {
	display: block;
	padding: 10px 16px;
	font-size: 14px;
	color: #374151;
	text-decoration: none;
	transition: background 0.1s;
}

.promoter-menu__item:hover {
	background: #f3f4f6;
	color: #111827;
}

.promoter-menu__item--danger {
	color: #dc2626;
}

.promoter-menu__item--danger:hover {
	background: #fef2f2;
	color: #b91c1c;
}

/* --- Mobile menu toggle --- */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	background: none;
	border: none;
	cursor: pointer;
}

.menu-toggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--sh-text);
	border-radius: 2px;
	transition: all 0.3s;
}

/* --- Main Navigation --- */
.main-nav {
	flex: 1;
}

.main-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 4px;
}

.main-nav__list li {
	position: relative;
}

.main-nav__list > li > a {
	display: block;
	padding: 8px 16px;
	color: var(--sh-text);
	font-size: 15px;
	font-weight: 500;
	border-radius: var(--sh-radius);
	transition: background 0.2s, color 0.2s;
}

.main-nav__list > li > a:hover,
.main-nav__list > li.current-menu-item > a,
.main-nav__list > li.current_page_item > a {
	color: var(--sh-primary);
	background: rgba(37, 99, 235, 0.06);
}

/* Dropdown */
.main-nav__list .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--sh-bg);
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius);
	box-shadow: var(--sh-shadow-lg);
	min-width: 220px;
	padding: 8px;
	list-style: none;
	z-index: 100;
}

.main-nav__list li:hover > .sub-menu {
	display: block;
}

.main-nav__list .sub-menu a {
	display: block;
	padding: 8px 12px;
	font-size: 14px;
	color: var(--sh-text);
	border-radius: 6px;
}

.main-nav__list .sub-menu a:hover {
	background: var(--sh-bg-alt);
	color: var(--sh-primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
	background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #ecfeff 100%);
	padding: 80px 0 100px;
	overflow: hidden;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero__headline {
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
	color: var(--sh-text);
}

.hero__subheadline {
	font-size: 18px;
	color: var(--sh-text-light);
	margin-bottom: 32px;
	max-width: 520px;
	line-height: 1.7;
}

.hero__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* Hero decorative graphic */
.hero__visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero__graphic {
	position: relative;
	width: 340px;
	height: 340px;
}

.hero__icon {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero__shape {
	position: absolute;
	border-radius: 50%;
}

.hero__shape--1 {
	width: 200px;
	height: 200px;
	background: var(--sh-primary);
	opacity: 0.08;
	top: 10%;
	right: 5%;
	animation: float 6s ease-in-out infinite;
}

.hero__shape--2 {
	width: 120px;
	height: 120px;
	background: var(--sh-accent);
	opacity: 0.12;
	bottom: 15%;
	left: 10%;
	animation: float 8s ease-in-out infinite reverse;
}

.hero__shape--3 {
	width: 80px;
	height: 80px;
	background: var(--sh-primary);
	opacity: 0.06;
	top: 60%;
	right: 20%;
	animation: float 5s ease-in-out infinite 1s;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-20px); }
}

/* ==========================================================================
   Stats Bar
   ========================================================================== */
.stats-bar {
	background: var(--sh-bg-dark);
	padding: 40px 0;
}

.stats-bar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.stats-bar__number {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
}

.stats-bar__label {
	display: block;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	margin-top: 4px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 500;
}

/* ==========================================================================
   Section Headings
   ========================================================================== */
.section-title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	text-align: center;
	margin-bottom: 12px;
}

.section-subtitle {
	text-align: center;
	color: var(--sh-text-light);
	font-size: 18px;
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   How It Works (Steps)
   ========================================================================== */
.how-it-works {
	padding: 80px 0;
	background: var(--sh-bg);
}

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.step {
	text-align: center;
	padding: 32px;
}

.step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--sh-primary);
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 20px;
}

.step__title {
	font-size: 20px;
	margin-bottom: 12px;
}

.step__desc {
	color: var(--sh-text-light);
	font-size: 15px;
	line-height: 1.7;
}

/* ==========================================================================
   Features Grid
   ========================================================================== */
.features {
	padding: 80px 0;
	background: var(--sh-bg-alt);
}

.features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.feature-card {
	background: var(--sh-bg);
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius-lg);
	padding: 32px;
	transition: box-shadow 0.3s, transform 0.3s;
}

.feature-card:hover {
	box-shadow: var(--sh-shadow-lg);
	transform: translateY(-4px);
}

.feature-card__icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(37, 99, 235, 0.08);
	border-radius: 12px;
	margin-bottom: 20px;
	color: var(--sh-primary);
}

.feature-card__icon svg {
	width: 24px;
	height: 24px;
}

.feature-card h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.feature-card p {
	color: var(--sh-text-light);
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
}

/* ==========================================================================
   Network Section
   ========================================================================== */
section.network {
	padding: 80px 0;
	background: #ffffff;
}

div.network__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.network__grid > .network-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	background: #ffffff;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	padding: 48px 32px 32px;
	text-align: center;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.3s, transform 0.3s;
	position: relative;
	overflow: hidden;
	min-height: 240px;
	box-sizing: border-box;
}

.network__grid > .network-card:hover {
	box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
	transform: translateY(-4px);
	text-decoration: none;
}

.network-card .network-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 120px;
}

.network-card .network-card__logo img {
	display: block;
	max-height: 120px;
	max-width: 260px;
	width: auto;
	height: auto;
	object-fit: contain;
	margin: 0 auto;
}

.network-card .network-card__url {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #64748b;
	margin-top: auto;
	text-decoration: none;
}

.network__grid > .network-card:not(.network-card--coming-soon):hover .network-card__url {
	color: #2563eb;
}

/* Coming Soon variant */
.network__grid > .network-card--coming-soon {
	cursor: default;
}

.network-card--coming-soon::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(148, 163, 184, 0.12);
	z-index: 1;
	pointer-events: none;
}

.network-card--coming-soon .network-card__logo img {
	filter: grayscale(80%) opacity(0.55);
}

.network__grid > .network-card--coming-soon:hover {
	transform: none;
	box-shadow: none;
}

.network-card .network-card__badge {
	display: inline-block;
	padding: 6px 18px;
	background: #94a3b8;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-radius: 100px;
	z-index: 2;
	position: relative;
}

/* Placeholder cards (no logo yet) */
.network__grid > .network-card.network-card--placeholder {
	background: #f8fafc;
	border: 2px dashed #b0bec5;
}

.network-card--placeholder .network-card__logo {
	height: 80px;
	width: 80px;
	flex-shrink: 0;
}

.network-card--placeholder svg.network-card__placeholder-icon {
	display: block;
	width: 40px;
	height: 40px;
	max-width: 40px;
	max-height: 40px;
	color: #c0c9d4;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
	padding: 80px 0;
	background: var(--sh-bg-alt);
}

.cta-box {
	background: linear-gradient(135deg, var(--sh-primary), var(--sh-secondary));
	border-radius: var(--sh-radius-lg);
	padding: 64px 48px;
	text-align: center;
	color: #fff;
}

.cta-box h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	color: #fff;
	margin-bottom: 16px;
}

.cta-box p {
	font-size: 18px;
	opacity: 0.9;
	margin-bottom: 32px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   Page Content
   ========================================================================== */
.page-content {
	padding: 60px 0;
}

.page-article {
	padding: 60px 0 80px;
}

.page-article__header {
	margin-bottom: 40px;
}

.page-article__title {
	font-size: clamp(2rem, 4vw, 2.75rem);
}

.entry-content {
	font-size: 17px;
	line-height: 1.8;
}

.entry-content h2 {
	margin-top: 2em;
	margin-bottom: 0.75em;
}

.entry-content h3 {
	margin-top: 1.5em;
	margin-bottom: 0.5em;
}

.entry-content p {
	margin-bottom: 1.25em;
}

.entry-content ul,
.entry-content ol {
	margin-bottom: 1.25em;
	padding-left: 1.5em;
}

.entry-content blockquote {
	border-left: 4px solid var(--sh-primary);
	margin: 1.5em 0;
	padding: 16px 24px;
	background: var(--sh-bg-alt);
	border-radius: 0 var(--sh-radius) var(--sh-radius) 0;
}

.entry-content img {
	border-radius: var(--sh-radius);
}

/* ==========================================================================
   Single Article
   ========================================================================== */
.single-article {
	padding: 60px 0 40px;
}

.single-article__header {
	margin-bottom: 32px;
}

.single-article__meta {
	display: flex;
	gap: 16px;
	color: var(--sh-text-light);
	font-size: 14px;
	margin-bottom: 12px;
}

.single-article__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.single-article__featured {
	margin-bottom: 32px;
	border-radius: var(--sh-radius-lg);
	overflow: hidden;
}

.single-article__footer {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--sh-border);
}

.single-article__cats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag {
	display: inline-block;
	padding: 4px 12px;
	background: var(--sh-bg-alt);
	border: 1px solid var(--sh-border);
	border-radius: 100px;
	font-size: 13px;
	color: var(--sh-text-light);
	font-weight: 500;
}

.tag:hover {
	background: var(--sh-primary);
	color: #fff;
	border-color: var(--sh-primary);
}

/* Post navigation */
.post-navigation {
	padding: 24px 0 60px;
	border-top: 1px solid var(--sh-border);
}

.nav-links {
	display: flex;
	justify-content: space-between;
	gap: 24px;
}

.nav-subtitle {
	display: block;
	font-size: 12px;
	color: var(--sh-text-light);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 4px;
}

/* ==========================================================================
   Posts Grid (Blog / Archive)
   ========================================================================== */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 28px;
	padding: 40px 0;
}

.post-card {
	background: var(--sh-bg);
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius-lg);
	overflow: hidden;
	transition: box-shadow 0.3s, transform 0.3s;
}

.post-card:hover {
	box-shadow: var(--sh-shadow-lg);
	transform: translateY(-2px);
}

.post-card__thumb img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.post-card__body {
	padding: 24px;
}

.post-card__title {
	font-size: 18px;
	margin-bottom: 8px;
}

.post-card__title a {
	color: var(--sh-text);
}

.post-card__title a:hover {
	color: var(--sh-primary);
}

.post-card__meta {
	font-size: 13px;
	color: var(--sh-text-light);
	margin-bottom: 12px;
}

.post-card__excerpt {
	font-size: 15px;
	color: var(--sh-text-light);
	line-height: 1.6;
	margin-bottom: 16px;
}

.post-card__read-more {
	font-size: 14px;
	font-weight: 600;
}

/* Archive header */
.archive-header {
	padding: 40px 0 0;
}

.archive-header__title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.archive-header__desc {
	color: var(--sh-text-light);
	font-size: 17px;
	margin-top: 8px;
}

/* Pagination */
.pagination {
	padding: 24px 0 60px;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: var(--sh-radius);
	font-size: 14px;
	font-weight: 500;
	border: 1px solid var(--sh-border);
	color: var(--sh-text);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--sh-primary);
	color: #fff;
	border-color: var(--sh-primary);
}

/* ==========================================================================
   404 Page
   ========================================================================== */
.error-404 {
	text-align: center;
	padding: 100px 0;
}

.error-404__code {
	font-size: 8rem;
	font-weight: 900;
	color: var(--sh-primary);
	opacity: 0.15;
	line-height: 1;
	margin-bottom: 0;
}

.error-404__title {
	font-size: 2rem;
	margin-bottom: 16px;
}

.error-404__desc {
	color: var(--sh-text-light);
	font-size: 18px;
	margin-bottom: 32px;
}

/* No results */
.no-results {
	text-align: center;
	padding: 80px 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: #d1e4ff;
	color: #1e293b;
	padding: 64px 0 0;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 48px;
}

.site-footer__brand .custom-logo-link img,
.site-footer__brand .custom-logo {
	max-height: 40px;
	width: auto;
}

.site-footer__title {
	font-size: 20px;
	font-weight: 800;
	color: #0f172a;
	text-decoration: none;
}

.site-footer__tagline {
	font-size: 14px;
	margin-top: 12px;
	line-height: 1.6;
}

.site-footer__email {
	display: block;
	color: var(--sh-primary);
	margin-top: 12px;
	font-size: 14px;
	font-weight: 500;
}

.site-footer__email:hover {
	color: var(--sh-secondary);
}

.site-footer__col .widget-title {
	color: #0f172a;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 16px;
}

.site-footer__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer__col li {
	margin-bottom: 8px;
}

.site-footer__col a {
	color: #334155;
	font-size: 14px;
}

.site-footer__col a:hover {
	color: #0f172a;
}

.site-footer__nav {
	border-top: 1px solid rgba(0,0,0,0.1);
	padding: 20px 0;
}

.site-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.site-footer__menu a {
	color: #334155;
	font-size: 13px;
}

.site-footer__menu a:hover {
	color: #0f172a;
}

.site-footer__bottom {
	border-top: 1px solid rgba(0,0,0,0.1);
	padding: 20px 0;
	text-align: center;
	font-size: 13px;
	color: #64748b;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__legal {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-bottom: 12px;
}

.site-footer__legal a {
	color: #334155;
	text-decoration: none;
	font-size: 13px;
	transition: color 0.2s;
}

.site-footer__legal a:hover {
	color: #0f172a;
}

/* ==========================================================================
   WooCommerce Compatibility
   ========================================================================== */
.woocommerce .products ul,
.woocommerce ul.products {
	padding: 0;
}

.woocommerce-page .site-main {
	padding-top: 24px;
	padding-bottom: 60px;
}

/* ==========================================================================
   Page Article (default page template)
   ========================================================================== */
.page-article {
	padding: 40px 0 60px;
}

.page-article__header {
	margin-bottom: 24px;
}

.page-article__title {
	font-size: 32px;
	font-weight: 800;
	color: var(--sh-dark, #111827);
	margin: 0;
}

.page-article__content {
	font-size: 16px;
	line-height: 1.7;
	color: #374151;
}

.page-article__content p {
	margin: 0 0 16px;
}

.page-article__content a {
	color: #2563eb;
}

.page-article__content a:hover {
	color: #1e40af;
}

/* ==========================================================================
   Contact Form  — [hub_contact_form]
   ========================================================================== */
.hub-contact-wrap {
	max-width: 680px;
	margin: 0 auto;
	padding: 40px 0;
}

.hub-contact-heading {
	font-size: 28px;
	font-weight: 800;
	color: #111827;
	margin: 0 0 8px;
}

.hub-contact-subtext {
	font-size: 16px;
	color: #6b7280;
	margin: 0 0 8px;
}

.hub-contact-faq-hint {
	font-size: 14px;
	color: var(--sh-text-light);
	margin: 0 0 28px;
	padding: 14px 18px;
	background: #eff6ff;
	border-left: 3px solid var(--sh-primary);
	border-radius: 0 var(--sh-radius) var(--sh-radius) 0;
}

.hub-contact-faq-hint a {
	color: var(--sh-primary);
	font-weight: 600;
	text-decoration: underline;
}

.hub-contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hub-contact-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.hub-contact-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.hub-contact-field label {
	font-size: 14px;
	font-weight: 600;
	color: #374151;
}

.hub-contact-field .required {
	color: #ef4444;
}

.hub-contact-field input,
.hub-contact-field select,
.hub-contact-field textarea {
	width: 100%;
	padding: 10px 14px;
	font-size: 15px;
	font-family: inherit;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	background: #fff;
	color: #111827;
	box-sizing: border-box;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.hub-contact-field input:focus,
.hub-contact-field select:focus,
.hub-contact-field textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.hub-contact-field textarea {
	resize: vertical;
	min-height: 120px;
}

.hub-contact-submit {
	display: inline-block;
	align-self: flex-start;
	padding: 12px 32px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: #2563eb;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s;
}

.hub-contact-submit:hover {
	background: #1d4ed8;
}

.hub-contact-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.hub-contact-msg {
	font-size: 14px;
	padding: 0;
	min-height: 20px;
}

.hub-contact-msg--success {
	color: #065f46;
	background: #d1fae5;
	padding: 12px 16px;
	border-radius: 8px;
	border: 1px solid #a7f3d0;
}

.hub-contact-msg--error {
	color: #991b1b;
	background: #fee2e2;
	padding: 12px 16px;
	border-radius: 8px;
	border: 1px solid #fecaca;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-wrap {
	max-width: 760px;
	margin: 0 auto;
}

.faq-intro {
	font-size: 17px;
	color: var(--sh-text-light);
	margin-bottom: 32px;
	line-height: 1.7;
}

.faq-section-title {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--sh-primary);
	margin: 40px 0 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--sh-primary);
}

.faq-section-title:first-of-type {
	margin-top: 0;
}

.faq-item {
	border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius);
	margin-bottom: 8px;
	background: #fff;
	transition: box-shadow 0.2s;
}

.faq-item:hover {
	box-shadow: var(--sh-shadow-sm);
}

.faq-item[open] {
	box-shadow: var(--sh-shadow);
	border-color: var(--sh-primary);
}

.faq-item summary {
	padding: 16px 48px 16px 20px;
	font-weight: 600;
	font-size: 15px;
	color: var(--sh-text);
	cursor: pointer;
	list-style: none;
	position: relative;
	line-height: 1.5;
}

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

.faq-item summary::after {
	content: '+';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	font-weight: 300;
	color: var(--sh-text-light);
	transition: transform 0.2s;
}

.faq-item[open] summary::after {
	content: '−';
	color: var(--sh-primary);
}

.faq-item summary:hover {
	color: var(--sh-primary);
}

.faq-answer {
	padding: 0 20px 20px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--sh-text-light);
}

.faq-answer p {
	margin: 0 0 10px;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

.faq-answer ul {
	margin: 8px 0 10px;
	padding-left: 20px;
}

.faq-answer ul li {
	margin-bottom: 4px;
}

.faq-answer a {
	color: var(--sh-primary);
	font-weight: 500;
	text-decoration: none;
}

.faq-answer a:hover {
	text-decoration: underline;
}

.faq-cta {
	text-align: center;
	margin-top: 48px;
	padding: 32px;
	background: var(--sh-bg-alt);
	border-radius: var(--sh-radius-lg);
}

.faq-cta p {
	margin: 0 0 16px;
	font-size: 16px;
	color: var(--sh-text-light);
}

.faq-cta a.faq-cta-btn {
	display: inline-block;
	padding: 12px 32px;
	background: var(--sh-primary);
	color: #fff;
	border-radius: var(--sh-radius);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: background 0.2s;
}

.faq-cta a.faq-cta-btn:hover {
	background: var(--sh-secondary);
}

/* Legal / Terms pages (reuses .faq-wrap + .faq-section-title) */
.legal-wrap p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--sh-text-light);
	margin: 0 0 12px;
}

.legal-wrap ul {
	margin: 8px 0 16px;
	padding-left: 20px;
	color: var(--sh-text-light);
	font-size: 15px;
	line-height: 1.7;
}

.legal-wrap ul li {
	margin-bottom: 4px;
}

.legal-wrap a {
	color: var(--sh-primary);
	font-weight: 500;
	text-decoration: none;
}

.legal-wrap a:hover {
	text-decoration: underline;
}

.legal-effective {
	font-size: 14px;
	color: var(--sh-text-light);
	font-style: italic;
	margin-bottom: 32px;
}

@media (max-width: 768px) {
	.faq-item summary {
		padding: 14px 40px 14px 16px;
		font-size: 14px;
	}

	.faq-item summary::after {
		right: 16px;
	}

	.faq-answer {
		padding: 0 16px 16px;
		font-size: 14px;
	}

	.faq-section-title {
		margin-top: 32px;
	}

	.faq-cta {
		padding: 24px 16px;
		margin-top: 32px;
	}
}

/* ==========================================================================
   WordPress Admin Bar Offset
   ========================================================================== */
.admin-bar .site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media screen and (max-width: 1024px) {
	.hero__inner {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.hero__subheadline {
		margin-left: auto;
		margin-right: auto;
	}

	.hero__actions {
		justify-content: center;
	}

	.hero__visual {
		display: none;
	}

	.features__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	div.network__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media screen and (max-width: 768px) {
	:root {
		--sh-header-h: 64px;
	}

	.menu-toggle {
		display: flex;
	}

	.main-nav {
		display: none;
		position: absolute;
		top: var(--sh-header-h);
		left: 0;
		right: 0;
		background: var(--sh-bg);
		border-bottom: 1px solid var(--sh-border);
		box-shadow: var(--sh-shadow-lg);
		padding: 16px 24px;
		z-index: 999;
	}

	.main-nav.is-open {
		display: block;
	}

	.main-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.main-nav__list > li > a {
		padding: 12px 0;
		border-bottom: 1px solid var(--sh-border);
	}

	.main-nav__list .sub-menu {
		position: static;
		box-shadow: none;
		border: none;
		padding: 0 0 0 16px;
		display: block;
	}

	.site-header__actions {
		display: none;
	}

	.stats-bar__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.steps {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.features__grid {
		grid-template-columns: 1fr;
	}

	div.network__grid {
		grid-template-columns: 1fr;
	}

	.hero {
		padding: 48px 0 60px;
	}

	.hero__headline {
		font-size: 2rem;
	}

	.cta-box {
		padding: 40px 24px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.posts-grid {
		grid-template-columns: 1fr;
	}

	.topbar__inner {
		justify-content: center;
		text-align: center;
	}

	.topbar__menu {
		display: none;
	}

	.hub-contact-row {
		grid-template-columns: 1fr;
	}

	.hub-contact-wrap {
		padding: 24px 0;
	}

	.hub-contact-heading {
		font-size: 22px;
	}

	.hub-contact-submit {
		width: 100%;
		text-align: center;
	}

	.page-article__title {
		font-size: 24px;
	}
}

@media screen and (max-width: 480px) {
	.btn--lg {
		width: 100%;
	}

	.hero__actions {
		flex-direction: column;
	}

	.stats-bar__number {
		font-size: 2rem;
	}
}
