/* ==========================================================================
   Voostream Landing Builder
   Scoped under .nw-landing and on each nw- component so individual shortcodes
   work standalone too. Everything prefixed nw- to avoid theme conflicts.
   ========================================================================== */

:root {
	--nw-black: #000;
	--nw-card: #080809;
	--nw-card-2: #0b0b0c;
	--nw-yellow: #ffb703;
	--nw-yellow-2: #fdc500;
	--nw-white: #fff;
	--nw-body: #f5f5f5;
	--nw-muted: #d9d9d9;
	--nw-wa: #25d366;
	--nw-max: 1140px;
	--nw-font-head: 'Montserrat', sans-serif;
	--nw-font-body: 'Lexend', 'Poppins', sans-serif;
	--nw-font-logo: 'Poppins', sans-serif;
}

/* Reset / box-sizing for everything the plugin renders. */
.nw-landing,
.nw-landing *,
.nw-header, .nw-header *,
.nw-hero, .nw-hero *,
.nw-section, .nw-section *,
.nw-footer, .nw-footer *,
.nw-float-wa, .nw-float-wa *,
.nw-top, .nw-top * {
	box-sizing: border-box;
}

/* Typography reset inside the landing wrapper. */
.nw-landing {
	background: var(--nw-black);
	color: var(--nw-body);
	font-family: var(--nw-font-body);
	margin: 0;
	overflow-x: hidden;
}
.nw-landing p,
.nw-landing h1,
.nw-landing h2,
.nw-landing h3,
.nw-landing ul,
.nw-landing li {
	margin: 0;
	padding: 0;
}
.nw-landing a { text-decoration: none; }
.nw-landing img { max-width: 100%; display: block; }
.nw-landing ul { list-style: none; }

/* Shared container. */
.nw-container {
	width: 100%;
	max-width: var(--nw-max);
	margin: 0 auto;
	padding: 0 20px;
}

/* Section base. */
.nw-section {
	background: var(--nw-black);
	padding: 70px 0;
}

/* Shared centered section heading. */
.nw-h2 {
	font-family: var(--nw-font-head);
	color: var(--nw-white);
	font-weight: 700;
	font-size: 40px;
	line-height: 1.2;
	text-align: center;
	margin: 0 0 40px;
}

/* Shared buttons. */
.nw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--nw-font-head);
	font-weight: 700;
	background: var(--nw-yellow);
	color: var(--nw-black);
	border: none;
	cursor: pointer;
	border-radius: 10px;
	transition: transform .18s ease, background .18s ease;
}
.nw-btn:hover { transform: scale(1.04); }
.nw-btn .nw-ic { width: 22px; height: 22px; display: inline-flex; }
.nw-btn .nw-ic svg { width: 100%; height: 100%; }

/* ==========================================================================
   1. Header
   ========================================================================== */
.nw-header {
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 88px;
	z-index: 1000;
	background: transparent;
	transition: background .25s ease;
}
.nw-header.nw-scrolled { background: #000; position: fixed; }

/* Standalone header (used on its own, off the landing page): always a solid
   fixed bar so white-background pages stay readable, plus a spacer that reserves
   the header's height so content below is never hidden underneath it. */
.nw-header-solid {
	position: fixed;
	background: #000;
	box-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.nw-header-spacer { height: 88px; }
.nw-header-inner {
	max-width: 1200px;
	height: 88px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.nw-logo {
	font-family: var(--nw-font-logo);
	color: var(--nw-white);
	font-size: 32px;
	font-weight: 700;
	letter-spacing: .5px;
}
.nw-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-left: auto;
}
.nw-nav a {
	font-family: var(--nw-font-head);
	font-size: 16px;
	font-weight: 600;
	color: var(--nw-white);
	transition: color .18s ease;
}
.nw-nav a:hover { color: var(--nw-yellow); }
.nw-btn-trial {
	padding: 15px 30px;
	font-size: 18px;
	font-weight: 700;
	border-radius: 10px;
}
.nw-burger {
	display: none;
	background: none;
	border: none;
	color: var(--nw-white);
	cursor: pointer;
	width: 34px; height: 34px;
	padding: 0;
}
.nw-burger svg { width: 100%; height: 100%; }

/* ==========================================================================
   2. Hero
   ========================================================================== */
.nw-hero {
	position: relative;
	min-height: 800px;
	background: #050505 center / cover no-repeat;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	overflow: hidden;
}
.nw-hero-overlay {
	position: absolute; inset: 0;
	background: rgba(0,0,0,.55);
}
.nw-hero-content {
	position: relative;
	z-index: 2;
	max-width: 1120px;
	width: 100%;
	padding: 150px 20px 60px;
	text-align: center;
}
.nw-hero-title {
	font-family: var(--nw-font-head);
	color: var(--nw-white);
	font-size: 68px;
	font-weight: 700;
	line-height: 1.18;
	text-align: center;
}
.nw-hero-sub {
	color: var(--nw-white);
	font-size: 19px;
	line-height: 1.7;
	max-width: 900px;
	margin: 24px auto 0;
}
.nw-btn-hero {
	margin-top: 34px;
	width: 255px;
	height: 60px;
	padding: 20px 30px;
	font-size: 18px;
	border-radius: 10px;
}
.nw-hero-devices {
	margin-top: 36px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 26px;
}
.nw-hero-device {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: #e9e9ec;
	font-size: 13.5px;
	font-weight: 600;
	font-family: var(--nw-font-head);
}
.nw-hero-device img {
	width: 64px;
	height: 64px;
	object-fit: contain;
	background: #000;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 50%;
	padding: 14px;
	box-sizing: border-box;
	box-shadow: 0 4px 12px rgba(0,0,0,.45);
	transition: transform .2s ease;
}
.nw-hero-device:hover img { transform: translateY(-4px); }
.nw-hero-device .nw-ic { width: 30px; height: 30px; color: #e6e6e6; }
.nw-hero-device .nw-ic svg { width: 100%; height: 100%; }

/* ==========================================================================
   3. Quick Stats
   ========================================================================== */
.nw-stats-grid {
	display: flex;
	justify-content: center;
	gap: 20px;
}
.nw-stat-card {
	flex: 1 1 360px;
	max-width: 360px;
	height: 163px;
	background: var(--nw-yellow);
	border-radius: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.nw-stat-num {
	color: var(--nw-black);
	font-family: var(--nw-font-head);
	font-size: 62px;
	font-weight: 800;
	line-height: 1;
}
.nw-stat-label {
	color: var(--nw-black);
	font-size: 20px;
	font-weight: 600;
}

/* ==========================================================================
   Carousels (sports / movies / testimonials)
   ========================================================================== */
.nw-carousel-section { padding-bottom: 70px; }
.nw-carousel {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
}
.nw-carousel::-webkit-scrollbar { display: none; }
.nw-carousel-track {
	display: flex;
	gap: 16px;
	padding: 4px 20px;
	width: max-content;
}
.nw-slide {
	flex: 0 0 auto;
	scroll-snap-align: start;
	border: 3px solid var(--nw-yellow);
	overflow: hidden;
	background: var(--nw-card);
}
.nw-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Sports = square ~500x500 */
.nw-slide-sport { width: 320px; height: 320px; border-radius: 2px; }
/* Movies = poster ratio 550x815 */
.nw-slide-movie { width: 220px; height: 326px; border-radius: 2px; }
/* Testimonials = tall 720x1280 */
.nw-slide-testi { width: 260px; height: 462px; border-radius: 4px; }
.nw-slide-empty { background: linear-gradient(135deg,#111,#1c1c1c); }

/* Synthetic chat testimonial card. */
.nw-chat {
	width: 100%; height: 100%;
	background: #e9e4dc;
	display: flex;
	flex-direction: column;
}
.nw-chat-head {
	background: #075e54;
	color: #fff;
	font-family: var(--nw-font-head);
	font-weight: 600;
	font-size: 15px;
	padding: 12px 14px;
}
.nw-chat-body {
	flex: 1;
	padding: 16px 12px;
	background-image: radial-gradient(rgba(0,0,0,.04) 1px, transparent 1px);
	background-size: 14px 14px;
	display: flex;
	align-items: flex-end;
}
.nw-bubble {
	position: relative;
	background: #dcf8c6;
	color: #111;
	font-size: 14px;
	line-height: 1.5;
	padding: 9px 12px 20px;
	border-radius: 8px;
	max-width: 92%;
}
.nw-chat-time {
	position: absolute;
	right: 8px; bottom: 5px;
	font-size: 10px;
	color: #667;
}

/* ==========================================================================
   6. Supported Devices
   ========================================================================== */
.nw-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}
.nw-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 64px;
	padding: 12px 18px;
	background: var(--nw-card);
	border: 1px solid var(--nw-yellow);
	border-radius: 8px;
	color: var(--nw-white);
	font-family: var(--nw-font-head);
	font-weight: 600;
	font-size: 16px;
}
.nw-badge:hover { color: var(--nw-yellow); }

/* Supported devices — icon grid */
.nw-device-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
	margin-top: 8px;
}
.nw-device-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 26px 12px;
	background: var(--nw-card);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 14px;
	transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.nw-device-card:hover {
	border-color: var(--nw-yellow);
	transform: translateY(-4px);
}
.nw-device-card img {
	width: 72px;
	height: 60px;
	object-fit: contain;
	filter: drop-shadow(0 6px 16px rgba(0,0,0,.4));
}
.nw-device-card span {
	font-family: var(--nw-font-head);
	font-weight: 700;
	font-size: 14px;
	color: var(--nw-white);
	text-align: center;
}
@media (max-width: 900px) {
	.nw-device-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
	.nw-device-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.nw-device-card img { width: 60px; height: 50px; }
}

/* ==========================================================================
   7. Features
   ========================================================================== */
.nw-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.nw-feature-card {
	background: var(--nw-card);
	padding: 30px 24px;
	min-height: 300px;
	text-align: center;
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.nw-feature-icon {
	color: var(--nw-yellow);
	width: 60px; height: 60px;
	margin-bottom: 24px;
	display: inline-flex;
}
.nw-feature-icon svg { width: 100%; height: 100%; }
.nw-feature-title {
	color: var(--nw-white);
	font-family: var(--nw-font-head);
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}
.nw-feature-text {
	color: var(--nw-white);
	font-family: var(--nw-font-body);
	font-size: 16px;
	line-height: 1.7;
}

/* ==========================================================================
   8. World Channels
   ========================================================================== */
.nw-world-map {
	position: relative;
	max-width: 641px;
	width: 70%;
	margin: 0 auto;
}
.nw-world-placeholder {
	width: 100%;
	padding-top: 50%;
	background:
		radial-gradient(circle, #2a2a2a 1.4px, transparent 1.6px) 0 0 / 14px 14px;
	opacity: .6;
	border-radius: 8px;
}
.nw-pin {
	position: absolute;
	width: 14px; height: 14px;
	background: var(--pin, #ff4f7b);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--pin, #ff4f7b) 30%, transparent);
	animation: nw-pin-pulse 2s infinite;
}
@keyframes nw-pin-pulse {
	0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--pin) 30%, transparent); }
	50% { box-shadow: 0 0 0 9px color-mix(in srgb, var(--pin) 10%, transparent); }
}

/* ==========================================================================
   9. Pricing
   ========================================================================== */
.nw-pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.nw-price-card {
	position: relative;
	background: var(--nw-card);
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 34px;
	border: 1px solid rgba(255, 184, 0, 0.35);
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.nw-price-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 184, 0, 0.55);
	box-shadow:
		0 0 0 1px rgba(255, 184, 0, 0.35),
		0 18px 50px -10px rgba(255, 184, 0, 0.55),
		0 0 90px -10px rgba(255, 184, 0, 0.45);
}
.nw-price-top {
	width: 100%;
	height: 68px;
	background: var(--nw-yellow);
	color: var(--nw-black);
	font-family: var(--nw-font-head);
	font-size: 28px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nw-price-amount {
	color: var(--nw-yellow);
	font-family: var(--nw-font-head);
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
	padding-top: 36px;
	padding-bottom: 4px;
}
.nw-price-list {
	width: 100%;
	padding: 18px 26px 26px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.nw-price-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--nw-white);
	font-size: 15px;
	line-height: 2;
}
.nw-li-ic { color: var(--nw-white); width: 16px; height: 16px; flex: 0 0 16px; display: inline-flex; }
.nw-li-ic svg { width: 100%; height: 100%; }
.nw-btn-price {
	background: var(--nw-yellow-2);
	border-radius: 50px;
	padding: 18px 34px;
	min-width: 189px;
	height: 58px;
	font-size: 16px;
}

/* ---- Dynamic plan extras ---- */
.nw-price-period {
	color: var(--nw-white);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .03em;
	text-transform: uppercase;
	opacity: .8;
	margin-top: 0;
	margin-bottom: 10px;
}
.nw-price-badge {
	position: absolute;
	top: 14px;
	right: -2px;
	background: var(--nw-yellow);
	color: var(--nw-black);
	font-family: var(--nw-font-head);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 50px 0 0 50px;
	box-shadow: 0 6px 18px -4px var(--nw-yellow);
	z-index: 2;
}
.nw-price-card-featured {
	border-color: rgba(255, 184, 0, 0.5);
	box-shadow: 0 0 0 1px rgba(255, 184, 0, 0.25), 0 18px 50px -18px rgba(255, 184, 0, 0.45);
}
.nw-price-details-link {
	margin-top: 14px;
	color: var(--nw-muted);
	font-size: 14px;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color .2s ease, border-color .2s ease;
}
.nw-price-details-link:hover {
	color: var(--nw-yellow);
	border-bottom-color: var(--nw-yellow);
}
.nw-pricing-grid-one {
	grid-template-columns: minmax(0, 360px);
	justify-content: center;
}

/* ==========================================================================
   Plan details page — LIGHT theme, full width, strong & clean
   ========================================================================== */
.nw-section.nw-plan-details {
	--nw-ink: #14151a;
	--nw-ink-soft: #4a4d57;
	--nw-line-l: #e6e8ee;
	--nw-bg-l: #ffffff;
	--nw-bg-2: #f6f7f9;
	background: var(--nw-bg-2);
	color: var(--nw-ink);
	padding: 64px 0 90px;
	font-family: var(--nw-font-body);
}
.nw-plan-details-inner { max-width: 1140px; }

.nw-plan-back {
	display: inline-block;
	margin-bottom: 26px;
	color: var(--nw-ink-soft);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: color .2s ease;
}
.nw-plan-back:hover { color: #111; }

/* Hero header band */
.nw-plan-detail-head {
	position: relative;
	background: linear-gradient(135deg, #0b0b0d 0%, #17181d 100%);
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	padding: 46px 44px;
	margin-bottom: 40px;
	overflow: hidden;
	box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.55);
}
.nw-plan-detail-head-inner { position: relative; z-index: 2; }
/* Glow accent (no featured image) */
.nw-plan-detail-head::after {
	content: "";
	position: absolute;
	right: -60px;
	top: -60px;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(255, 184, 0, 0.45), transparent 70%);
	pointer-events: none;
}
/* Featured image as header background: taller + dark overlay for readable text */
.nw-plan-detail-head-img {
	min-height: 340px;
	display: flex;
	align-items: flex-end;
}
.nw-plan-detail-head-img::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 8, 10, 0.35) 0%, rgba(8, 8, 10, 0.55) 45%, rgba(8, 8, 10, 0.9) 100%);
	z-index: 1;
}
.nw-plan-detail-head-img::after { display: none; }
.nw-price-badge-static {
	position: static;
	display: inline-block;
	border-radius: 50px;
	margin-bottom: 16px;
}
.nw-plan-detail-name {
	font-family: var(--nw-font-head);
	font-weight: 800;
	font-size: clamp(34px, 5vw, 52px);
	color: #fff;
	margin: 0 0 12px;
	letter-spacing: -0.02em;
	position: relative;
}
.nw-plan-detail-price { display: flex; align-items: baseline; gap: 10px; position: relative; }
.nw-plan-detail-amount {
	font-family: var(--nw-font-head);
	font-size: 56px;
	font-weight: 700;
	color: var(--nw-yellow);
}
.nw-plan-detail-period { color: #c9cbd3; font-size: 16px; }

/* Two-column body */
.nw-plan-detail-grid {
	display: grid;
	grid-template-columns: 1.55fr 1fr;
	gap: 48px;
	align-items: start;
}
.nw-plan-detail-desc {
	color: var(--nw-ink-soft);
	font-size: 17.5px;
	line-height: 1.85;
}
.nw-plan-detail-desc p { margin: 0 0 1.1em; }
.nw-plan-detail-desc strong { color: var(--nw-ink); }
.nw-plan-detail-sub {
	font-family: var(--nw-font-head);
	font-weight: 700;
	font-size: 22px;
	color: var(--nw-ink);
	margin: 1.6em 0 .7em;
}
.nw-plan-detail-desc > p:first-child { margin-top: 0; }
.nw-plan-bullets { margin: 0 0 1.2em; padding: 0; list-style: none; }
.nw-plan-bullets li {
	position: relative;
	padding-left: 30px;
	margin: 0 0 .7em;
	color: var(--nw-ink-soft);
	line-height: 1.65;
}
.nw-plan-bullets li::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 9px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--nw-yellow);
	box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.18);
}

/* Included list (light) */
.nw-plan-detail-features { margin-top: 8px; }
.nw-plan-detail-features .nw-price-list { padding: 0; }
.nw-plan-detail-features .nw-price-list li { color: var(--nw-ink); font-size: 16px; }
.nw-plan-detail-features .nw-li-ic {
	color: #0f9d58;
	background: rgba(37, 211, 102, 0.12);
	border-radius: 50%;
	width: 22px; height: 22px; flex: 0 0 22px;
	padding: 4px;
}

/* ---- Order panel + form (light card) ---- */
.nw-order-panel {
	position: sticky;
	top: 110px;
	background: var(--nw-bg-l);
	border: 1px solid var(--nw-line-l);
	border-radius: 18px;
	padding: 28px 26px;
	box-shadow: 0 30px 70px -34px rgba(20, 21, 26, 0.35);
}
.nw-order-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; }
.nw-order-amount {
	font-family: var(--nw-font-head);
	font-weight: 800;
	font-size: 44px;
	color: var(--nw-ink);
}
.nw-order-period { color: var(--nw-ink-soft); font-size: 14px; }
.nw-btn-wa-order {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: 56px;
	background: var(--nw-wa);
	color: #fff;
	font-family: var(--nw-font-head);
	font-weight: 700;
	font-size: 16px;
	border-radius: 12px;
	box-shadow: 0 12px 26px -12px var(--nw-wa);
	transition: transform .2s ease, box-shadow .2s ease;
}
.nw-btn-wa-order:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px var(--nw-wa); }
.nw-btn-wa-order .nw-ic { width: 22px; height: 22px; display: inline-flex; }
.nw-btn-wa-order .nw-ic svg { width: 100%; height: 100%; }
.nw-order-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 20px 0;
	color: var(--nw-ink-soft);
	font-size: 12.5px;
}
.nw-order-divider::before,
.nw-order-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--nw-line-l);
}
.nw-order-form { display: flex; flex-direction: column; gap: 13px; }
.nw-field { display: flex; flex-direction: column; gap: 5px; }
.nw-field span { font-size: 13px; font-weight: 600; color: var(--nw-ink-soft); }
.nw-field input,
.nw-field textarea {
	width: 100%;
	background: var(--nw-bg-2);
	border: 1px solid var(--nw-line-l);
	border-radius: 10px;
	color: var(--nw-ink);
	padding: 12px 14px;
	font-family: var(--nw-font-body);
	font-size: 15px;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.nw-field input:focus,
.nw-field textarea:focus {
	outline: none;
	border-color: var(--nw-yellow);
	box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.2);
	background: #fff;
}
.nw-order-submit {
	margin-top: 8px;
	width: 100%;
	justify-content: center;
	height: 54px;
	border: 0;
	cursor: pointer;
	color: #111;
	font-weight: 700;
	box-shadow: 0 12px 26px -12px var(--nw-yellow);
}
.nw-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.nw-order-note {
	border-radius: 10px;
	padding: 11px 14px;
	font-size: 14px;
	margin-bottom: 14px;
}
.nw-order-note-ok  { background: rgba(37, 211, 102, 0.12); border: 1px solid var(--nw-wa); color: #0c7c3e; }
.nw-order-note-err { background: rgba(255, 79, 123, 0.12); border: 1px solid #ff4f7b; color: #b3214a; }

@media (max-width: 880px) {
	.nw-plan-detail-grid { grid-template-columns: 1fr; gap: 30px; }
	.nw-order-panel { position: static; }
	.nw-plan-detail-head { padding: 36px 26px; }
}

/* ==========================================================================
   11. Contact CTA
   ========================================================================== */
.nw-contact-panel {
	max-width: 900px;
	margin: 0 auto;
	background: var(--nw-yellow);
	border-radius: 18px;
	padding: 45px 50px;
	text-align: center;
}
.nw-contact-title {
	color: var(--nw-black);
	font-family: var(--nw-font-head);
	font-size: 35px;
	font-weight: 700;
}
.nw-contact-text {
	color: var(--nw-black);
	font-size: 17px;
	line-height: 1.7;
	max-width: 640px;
	margin: 16px auto 0;
}
.nw-contact-icon {
	display: inline-flex;
	margin: 25px auto 10px;
	color: var(--nw-black);
}
.nw-contact-wa { width: 82px; height: 82px; display: inline-flex; }
.nw-contact-wa svg { width: 100%; height: 100%; }
.nw-contact-link {
	display: block;
	color: var(--nw-black);
	font-size: 20px;
	font-weight: 600;
}

/* ==========================================================================
   12. Footer
   ========================================================================== */
.nw-footer {
	background: var(--nw-black);
	padding: 56px 20px 32px;
	text-align: center;
}
/* Big trust icons row */
.nw-footer-trust {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	padding-bottom: 40px;
	margin-bottom: 36px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
.nw-foot-trust {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: center;
	text-align: left;
}
.nw-foot-trust-ic {
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--nw-yellow);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.nw-foot-trust-ic .nw-ic { width: 28px; height: 28px; color: #111; }
.nw-foot-trust-ic .nw-ic svg { width: 100%; height: 100%; }
.nw-foot-trust-txt { display: flex; flex-direction: column; gap: 2px; }
.nw-foot-trust-txt strong {
	font-family: var(--nw-font-head);
	font-weight: 800;
	font-size: 16px;
	color: var(--nw-white);
}
.nw-foot-trust-txt em { font-style: normal; color: #9a9a9a; font-size: 13px; }

/* Brand + nav */
.nw-footer-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	margin-bottom: 28px;
}
.nw-footer-logo {
	font-family: var(--nw-font-head);
	font-weight: 800;
	font-size: 26px;
	letter-spacing: 1px;
	color: var(--nw-white);
}
.nw-footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 28px;
}
.nw-footer-links a {
	color: #cfcfcf;
	font-family: var(--nw-font-head);
	font-weight: 600;
	font-size: 15px;
	transition: color .2s ease;
}
.nw-footer-links a:hover { color: var(--nw-yellow); }
.nw-footer-copy {
	color: #9a9a9a;
	font-size: 14px;
	font-family: var(--nw-font-body);
	margin-top: 14px;
}
@media (max-width: 900px) {
	.nw-footer-trust { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
}
@media (max-width: 540px) {
	.nw-footer-trust { grid-template-columns: 1fr; }
	.nw-foot-trust { justify-content: flex-start; max-width: 280px; margin: 0 auto; }
}

/* ==========================================================================
   13. Floating WhatsApp
   ========================================================================== */
.nw-float-wa {
	position: fixed;
	left: 24px;
	bottom: 24px;
	width: 64px;
	height: 64px;
	background: var(--nw-wa);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	box-shadow: 0 6px 18px rgba(0,0,0,.35);
	transition: transform .18s ease;
}
.nw-float-wa:hover { transform: scale(1.05); }
.nw-float-wa .nw-ic { width: 34px; height: 34px; display: inline-flex; }
.nw-float-wa svg { width: 100%; height: 100%; }

/* ==========================================================================
   14. Back to Top
   ========================================================================== */
.nw-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 42px;
	height: 42px;
	background: var(--nw-yellow);
	color: var(--nw-black);
	border: none;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease, transform .18s ease;
}
.nw-top.nw-show { opacity: 1; visibility: visible; }
.nw-top:hover { transform: scale(1.05); }
.nw-top .nw-ic { width: 22px; height: 22px; display: inline-flex; }
.nw-top svg { width: 100%; height: 100%; }

/* ==========================================================================
   Tablet  (<= 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
	.nw-section { padding: 45px 0; }
	.nw-h2 { font-size: 32px; }
	.nw-hero-title { font-size: 48px; }
	.nw-features-grid { grid-template-columns: repeat(2, 1fr); }
	.nw-pricing-grid { grid-template-columns: repeat(2, 1fr); }
	.nw-stats-grid { flex-wrap: wrap; }
	.nw-stat-card { flex: 1 1 calc(50% - 20px); }
}

/* ==========================================================================
   Mobile  (<= 768px)
   ========================================================================== */
@media (max-width: 768px) {
	.nw-section { padding: 35px 0; }
	.nw-h2 { font-size: 26px; margin-bottom: 28px; }

	/* Header */
	.nw-nav {
		position: absolute;
		top: 88px; left: 0; right: 0;
		flex-direction: column;
		gap: 0;
		background: #000;
		padding: 8px 0;
		display: none;
	}
	.nw-nav.nw-open { display: flex; }
	.nw-nav a {
		width: 100%;
		height: 46px;
		display: flex;
		align-items: center;
		padding: 15px 25px;
	}
	.nw-btn-trial { display: none; }
	.nw-burger { display: inline-flex; }
	.nw-logo { font-size: 25px; }

	/* Hero */
	.nw-hero { min-height: 560px; }
	.nw-hero-content { padding: 120px 18px 40px; }
	.nw-hero-title { font-size: 32px; line-height: 1.22; }
	.nw-hero-sub { font-size: 15px; }
	.nw-btn-hero { width: 255px; }
	.nw-hero-devices { gap: 18px; }

	/* Stats */
	.nw-stats-grid {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 0 20px;
	}
	.nw-stat-card {
		flex: 1 1 auto;
		width: 100%;
		max-width: none;
		margin: 0;
		height: 118px;
		border-radius: 14px;
	}
	.nw-stat-num { font-size: 46px; }
	.nw-stat-label { font-size: 17px; }

	/* Carousels show ~2.2 items, overflow visible feel */
	.nw-slide-sport { width: 200px; height: 200px; }
	.nw-slide-movie { width: 160px; height: 237px; }
	.nw-slide-testi { width: 200px; height: 356px; }

	/* Features */
	.nw-features-grid { grid-template-columns: 1fr; }
	.nw-feature-card { min-height: 270px; }
	.nw-feature-title { font-size: 20px; }
	.nw-feature-text { font-size: 15px; }

	/* World */
	.nw-world-map { width: 90%; }

	/* Pricing */
	.nw-pricing-grid { grid-template-columns: 1fr; gap: 18px; padding: 0 20px; }
	.nw-price-card { margin: 0 auto; max-width: 420px; width: 100%; justify-self: center; }
	.nw-price-amount { font-size: 54px; }

	/* Contact */
	.nw-contact-panel { width: calc(100% - 40px); padding: 35px 20px; }
	.nw-contact-title { font-size: 28px; }
	.nw-contact-wa { width: 70px; height: 70px; }

	/* Footer */
	.nw-footer-links { flex-direction: column; gap: 12px; }

	/* Floating */
	.nw-float-wa { width: 60px; height: 60px; }
}

/* ==========================================================================
   Small mobile  (<= 480px)
   ========================================================================== */
@media (max-width: 480px) {
	.nw-stat-num { font-size: 40px; }
	.nw-stat-card { height: 104px; }
	.nw-price-top { font-size: 24px; height: 60px; }
	.nw-price-amount { font-size: 48px; padding-top: 28px; }
	.nw-price-list { padding: 14px 20px 22px; }
	.nw-price-list li { font-size: 14px; }
	.nw-hero-device img { width: 56px; height: 56px; padding: 12px; }
	.nw-hero-device { font-size: 12px; }
}

/* ==========================================================================
   Channel List / FAQ / Blog pages
   ========================================================================== */
.nw-section-sub {
	text-align: center;
	color: var(--nw-muted);
	font-size: 17px;
	max-width: 640px;
	margin: -14px auto 36px;
}

/* ---- Channel List ---- */
.nw-channels-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
}
.nw-channel-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	background: var(--nw-card);
	border: 1px solid #1c1c20;
	border-radius: 14px;
	padding: 22px 12px;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nw-channel-tile:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 184, 0, 0.5);
	box-shadow: 0 16px 40px -18px rgba(255, 184, 0, 0.45);
}
.nw-channel-tile img { width: 64px; height: 64px; object-fit: contain; }
.nw-channel-name {
	font-family: var(--nw-font-head);
	font-weight: 600;
	font-size: 14px;
	color: var(--nw-white);
}

/* ---- FAQ ---- */
.nw-faq-inner { max-width: 820px; }
.nw-faq-list { display: flex; flex-direction: column; gap: 14px; }
.nw-faq-item {
	background: var(--nw-card);
	border: 1px solid #1c1c20;
	border-radius: 12px;
	overflow: hidden;
}
.nw-faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	cursor: pointer;
	list-style: none;
	font-family: var(--nw-font-head);
	font-weight: 600;
	font-size: 17px;
	color: var(--nw-white);
}
.nw-faq-q::-webkit-details-marker { display: none; }
.nw-faq-ic {
	position: relative;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
}
.nw-faq-ic::before,
.nw-faq-ic::after {
	content: "";
	position: absolute;
	background: var(--nw-yellow);
	border-radius: 2px;
	transition: transform .25s ease, opacity .25s ease;
}
.nw-faq-ic::before { top: 8px; left: 0; width: 18px; height: 2px; }
.nw-faq-ic::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.nw-faq-item[open] .nw-faq-ic::after { transform: rotate(90deg); opacity: 0; }
.nw-faq-a {
	padding: 0 24px 22px;
	color: var(--nw-muted);
	font-size: 15.5px;
	line-height: 1.75;
}
.nw-faq-a p { margin: 0; }

/* ---- Blog ---- */
.nw-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.nw-blog-card {
	background: var(--nw-card);
	border: 1px solid #1c1c20;
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.nw-blog-card:hover {
	transform: translateY(-6px);
	border-color: var(--nw-yellow);
	box-shadow: 0 22px 50px -22px rgba(0,0,0,0.85);
}
.nw-blog-thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.nw-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.nw-blog-card:hover .nw-blog-thumb img { transform: scale(1.06); }
.nw-blog-thumb-ph {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #15161b, #0c0c0e);
}
.nw-blog-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.nw-blog-date {
	color: var(--nw-yellow);
	font-family: var(--nw-font-head);
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
}
.nw-blog-title {
	font-family: var(--nw-font-head);
	font-size: 21px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -.01em;
	margin: 0;
}
.nw-blog-title a { color: var(--nw-white); transition: color .2s ease; }
.nw-blog-title a:hover { color: var(--nw-yellow); }
.nw-blog-excerpt { color: var(--nw-muted); font-size: 15px; line-height: 1.7; margin: 0; }
.nw-blog-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--nw-yellow);
	font-family: var(--nw-font-head);
	font-size: 14px;
	font-weight: 700;
	margin-top: auto;
	padding-top: 6px;
}
.nw-blog-more:hover { gap: 11px; }

@media (max-width: 900px) {
	.nw-channels-grid { grid-template-columns: repeat(4, 1fr); }
	.nw-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Mobile: blog becomes a compact list — small image left, aligned with the title. */
@media (max-width: 560px) {
	.nw-channels-grid { grid-template-columns: repeat(2, 1fr); }
	.nw-blog-grid { grid-template-columns: 1fr; gap: 14px; }
	.nw-blog-card {
		flex-direction: row;
		align-items: flex-start;
		border-radius: 12px;
	}
	.nw-blog-card:hover { transform: none; box-shadow: none; }
	.nw-blog-card:hover .nw-blog-thumb img { transform: none; }
	.nw-blog-thumb {
		flex: 0 0 116px;
		width: 116px;
		aspect-ratio: 1 / 1;
	}
	.nw-blog-body { padding: 12px 14px; gap: 5px; justify-content: flex-start; }
	.nw-blog-date { font-size: 12px; }
	.nw-blog-title { font-size: 16px; line-height: 1.25; }
	.nw-blog-excerpt { display: none; }
	.nw-blog-more { display: none; }
}

/* ==========================================================================
   LIGHT theme for standalone pages: Pricing / Channel List / FAQ / Blog
   Scoped to non-home pages so the home landing stays dark.
   ========================================================================== */
body:not(.home) .nw-section.nw-pricing,
body:not(.home) .nw-section.nw-channels,
body:not(.home) .nw-section.nw-faq,
body:not(.home) .nw-section.nw-blog {
	background: #f5f6f8;
	color: #14151a;
	padding: 92px 0;
}
body:not(.home) .nw-pricing .nw-h2,
body:not(.home) .nw-channels .nw-h2,
body:not(.home) .nw-faq .nw-h2,
body:not(.home) .nw-blog .nw-h2 {
	color: #14151a;
	font-size: clamp(32px, 4.4vw, 48px);
	letter-spacing: -0.02em;
	margin-bottom: 14px;
}
body:not(.home) .nw-section-sub { color: #5a5d66; font-size: 18px; margin-bottom: 48px; }

/* Pricing (light cards) */
body:not(.home) .nw-price-card {
	background: #fff;
	border: 1px solid #e6e8ee;
	box-shadow: 0 18px 44px -28px rgba(20, 21, 26, 0.28);
}
body:not(.home) .nw-price-card:hover {
	border-color: rgba(255, 184, 0, 0.6);
	box-shadow: 0 0 0 1px rgba(255, 184, 0, 0.35), 0 24px 56px -22px rgba(255, 184, 0, 0.5);
}
body:not(.home) .nw-price-amount { color: #14151a; }
body:not(.home) .nw-price-period { color: #5a5d66; }
body:not(.home) .nw-price-list li { color: #14151a; }
body:not(.home) .nw-li-ic { color: #0f9d58; }
body:not(.home) .nw-price-card-featured { border-color: rgba(255, 184, 0, 0.65); }
body:not(.home) .nw-price-details-link { color: #5a5d66; }
body:not(.home) .nw-price-details-link:hover { color: #c98a00; border-bottom-color: #c98a00; }

/* Channel List */
body:not(.home) .nw-channel-tile {
	background: #fff;
	border: 1px solid #e6e8ee;
	box-shadow: 0 12px 30px -22px rgba(20, 21, 26, 0.25);
}
body:not(.home) .nw-channel-tile:hover {
	border-color: rgba(255, 184, 0, 0.6);
	box-shadow: 0 18px 40px -18px rgba(255, 184, 0, 0.4);
}
body:not(.home) .nw-channel-name { color: #14151a; }

/* FAQ */
body:not(.home) .nw-faq-item { background: #fff; border: 1px solid #e6e8ee; }
body:not(.home) .nw-faq-q { color: #14151a; font-size: 18px; }
body:not(.home) .nw-faq-a { color: #5a5d66; }

/* Blog */
body:not(.home) .nw-blog-card {
	background: #fff;
	border: 1px solid #e6e8ee;
}
body:not(.home) .nw-blog-card:hover { border-color: rgba(245, 179, 1, 0.7); box-shadow: 0 24px 54px -26px rgba(20, 21, 26, 0.3); }
body:not(.home) .nw-blog-title a { color: #14151a; }
body:not(.home) .nw-blog-more { color: #c98a00; }
body:not(.home) .nw-blog-title a:hover { color: #c98a00; }
body:not(.home) .nw-blog-excerpt { color: #5a5d66; }
body:not(.home) .nw-blog-date { color: #c98a00; }
body:not(.home) .nw-blog-thumb-ph { background: linear-gradient(135deg, #e9ebf0, #dfe2e8); }

/* ==========================================================================
   Setup Guide
   ========================================================================== */
.nw-section.nw-setup {
	background: #ffffff;
	color: #0c0d12;
	padding: 88px 0;
}
.nw-setup .nw-h2 { color: #0c0d12; font-weight: 800; }
.nw-setup .nw-section-sub { color: #5a5d66; }
.nw-setup-creds {
	max-width: 720px;
	margin: 0 auto 40px;
	text-align: center;
	font-size: 15.5px;
	color: #41444d;
}
.nw-setup-creds strong { color: #0c0d12; font-weight: 700; }

/* Device selector — bold white tiles */
.nw-dg-radio { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.nw-dg-tiles {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	margin-bottom: 44px;
}
.nw-dg-tiles label.nw-setup-device {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	background: transparent;
	border: none;
	border-radius: 16px;
	padding: 26px 12px;
	cursor: pointer;
	text-align: center;
}
.nw-dg-tiles label.nw-setup-device img {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: #000;
	object-fit: contain;
	padding: 16px;
	box-sizing: border-box;
	box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.nw-dg-tiles label.nw-setup-device span {
	font-family: var(--nw-font-head);
	font-weight: 700;
	font-size: 14px;
	color: #0c0d12;
	line-height: 1.3;
}
.nw-dg-check { display: none; }

/* Guide panel + steps */
.nw-dg-panel { display: none; }
.nw-dg-panel-head {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0 0 26px;
}
.nw-dg-panel-title {
	font-family: var(--nw-font-head);
	font-weight: 800;
	font-size: 26px;
	color: #0c0d12;
	text-align: left;
	margin: 0;
}
.nw-dg-apps {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff8e6;
	border: 1px solid #ffe6a3;
	color: #6b5200;
	font-family: var(--nw-font-head);
	font-weight: 600;
	font-size: 13px;
	padding: 7px 14px;
	border-radius: 999px;
}
.nw-dg-apps .nw-dg-apps-ic { width: 15px; height: 15px; color: #d39e00; }
.nw-setup-steps,
.nw-dg-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 840px;
}
.nw-setup-step {
	display: flex;
	align-items: center;
	gap: 22px;
	background: transparent;
	border: 0;
	border-bottom: 1px solid #ededf2;
	border-radius: 0;
	padding: 20px 2px;
}
.nw-setup-step:last-child { border-bottom: 0; }
.nw-setup-num {
	flex: 0 0 54px;
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: #0c0d12;
	color: #fff;
	font-family: var(--nw-font-head);
	font-weight: 800;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nw-setup-step-text {
	color: #0c0d12;
	font-family: var(--nw-font-head);
	font-weight: 600;
	font-size: 16.5px;
	line-height: 1.55;
	margin: 0;
}

/* Help / troubleshooting */
.nw-setup-help {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 34px;
	align-items: center;
	background: #fafbfc;
	border: 1px solid #eceef3;
	border-radius: 16px;
	padding: 32px 34px;
	margin-top: 50px;
}
.nw-setup-sub {
	font-family: var(--nw-font-head);
	font-weight: 800;
	font-size: 22px;
	color: #0c0d12;
	text-align: left;
	margin: 0 0 16px;
}
.nw-setup-tips .nw-price-list { padding: 0; }
.nw-setup-tips .nw-price-list li { color: #14151a; font-size: 15px; }
.nw-setup-tips .nw-li-ic { color: #0f9d58; }
.nw-setup-cta { width: 100%; max-width: 320px; margin-left: auto; }

@media (max-width: 900px) {
	.nw-dg-tiles { grid-template-columns: repeat(3, 1fr); }
	.nw-setup-steps,
	.nw-dg-steps { grid-template-columns: 1fr; }
	.nw-setup-help { grid-template-columns: 1fr; gap: 22px; }
	.nw-setup-cta { margin: 0; max-width: none; }
}
@media (max-width: 540px) {
	.nw-section.nw-setup { padding: 58px 0; }
	.nw-dg-tiles { grid-template-columns: repeat(2, 1fr); }
	.nw-dg-panel-title { font-size: 22px; }
	.nw-setup-step { gap: 16px; padding: 16px 0; align-items: flex-start; }
	.nw-setup-num { flex-basis: 44px; width: 44px; height: 44px; font-size: 18px; border-radius: 12px; }
	.nw-setup-step-text { font-size: 15.5px; }
}

/* ==========================================================================
   Top announcement bar + Trust strip + Guarantee + Footer payments
   ========================================================================== */
.nw-topbar {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1100;
	height: 38px;
	background: #0a0a0b;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	font-family: var(--nw-font-head);
}
/* When a topbar precedes the header, push the header (and spacer) down. */
.nw-topbar ~ .nw-header,
.nw-topbar ~ .nw-header-solid { top: 38px; }
.nw-topbar ~ .nw-header-spacer { height: 126px; }
.nw-topbar-inner {
	max-width: 1200px;
	height: 38px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}
.nw-topbar-items { display: flex; align-items: center; }
.nw-topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #8a8a92;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	white-space: nowrap;
}
.nw-topbar-item:not(:last-child)::after {
	content: "";
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #3a3a40;
	margin: 0 18px;
}
.nw-topbar-rating { color: #cfcfcf; }
.nw-topbar-item .nw-ic { width: 13px; height: 13px; color: var(--nw-yellow); display: inline-flex; }
.nw-topbar-item .nw-ic svg { width: 100%; height: 100%; }
.nw-topbar-cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--nw-yellow);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
}
.nw-topbar-arrow { transition: transform .2s ease; }
.nw-topbar-cta:hover .nw-topbar-arrow { transform: translateX(4px); }

/* Trust strip */
.nw-section.nw-trust { padding: 40px 0; }
.nw-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.nw-trust-item {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--nw-card);
	border: 1px solid #1c1c20;
	border-radius: 8px;
	padding: 20px 22px;
}
.nw-trust-ic { width: 32px; height: 32px; flex: 0 0 32px; color: var(--nw-yellow); display: inline-flex; }
.nw-trust-ic svg { width: 100%; height: 100%; }
.nw-trust-txt { display: flex; flex-direction: column; gap: 2px; }
.nw-trust-title { font-family: var(--nw-font-head); font-weight: 700; font-size: 16px; color: var(--nw-white); }
.nw-trust-sub { font-size: 13px; color: var(--nw-muted); }

/* Guarantee */
.nw-guarantee-panel {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	background: var(--nw-card);
	border: 1px solid rgba(255, 184, 0, 0.3);
	border-radius: 12px;
	padding: 34px 38px;
}
.nw-guarantee-ic { width: 56px; height: 56px; flex: 0 0 56px; color: var(--nw-yellow); display: inline-flex; }
.nw-guarantee-ic svg { width: 100%; height: 100%; }
.nw-guarantee-title { font-family: var(--nw-font-head); font-weight: 800; font-size: 26px; color: var(--nw-white); margin: 0 0 6px; }
.nw-guarantee-text { color: var(--nw-muted); font-size: 16px; line-height: 1.6; margin: 0; }
.nw-guarantee-cta { white-space: nowrap; height: 56px; padding: 0 28px; }

/* Footer payments */
.nw-footer-pay {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin: 22px 0 6px;
}
.nw-footer-pay-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--nw-muted);
	font-size: 13px;
}
.nw-footer-pay-label .nw-ic { width: 15px; height: 15px; color: var(--nw-wa); display: inline-flex; }
.nw-footer-pay-label .nw-ic svg { width: 100%; height: 100%; }
.nw-footer-pay-list { display: flex; flex-wrap: wrap; gap: 8px; }
.nw-pay-badge {
	font-family: var(--nw-font-head);
	font-weight: 600;
	font-size: 12px;
	color: #cfcfcf;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	padding: 6px 12px;
}

/* Light variants on standalone pages */
body:not(.home) .nw-section.nw-trust,
body:not(.home) .nw-section.nw-guarantee { background: #f6f7f8; }
body:not(.home) .nw-trust-item,
body:not(.home) .nw-guarantee-panel { background: #fff; border-color: #e7e9ee; }
body:not(.home) .nw-trust-title,
body:not(.home) .nw-guarantee-title { color: #14151a; }
body:not(.home) .nw-trust-sub,
body:not(.home) .nw-guarantee-text { color: #5a5d66; }

/* Responsive */
@media (max-width: 900px) {
	.nw-trust-grid { grid-template-columns: repeat(2, 1fr); }
	.nw-guarantee-panel { grid-template-columns: 1fr; text-align: center; gap: 18px; justify-items: center; }
	.nw-guarantee-cta { width: 100%; max-width: 320px; }
}
@media (max-width: 768px) {
	.nw-topbar { display: none; }
	.nw-topbar ~ .nw-header,
	.nw-topbar ~ .nw-header-solid { top: 0; }
	.nw-topbar ~ .nw-header-spacer { height: 88px; }
}
@media (max-width: 540px) {
	.nw-trust-grid { grid-template-columns: 1fr; }
}
