/* ==========================================================================
   NineWickets — main stylesheet
   Colors & fonts come from CSS variables injected via the Customizer.
   ========================================================================== */

:root {
	--nw-primary: #FFC400;
	--nw-primary-dark: #FFB300;
	--nw-dark: #15161A;
	--nw-dark-soft: #23252C;
	--nw-accent: #21C15E;
	--nw-section-alt: #FFF8E1;
	--nw-text: #1A1A1A;
	--nw-body-font: "Hind Siliguri", sans-serif;
	--nw-heading-font: "Anek Bangla", sans-serif;
	--nw-radius: 18px;
	--nw-muted: #6b6f76;
	--nw-border: #ececec;
	--nw-shadow: 0 14px 40px rgba(20, 22, 30, .08);
	--nw-container: 1200px;
	--nw-section-y: 72px;
	--nw-gutter: 20px;
	--nw-head-mb: 44px;
}

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

html, body { overflow-x: hidden; }

body {
	margin: 0;
	font-family: var(--nw-body-font);
	color: var(--nw-text);
	background: #fff;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: var(--nw-heading-font); line-height: 1.25; margin: 0 0 .5em; font-weight: 800; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.nw-container { width: 100%; max-width: var(--nw-container); margin: 0 auto; padding: 0 var(--nw-gutter); }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.nw-skip-link { position: absolute; left: -9999px; top: 0; background: var(--nw-dark); color: #fff; padding: 10px 16px; z-index: 999; }
.nw-skip-link:focus { left: 8px; top: 8px; }

/* ---------- Buttons ---------- */
.nw-btn {
	display: inline-flex; align-items: center; gap: 8px; justify-content: center;
	padding: 13px 26px; border-radius: 999px; font-weight: 700; font-family: var(--nw-body-font);
	border: 0; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
	font-size: 15px; line-height: 1;
}
.nw-btn:hover { transform: translateY(-2px); }
.nw-btn-sm { padding: 10px 18px; font-size: 14px; }
.nw-btn-primary { background: var(--nw-primary); color: var(--nw-dark); box-shadow: 0 8px 20px rgba(255, 196, 0, .35); }
.nw-btn-dark { background: var(--nw-dark); color: #fff; }
/* ==========================================================================
   Premium animated WhatsApp accent button
   ========================================================================== */
.nw-btn-accent {
	position: relative; isolation: isolate; color: #fff;
	padding: 13px 26px 13px 12px; gap: 11px;
	background: linear-gradient(120deg, #25D366 0%, #1eb558 45%, #0f9d52 100%);
	background-size: 200% 200%;
	box-shadow: 0 12px 28px rgba(18,160,80,.45), inset 0 1px 0 rgba(255,255,255,.4), inset 0 -2px 6px rgba(0,0,0,.14);
	animation: nw-accent-flow 5s ease infinite, nw-accent-pulse 2.8s ease-in-out infinite;
}
.nw-btn-accent.nw-btn-sm { padding: 10px 18px 10px 10px; }
@keyframes nw-accent-flow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes nw-accent-pulse {
	0%,100% { box-shadow: 0 12px 28px rgba(18,160,80,.45), inset 0 1px 0 rgba(255,255,255,.4), inset 0 -2px 6px rgba(0,0,0,.14); }
	50%     { box-shadow: 0 18px 40px rgba(18,160,80,.68), inset 0 1px 0 rgba(255,255,255,.45), inset 0 -2px 6px rgba(0,0,0,.14); }
}
/* animated gradient border ring */
.nw-btn-accent::before {
	content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.6px; z-index: 2; pointer-events: none;
	background: linear-gradient(120deg, #d7fff0, #25D366 30%, #ffffff 50%, #128a47 70%, #d7fff0);
	background-size: 260% 260%;
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor; mask-composite: exclude;
	animation: nw-accent-border 4.5s linear infinite;
}
@keyframes nw-accent-border { 0% { background-position: 0% 50%; } 100% { background-position: 260% 50%; } }
/* frosted circular icon badge */
.nw-btn-accent .nw-svg {
	width: 18px; height: 18px; padding: 6px; box-sizing: content-box; border-radius: 50%;
	background: rgba(255,255,255,.22); box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 4px 10px rgba(0,0,0,.16);
	animation: nw-hcta-wiggle 2.8s ease-in-out infinite;
}
.nw-btn-accent:hover { transform: translateY(-3px); filter: brightness(1.07) saturate(1.05); }
.nw-btn-accent:hover::before { animation-duration: 1.6s; }
/* auto shine sweep */
.nw-btn-accent.nw-btn-shine::after { z-index: 1; animation: nw-btn-sweep 4s ease-in-out infinite; }
@keyframes nw-btn-sweep { 0%,68% { transform: translateX(-130%); } 86%,100% { transform: translateX(130%); } }
@media (prefers-reduced-motion: reduce) {
	.nw-btn-accent, .nw-btn-accent::before, .nw-btn-accent .nw-svg, .nw-btn-accent.nw-btn-shine::after { animation: none !important; }
}
.nw-btn-telegram { background: #229ED9; color: #fff; }
.nw-btn-danger { background: var(--nw-danger); color: #fff; }
.nw-ico { font-style: normal; }

/* ---------- Top bar ---------- */
.nw-topbar { background: var(--nw-dark); color: #d8dadf; font-size: 13.5px; }
.nw-topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 16px; flex-wrap: wrap; }
.nw-topbar-right { display: flex; align-items: center; gap: 18px; }
.nw-topbar-menu { display: flex; gap: 16px; }
.nw-topbar-menu a:hover { color: var(--nw-primary); }
.nw-topbar-cta { color: var(--nw-primary); font-weight: 700; }

/* ---------- Header ---------- */
.nw-header { position: sticky; top: 0; z-index: 100; background: var(--nw-primary); box-shadow: 0 4px 18px rgba(0,0,0,.08); }
.nw-header-inner { display: flex; align-items: center; gap: 24px; min-height: 70px; }
.nw-branding { display: flex; align-items: center; }
.nw-logo-text { font-family: var(--nw-heading-font); font-weight: 800; font-size: 26px; color: var(--nw-dark); letter-spacing: -.5px; }
.custom-logo { max-height: 48px; width: auto; }

.nw-nav { margin-left: auto; }
.nw-menu { display: flex; align-items: center; gap: 26px; }
.nw-menu a { font-weight: 600; color: var(--nw-dark); font-size: 15px; position: relative; padding: 6px 0; }
.nw-menu a:hover { opacity: .7; }
.nw-menu .sub-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 200px; box-shadow: var(--nw-shadow); border-radius: 12px; padding: 8px; z-index: 50; }
.nw-menu li { position: relative; }
.nw-menu li:hover > .sub-menu { display: block; }
.nw-menu .sub-menu a { display: block; padding: 8px 12px; border-radius: 8px; }
.nw-menu .sub-menu a:hover { background: var(--nw-section-alt); }

.nw-header-cta { display: flex; align-items: center; gap: 12px; }

/* special premium header CTA */
.nw-hcta { position: relative; display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px 9px 9px; border-radius: 999px; overflow: hidden; font-weight: 800; font-size: 14px; color: #fff; white-space: nowrap;
	background: linear-gradient(135deg, var(--nw-dark), var(--nw-dark-soft)); box-shadow: 0 8px 22px rgba(21,22,26,.28); transition: transform .18s ease, box-shadow .18s ease; }
.nw-hcta::before { content: ""; position: absolute; inset: 0; border-radius: 999px; padding: 1.5px; background: linear-gradient(135deg, var(--nw-primary), var(--nw-accent), var(--nw-primary)); background-size: 200% 200%; animation: nw-borderflow 5s ease infinite; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.nw-hcta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(21,22,26,.38); }
.nw-hcta-shine { position: absolute; top: 0; left: -60%; width: 45%; height: 100%; pointer-events: none; background: linear-gradient(105deg, transparent, rgba(255,255,255,.35) 50%, transparent); transform: skewX(-16deg); animation: nw-sweep 4.5s ease-in-out infinite; }
.nw-hcta-ico { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--nw-primary), var(--nw-primary-dark)); color: var(--nw-dark); flex-shrink: 0; box-shadow: 0 4px 12px rgba(255,179,0,.45); }
.nw-hcta-ico .nw-svg { width: 18px; height: 18px; animation: nw-hcta-wiggle 2.6s ease-in-out infinite; }
@keyframes nw-hcta-wiggle { 0%,88%,100% { transform: rotate(0); } 91% { transform: rotate(-12deg); } 94% { transform: rotate(12deg); } 97% { transform: rotate(-6deg); } }
.nw-hcta-ping { position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(255,196,0,.55); animation: nw-hcta-ping 2s ease-out infinite; }
@keyframes nw-hcta-ping { 0% { box-shadow: 0 0 0 0 rgba(255,196,0,.5); } 100% { box-shadow: 0 0 0 12px rgba(255,196,0,0); } }
.nw-hcta-txt { position: relative; z-index: 1; }
.nw-hcta-dot { position: relative; z-index: 1; width: 8px; height: 8px; border-radius: 50%; background: var(--nw-accent); box-shadow: 0 0 0 3px rgba(33,193,94,.25); animation: nw-pulse 1.6s infinite; flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
	.nw-hcta::before, .nw-hcta-shine, .nw-hcta-ico .nw-svg, .nw-hcta-ping, .nw-hcta-dot { animation: none !important; }
	.nw-hcta-shine { display: none; }
}

/* mobile toggle */
.nw-menu-toggle { display: none; flex-direction: column; gap: 5px; align-items: center; justify-content: center; width: 42px; height: 42px; background: var(--nw-dark); border: 0; padding: 0; border-radius: 12px; cursor: pointer; box-shadow: 0 6px 16px rgba(21,22,26,.22); }
.nw-menu-toggle .nw-bar { width: 20px; height: 2px; background: #fff; display: block; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }

/* ---- Premium mobile drawer ---- */
body.nw-menu-open { overflow: hidden; }
body.nw-menu-open .nw-float { display: none; }
.nw-mobile-menu { position: fixed; inset: 0; z-index: 260; display: none; }
.nw-mobile-menu:not([hidden]) { display: block; }
.nw-mobile-menu::before { content: ""; position: absolute; inset: 0; background: rgba(10,11,14,.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); animation: nw-mm-fade .28s ease; }
@keyframes nw-mm-fade { from { opacity: 0; } to { opacity: 1; } }
.nw-mobile-panel { position: absolute; top: 0; right: 0; bottom: 0; width: 86%; max-width: 360px; display: flex; flex-direction: column; padding: 18px 20px calc(20px + env(safe-area-inset-bottom)); overflow-y: auto;
	background: radial-gradient(120% 60% at 100% 0, rgba(255,179,0,.10), transparent 60%), linear-gradient(180deg, #1b1d24, var(--nw-dark));
	border-left: 1px solid rgba(255,255,255,.06); box-shadow: -24px 0 60px rgba(0,0,0,.5); animation: nw-mm-slide .34s cubic-bezier(.2,.75,.25,1); }
@keyframes nw-mm-slide { from { transform: translateX(100%); } to { transform: none; } }
.nw-mobile-panel::-webkit-scrollbar { width: 0; }

.nw-mobile-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
.nw-mobile-head .nw-logo-text { color: #fff; font-weight: 800; font-size: 18px; }
.nw-mobile-head img, .nw-mobile-head .custom-logo { max-height: 38px; width: auto; }
.nw-mobile-close { position: relative; flex-direction: row; width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.07); box-shadow: none; }
.nw-mobile-close::before, .nw-mobile-close::after { content: ""; position: absolute; top: 50%; left: 50%; width: 17px; height: 2px; background: #fff; border-radius: 2px; }
.nw-mobile-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.nw-mobile-close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.nw-mobile-close:hover { background: rgba(255,255,255,.14); }

.nw-mobile-nav { flex: 1 1 auto; }
.nw-mobile-list { display: flex; flex-direction: column; list-style: none; margin: 10px 0 0; padding: 0; }
.nw-mobile-list li { border-bottom: 1px solid rgba(255,255,255,.07); }
.nw-mobile-list a { position: relative; display: block; color: #eef0f3; padding: 15px 8px 15px 2px; font-weight: 700; font-size: 16px; letter-spacing: .2px; transition: color .18s ease, padding .18s ease; }
.nw-mobile-list > li > a::after { content: ""; position: absolute; right: 6px; top: 50%; width: 7px; height: 7px; border-right: 2px solid var(--nw-primary); border-bottom: 2px solid var(--nw-primary); transform: translateY(-50%) rotate(-45deg); opacity: .55; transition: transform .18s ease, opacity .18s ease; }
.nw-mobile-list a:hover { color: #fff; padding-left: 8px; }
.nw-mobile-list > li > a:hover::after { transform: translateY(-50%) translateX(3px) rotate(-45deg); opacity: 1; }
.nw-mobile-list .current-menu-item > a { color: var(--nw-primary); }
.nw-mobile-list .sub-menu { list-style: none; margin: 0; padding: 0 0 6px; }
.nw-mobile-list .sub-menu a { padding: 11px 8px 11px 16px; font-size: 14.5px; font-weight: 600; opacity: .82; }
.nw-mobile-list .sub-menu a::after { display: none; }

.nw-mobile-contact { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); }
.nw-mobile-contact-label { display: block; color: #9aa0a8; font-size: 12px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; margin-bottom: 12px; }
.nw-mobile-contact-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.nw-mobile-cbtn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 10px; border-radius: 12px; font-weight: 800; font-size: 14px; color: #fff; box-shadow: 0 8px 18px rgba(0,0,0,.3); transition: transform .15s ease, box-shadow .15s ease; }
.nw-mobile-cbtn .nw-svg { width: 18px; height: 18px; }
.nw-mobile-cbtn:hover { transform: translateY(-2px); }
.nw-mc-wa { background: linear-gradient(135deg, #25D366, #128a47); }
.nw-mc-tg { background: linear-gradient(135deg, #2ca5e0, #1c7fb6); }
.nw-mobile-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.nw-mobile-soc { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); transition: transform .15s ease, background .15s ease; }
.nw-mobile-soc .nw-svg { width: 17px; height: 17px; }
.nw-mobile-soc:hover { transform: translateY(-2px); background: rgba(255,179,0,.18); color: var(--nw-primary); }

/* ---------- Hero (premium animated) ---------- */
.nw-hero {
	position: relative; overflow: hidden; padding: 76px 0 96px;
	background:
		radial-gradient(1200px 600px at 78% -10%, #FFD84D 0%, rgba(255,216,77,0) 60%),
		linear-gradient(135deg, var(--nw-primary) 0%, var(--nw-primary-dark) 55%, #f0a500 100%);
}
.nw-hero-inner { display: grid; grid-template-columns: 1.25fr .95fr; gap: 48px; align-items: center; position: relative; z-index: 3; }

/* animated background layers */
.nw-hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.nw-orb { position: absolute; border-radius: 50%; filter: blur(18px); opacity: .55; mix-blend-mode: soft-light; }
.nw-orb-1 { width: 360px; height: 360px; right: -90px; top: -120px; background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,0)); animation: nw-float 9s ease-in-out infinite; }
.nw-orb-2 { width: 280px; height: 280px; left: -80px; bottom: -100px; background: radial-gradient(circle at 50% 50%, #fff7d6, rgba(255,255,255,0)); animation: nw-float 11s ease-in-out infinite reverse; }
.nw-orb-3 { width: 200px; height: 200px; left: 42%; top: 8%; background: radial-gradient(circle at 50% 50%, #ffe89a, rgba(255,255,255,0)); animation: nw-float 7s ease-in-out infinite; }
.nw-hero-dots { position: absolute; inset: 0; opacity: .35;
	background-image: radial-gradient(rgba(21,22,26,.16) 1.4px, transparent 1.4px);
	background-size: 22px 22px; -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 70%); mask-image: linear-gradient(180deg, #000 0%, transparent 70%); }
.nw-fico { position: absolute; color: rgba(21,22,26,.16); display: inline-flex; }
.nw-fico-1 { left: 6%; top: 22%; animation: nw-float 6s ease-in-out infinite; }
.nw-fico-2 { left: 46%; top: 14%; animation: nw-float 8s ease-in-out infinite .4s; }
.nw-fico-3 { right: 8%; bottom: 26%; animation: nw-float 7s ease-in-out infinite .8s; }
.nw-fico-4 { left: 30%; bottom: 12%; animation: nw-float 9s ease-in-out infinite .2s; }

.nw-hero-badge {
	display: inline-flex; align-items: center; gap: 8px; background: var(--nw-dark); color: var(--nw-primary);
	padding: 9px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 700; margin-bottom: 20px;
	box-shadow: 0 8px 22px rgba(21,22,26,.25); position: relative; overflow: hidden;
}
.nw-hero-badge::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%); transform: translateX(-120%); animation: nw-shine 3.4s ease-in-out infinite; }
.nw-badge-svg { color: var(--nw-accent); }
.nw-hero-title { font-size: clamp(28px, 7vw, 60px); line-height: 1.05; color: var(--nw-dark); margin-bottom: 10px; letter-spacing: -1px; }
.nw-hero-role { font-size: clamp(17px, 2vw, 21px); font-weight: 700; color: #5a4a12; margin: 0 0 16px; }
.nw-hero-text { font-size: 17.5px; color: #4a3f1c; max-width: 540px; margin: 0 0 28px; }
.nw-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.nw-hero-actions .nw-btn { padding: 15px 28px; font-size: 15.5px; box-shadow: 0 12px 26px rgba(21,22,26,.18); }
.nw-hero-actions .nw-btn svg { flex-shrink: 0; }

/* shine sweep on buttons */
.nw-btn-shine { position: relative; overflow: hidden; }
.nw-btn-shine::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.35) 50%, transparent 65%); transform: translateX(-130%); }
.nw-btn-shine:hover::after { transform: translateX(130%); transition: transform .7s ease; }

.nw-hero-counters { display: flex; gap: 14px; flex-wrap: wrap; }
.nw-counter {
	position: relative; background: rgba(21,22,26,.92); color: #fff; border-radius: 16px; padding: 18px 22px;
	min-width: 132px; text-align: center; flex: 1; border: 1px solid rgba(255,255,255,.08);
	box-shadow: 0 14px 30px rgba(21,22,26,.22); backdrop-filter: blur(4px); overflow: hidden;
}
.nw-counter::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--nw-primary), var(--nw-accent)); }
.nw-counter-num { display: block; font-family: var(--nw-heading-font); font-size: 32px; font-weight: 800; color: var(--nw-primary); line-height: 1; }
.nw-counter-label { font-size: 13.5px; color: #c9ccd2; margin-top: 6px; display: block; }

/* hero entrance animation */
.nw-anim { opacity: 0; transform: translateY(26px); animation: nw-rise .7s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: var(--d, 0s); }
@media (prefers-reduced-motion: reduce) { .nw-anim { opacity: 1; transform: none; animation: none; } .nw-orb, .nw-fico, .nw-portrait-spin, .nw-portrait-glow, .nw-portrait-chip, .nw-vseal { animation: none !important; } }

/* bottom wave divider */
.nw-hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; height: 60px; z-index: 2;
	background: #fff; -webkit-mask: radial-gradient(70px 60px at 50% 0, transparent 98%, #000) repeat-x; mask: radial-gradient(70px 60px at 50% 0, transparent 98%, #000) repeat-x; -webkit-mask-size: 140px 60px; mask-size: 140px 60px; }

/* ---- Hero portrait (premium) ---- */
.nw-hero-portrait { display: flex; justify-content: center; align-items: center; }
.nw-portrait-stage { position: relative; width: 340px; max-width: 84vw; aspect-ratio: 1; }
.nw-portrait-glow { position: absolute; inset: -18px; border-radius: 50%; background: radial-gradient(circle, rgba(33,193,94,.5), rgba(255,196,0,.25) 45%, transparent 70%); filter: blur(22px); animation: nw-pulse-glow 3.2s ease-in-out infinite; }
.nw-portrait-spin { position: absolute; inset: -10px; border-radius: 32px; background: conic-gradient(from 0deg, var(--nw-accent), var(--nw-primary), #fff, var(--nw-accent)); animation: nw-spin 8s linear infinite; -webkit-mask: linear-gradient(#000,#000); padding: 4px; opacity: .9; }
.nw-portrait-spin::after { content: ""; position: absolute; inset: 4px; border-radius: 28px; background: linear-gradient(135deg, var(--nw-primary), var(--nw-primary-dark)); }
.nw-portrait-ring { position: absolute; inset: 4px; border-radius: 26px; background: #fff; padding: 10px; box-shadow: 0 26px 60px rgba(21,22,26,.32); z-index: 2; }
.nw-portrait-img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; display: block; }
.nw-portrait-fallback { display: flex; align-items: center; justify-content: center; background: var(--nw-dark); color: var(--nw-primary); font-family: var(--nw-heading-font); font-weight: 800; font-size: 104px; }
.nw-portrait-verified { position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; gap: 6px; background: #fff; color: var(--nw-dark); font-size: 13px; font-weight: 800; padding: 6px 14px 6px 8px; border-radius: 999px; box-shadow: 0 12px 26px rgba(21,22,26,.22); white-space: nowrap; z-index: 4; border: 1px solid rgba(0,0,0,.04); }
.nw-vseal { display: inline-block; vertical-align: middle; flex-shrink: 0; filter: drop-shadow(0 2px 5px rgba(33,193,94,.45)); }
.nw-portrait-verified .nw-vseal { animation: nw-vpulse 2.6s ease-in-out infinite; }
@keyframes nw-vpulse { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.1) rotate(8deg); } }

/* floating trust chips — kept to the outer side edges so the photo stays clear */
.nw-portrait-chip { position: absolute; z-index: 3; background: #fff; color: var(--nw-dark); font-weight: 700; font-size: 13.5px; padding: 9px 15px; border-radius: 12px; box-shadow: 0 12px 28px rgba(21,22,26,.2); white-space: nowrap; }
.nw-chip-1 { top: 4%; left: -11%; animation: nw-float 5s ease-in-out infinite; }
.nw-chip-2 { top: 40%; right: -13%; animation: nw-float 6.5s ease-in-out infinite .5s; }
.nw-chip-3 { top: 74%; left: -11%; animation: nw-float 5.8s ease-in-out infinite .9s; }

/* keyframes */
@keyframes nw-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes nw-spin { to { transform: rotate(360deg); } }
@keyframes nw-pulse-glow { 0%,100% { opacity: .65; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes nw-shine { 0% { transform: translateX(-120%); } 60%,100% { transform: translateX(220%); } }
@keyframes nw-rise { to { opacity: 1; transform: none; } }

/* agent card (hero) */
.nw-agent-card { background: #fff; border-radius: 22px; padding: 22px; box-shadow: var(--nw-shadow); }
.nw-agent-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.nw-agent-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--nw-primary); }
.nw-agent-photo-fallback { display: inline-flex; align-items: center; justify-content: center; background: var(--nw-dark); color: var(--nw-primary); font-weight: 800; font-size: 24px; font-family: var(--nw-heading-font); }
.nw-agent-photo-xs { width: 30px; height: 30px; font-size: 13px; border-width: 2px; }
.nw-agent-name { display: block; font-size: 18px; font-weight: 800; font-family: var(--nw-heading-font); }
.nw-agent-role { display: block; font-size: 13px; color: var(--nw-muted); }
.nw-agent-rating { display: inline-block; color: #f5a623; font-weight: 700; font-size: 14px; }
.nw-agent-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.nw-agent-card-actions .nw-btn { width: 100%; }

/* ---------- Generic section ---------- */
.nw-section { padding: var(--nw-section-y) 0; }
.nw-section-alt { background: var(--nw-section-alt); }
.nw-section-head { text-align: center; max-width: 720px; margin: 0 auto var(--nw-head-mb); }
.nw-eyebrow { display: inline-block; background: var(--nw-dark); color: var(--nw-primary); padding: 6px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 700; letter-spacing: .5px; margin-bottom: 14px; text-transform: uppercase; }
.nw-section-title { font-size: clamp(24px, 3.2vw, 36px); }
.nw-section-subtitle { color: var(--nw-muted); font-size: 17px; margin: 8px 0 0; }

/* grids */
.nw-grid { display: grid; gap: 24px; }
.nw-grid-3 { grid-template-columns: repeat(3, 1fr); }
.nw-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* cards */
.nw-card { background: #fff; border: 1px solid var(--nw-border); border-radius: var(--nw-radius); padding: 26px; box-shadow: 0 6px 22px rgba(20,22,30,.05); transition: transform .18s ease, box-shadow .18s ease; }
.nw-card:hover { transform: translateY(-4px); box-shadow: var(--nw-shadow); }
.nw-card-title { font-size: 19px; margin: 0 0 8px; }
.nw-card-text { color: var(--nw-muted); font-size: 15.5px; }
.nw-card-text p { margin: 0 0 8px; }
.nw-pill { background: var(--nw-primary); color: var(--nw-dark); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px; margin-left: auto; align-self: flex-start; }
.nw-pill-verified { background: var(--nw-accent); color: #fff; }

/* agents */
.nw-section-agents { background: linear-gradient(180deg, #fff, var(--nw-section-alt)); }
.nw-agent-tile { display: flex; flex-direction: column; gap: 14px; }
.nw-agent-tile-head { display: flex; align-items: center; gap: 12px; }
.nw-agent-tile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
.nw-agent-tile-actions .nw-btn { width: 100%; }

/* trust points / features (premium) */
.nw-feature { position: relative; text-align: left; overflow: hidden; }
.nw-feature::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--nw-primary), var(--nw-accent)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.nw-feature:hover::before { transform: scaleX(1); }
.nw-feature-icon { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg, var(--nw-primary), var(--nw-primary-dark)); color: var(--nw-dark); font-size: 24px; margin-bottom: 16px; box-shadow: 0 10px 24px rgba(255,179,0,.32); transition: transform .25s ease; }
.nw-feature-icon::after { content: ""; position: absolute; inset: 0; border-radius: 16px; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.5), transparent 60%); opacity: .5; }
.nw-feature:hover .nw-feature-icon { transform: translateY(-4px) rotate(-6deg); }
.nw-feature-icon .nw-svg { width: 28px; height: 28px; position: relative; z-index: 1; }

/* steps (premium connected stepper) */
.nw-steps { counter-reset: step; }
.nw-step { background: #fff; border: 1px solid var(--nw-border); border-radius: var(--nw-radius); padding: 36px 22px 28px; text-align: center; position: relative; box-shadow: 0 8px 24px rgba(20,22,30,.05); transition: transform .2s ease, box-shadow .2s ease; }
.nw-step:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(20,22,30,.12); }
.nw-steps .nw-step:not(:last-child)::after { content: ""; position: absolute; top: 60px; right: -16px; width: 32px; height: 2px; border-top: 2px dashed rgba(21,22,26,.18); z-index: 1; }
.nw-step-num { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--nw-dark); color: var(--nw-primary); font-family: var(--nw-heading-font); font-weight: 800; font-size: 22px; margin-bottom: 14px; }

/* find agent */
.nw-find-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.nw-find-media img { border-radius: 22px; box-shadow: var(--nw-shadow); width: 100%; object-fit: cover; }
.nw-find-placeholder { font-size: 120px; text-align: center; background: #fff; border-radius: 22px; padding: 60px; box-shadow: var(--nw-shadow); }
.nw-checklist { display: grid; gap: 12px; margin: 22px 0 26px; }
.nw-checklist li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; }
.nw-checklist-lg li { font-size: 17px; }
.nw-check { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: var(--nw-accent); color: #fff; font-size: 14px; flex-shrink: 0; }

/* success stories (premium) */
.nw-success-card { position: relative; display: flex; flex-direction: column; gap: 16px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.nw-success-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--nw-primary), var(--nw-accent)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.nw-success-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(20,22,30,.12); border-color: rgba(255,196,0,.4); }
.nw-success-card:hover::before { transform: scaleX(1); }
.nw-success-card::after { content: ""; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle, rgba(255,196,0,.16), transparent 70%); opacity: 0; transition: opacity .25s ease; pointer-events: none; }
.nw-success-card:hover::after { opacity: 1; }
.nw-success-quote { position: absolute; top: 8px; right: 18px; font-family: var(--nw-heading-font); font-size: 96px; line-height: 1; color: var(--nw-primary); opacity: .18; pointer-events: none; z-index: 1; }
.nw-success-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.nw-stars { display: inline-flex; gap: 2px; }
.nw-stars .on { color: #f5a623; }
.nw-stars .off { color: #e2e2e2; }
.nw-stars .nw-svg { width: 16px; height: 16px; }
.nw-success-text { color: #45494f; font-size: 15.5px; position: relative; z-index: 1; }
.nw-success-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--nw-border); }
.nw-success-avatar { position: relative; width: 48px; height: 48px; flex-shrink: 0; }
.nw-success-avatar img, .nw-success-avatar-fallback { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--nw-primary); display: flex; align-items: center; justify-content: center; }
.nw-success-avatar-fallback { background: var(--nw-dark); color: var(--nw-primary); font-weight: 800; font-family: var(--nw-heading-font); font-size: 20px; }
.nw-success-check { position: absolute; right: -3px; bottom: -3px; width: 19px; height: 19px; border-radius: 50%; background: var(--nw-accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.nw-success-check .nw-svg { width: 11px; height: 11px; }
.nw-success-meta { display: flex; flex-direction: column; line-height: 1.35; }
.nw-success-meta strong { font-size: 15px; }
.nw-success-loc { display: inline-flex; align-items: center; gap: 4px; font-size: 12.5px; color: var(--nw-muted); }
.nw-success-loc .nw-svg { width: 12px; height: 12px; }
.nw-success-site { margin-left: auto; align-self: center; background: var(--nw-section-alt); color: var(--nw-dark); font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }

/* success stories — two-row auto-play marquee */
.nw-success-marquee { display: grid; gap: 24px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.nw-success-row { overflow: hidden; }
.nw-success-track { display: flex; width: max-content; will-change: transform; }
.nw-success-track .nw-success-card { flex: 0 0 300px; width: 300px; margin-right: 20px; padding: 22px; gap: 13px; }
.nw-success-track .nw-success-text { font-size: 14.5px; }
.nw-success-track .nw-success-text, .nw-success-track .nw-success-text p { display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin: 0; }
.nw-success-track .nw-success-quote { font-size: 78px; top: 6px; right: 16px; }
.nw-success-row-1 .nw-success-track { animation: nw-marq-l 48s linear infinite; }
.nw-success-row-2 .nw-success-track { animation: nw-marq-r 56s linear infinite; }
.nw-success-row:hover .nw-success-track { animation-play-state: paused; }
@keyframes nw-marq-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes nw-marq-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (max-width: 620px) {
	.nw-success-track .nw-success-card { flex-basis: 268px; width: 268px; }
}
@media (prefers-reduced-motion: reduce) {
	.nw-success-row { overflow-x: auto; }
	.nw-success-track { animation: none !important; }
}

/* recent winners — vertical auto-scroll loop (festive) */
.nw-winboard { position: relative; max-width: 720px; margin: 0 auto; border-radius: 24px; overflow: hidden; background: linear-gradient(165deg, #1a1c22, var(--nw-dark)); box-shadow: 0 30px 70px rgba(21,22,26,.35); border: 1px solid transparent; background-clip: padding-box; }
/* animated gradient border */
.nw-winboard::after { content: ""; position: absolute; inset: 0; border-radius: 24px; padding: 1.5px; background: linear-gradient(120deg, var(--nw-primary), transparent 30%, transparent 70%, var(--nw-accent)); background-size: 220% 220%; animation: nw-borderflow 7s ease infinite; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; z-index: 5; }
.nw-winboard::before { content: ""; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 360px; height: 220px; background: radial-gradient(circle, rgba(255,196,0,.28), transparent 70%); pointer-events: none; animation: nw-pulse-glow 3.6s ease-in-out infinite; }
/* diagonal spotlight sweep */
.nw-winboard-spotlight { position: absolute; top: -50%; left: -60%; width: 60%; height: 200%; z-index: 2; pointer-events: none; background: linear-gradient(105deg, transparent, rgba(255,255,255,.06) 45%, rgba(255,255,255,.12) 50%, rgba(255,255,255,.06) 55%, transparent); transform: skewX(-12deg); animation: nw-sweep 6s ease-in-out infinite; }
@keyframes nw-sweep { 0%, 100% { left: -60%; } 55%, 70% { left: 120%; } }
/* floating ৳ coins */
.nw-winboard-coins { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.nw-coin { position: absolute; bottom: -30px; display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #FFE27A, var(--nw-primary-dark)); color: #5a4300; font-weight: 800; font-size: 14px; box-shadow: 0 0 12px rgba(255,196,0,.5); opacity: 0; animation: nw-coinrise linear infinite; }
.nw-coin-0 { left: 10%; animation-duration: 7s; animation-delay: 0s; }
.nw-coin-1 { left: 28%; animation-duration: 9s; animation-delay: 2.5s; }
.nw-coin-2 { left: 46%; animation-duration: 8s; animation-delay: 1s; }
.nw-coin-3 { left: 64%; animation-duration: 10s; animation-delay: 3.5s; }
.nw-coin-4 { left: 80%; animation-duration: 7.5s; animation-delay: 1.8s; }
.nw-coin-5 { left: 92%; animation-duration: 9.5s; animation-delay: 4.2s; }
@keyframes nw-coinrise { 0% { transform: translateY(0) rotate(0deg); opacity: 0; } 10% { opacity: .9; } 90% { opacity: .9; } 100% { transform: translateY(-560px) rotate(320deg); opacity: 0; } }
.nw-winboard-head { position: relative; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,.07); background: rgba(0,0,0,.2); }
.nw-win-trophy { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--nw-primary), var(--nw-primary-dark)); color: var(--nw-dark); box-shadow: 0 8px 20px rgba(255,179,0,.4); animation: nw-trophy-bob 2.6s ease-in-out infinite; }
.nw-win-trophy .nw-svg { width: 22px; height: 22px; }
@keyframes nw-trophy-bob { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-4px) rotate(4deg); } }
.nw-winboard-title { font-family: var(--nw-heading-font); font-weight: 800; font-size: 18px; color: #fff; margin-right: auto; }
.nw-live-tag { display: inline-flex; align-items: center; gap: 7px; background: rgba(229,72,77,.18); color: #ff8a8d; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; padding: 5px 13px; border-radius: 999px; }
.nw-live-tag .nw-live-dot { background: var(--nw-danger); box-shadow: 0 0 0 3px rgba(229,72,77,.25); }
.nw-live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--nw-accent); box-shadow: 0 0 0 4px rgba(33,193,94,.18); animation: nw-pulse 1.6s infinite; flex-shrink: 0; }
@keyframes nw-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.85); } }

.nw-winboard-viewport { position: relative; z-index: 2; height: 384px; overflow: hidden; -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent); }
.nw-winboard-track { display: flex; flex-direction: column; animation: nw-winscroll 26s linear infinite; will-change: transform; }
.nw-winboard:hover .nw-winboard-track { animation-play-state: paused; }
@keyframes nw-winscroll { from { transform: translateY(0); } to { transform: translateY(-50%); } }

.nw-win-row { display: flex; align-items: center; gap: 14px; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,.05); }
.nw-win-rank { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,.06); color: #c9ccd2; font-family: var(--nw-heading-font); font-weight: 800; font-size: 13px; flex-shrink: 0; }
.nw-win-rank .nw-svg { width: 14px; height: 14px; }
.nw-rank-1 { background: linear-gradient(135deg, #FFD24D, #f0a500); color: #5a4300; box-shadow: 0 6px 16px rgba(255,179,0,.45); }
.nw-rank-2 { background: linear-gradient(135deg, #e3e7ec, #aeb6c0); color: #2c2f35; }
.nw-rank-3 { background: linear-gradient(135deg, #f0b487, #cf8047); color: #3a230f; }
.nw-win-avatar { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--nw-dark-soft); border: 2px solid var(--nw-primary); color: var(--nw-primary); font-family: var(--nw-heading-font); font-weight: 800; font-size: 16px; flex-shrink: 0; }
.nw-win-online { position: absolute; right: -1px; bottom: -1px; width: 11px; height: 11px; border-radius: 50%; background: var(--nw-accent); border: 2px solid var(--nw-dark); animation: nw-pulse 1.6s infinite; }
.nw-win-info { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.nw-win-name { color: #fff; font-weight: 700; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nw-win-game { color: #9aa0a8; font-size: 12.5px; }
.nw-win-amount { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0; background: linear-gradient(135deg, rgba(33,193,94,.22), rgba(33,193,94,.1)); color: #43e07d; font-weight: 800; font-size: 14px; padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(33,193,94,.3); box-shadow: 0 6px 16px rgba(33,193,94,.18); }
.nw-win-amount::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.35) 50%, transparent 65%); transform: translateX(-130%); animation: nw-amount-shine 3.4s ease-in-out infinite; }
@keyframes nw-amount-shine { 0%, 30% { transform: translateX(-130%); } 60%, 100% { transform: translateX(130%); } }
.nw-win-amount .nw-svg { width: 13px; height: 13px; position: relative; z-index: 1; }
.nw-win-amount span, .nw-win-amount { z-index: 1; }
.nw-win-trophy { position: relative; }
.nw-win-trophy::before { content: ""; position: absolute; inset: -6px; border-radius: 16px; background: radial-gradient(circle, rgba(255,196,0,.5), transparent 70%); animation: nw-pulse-glow 2.6s ease-in-out infinite; z-index: -1; }
.nw-rank-1 { position: relative; overflow: hidden; }
.nw-rank-1::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,.6) 50%, transparent 60%); transform: translateX(-130%); animation: nw-amount-shine 2.8s ease-in-out infinite; }

/* festive confetti */
.nw-winboard-confetti { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.nw-conf { position: absolute; top: -16px; width: 8px; height: 12px; border-radius: 2px; opacity: .85; animation: nw-confetti 4.5s linear infinite; }
.nw-conf-0 { left: 8%;  background: var(--nw-primary); animation-delay: 0s;   animation-duration: 4s; }
.nw-conf-1 { left: 22%; background: var(--nw-accent);  animation-delay: 1.2s; animation-duration: 5s; }
.nw-conf-2 { left: 38%; background: #ff8a8d;           animation-delay: .6s;  animation-duration: 4.4s; }
.nw-conf-3 { left: 55%; background: var(--nw-primary); animation-delay: 2s;   animation-duration: 5.4s; }
.nw-conf-4 { left: 72%; background: #5ad1ff;           animation-delay: .3s;  animation-duration: 4.2s; }
.nw-conf-5 { left: 88%; background: var(--nw-accent);  animation-delay: 1.6s; animation-duration: 5.2s; }
@keyframes nw-confetti { 0% { transform: translateY(-20px) rotate(0deg); opacity: 0; } 12% { opacity: .9; } 100% { transform: translateY(440px) rotate(540deg); opacity: 0; } }

@media (max-width: 620px) {
	.nw-win-row { padding: 13px 16px; gap: 11px; }
	.nw-win-game { display: none; }
	.nw-winboard-viewport { height: 340px; }
}
@media (prefers-reduced-motion: reduce) {
	.nw-winboard-track { animation: none !important; }
	.nw-winboard-viewport { overflow-y: auto; }
	.nw-conf, .nw-coin, .nw-win-trophy, .nw-win-online, .nw-winboard::after, .nw-winboard::before,
	.nw-winboard-spotlight, .nw-win-amount::after, .nw-win-trophy::before, .nw-rank-1::after { animation: none !important; }
	.nw-winboard-coins, .nw-winboard-spotlight, .nw-winboard-confetti { display: none; }
}

/* social channels (premium) */
.nw-social-card { position: relative; text-align: center; --nw-social: var(--nw-dark); border: 1px solid var(--nw-border); border-top: 4px solid var(--nw-social); overflow: hidden; display: flex; flex-direction: column; align-items: center; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.nw-social-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(20,22,30,.12); }
.nw-social-glow { position: absolute; top: -70px; left: 50%; transform: translateX(-50%); width: 180px; height: 150px; border-radius: 50%; background: radial-gradient(circle, var(--nw-social), transparent 70%); opacity: .12; pointer-events: none; transition: opacity .25s ease; }
.nw-social-card:hover .nw-social-glow { opacity: .22; }
.nw-social-verify { position: absolute; top: 12px; right: 12px; display: inline-flex; align-items: center; justify-content: center; }
.nw-social-verify .nw-vseal { width: 24px; height: 24px; }
.nw-social-icon { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 50%; background: var(--nw-section-alt); color: var(--nw-social); margin: 4px auto 14px; transition: transform .25s ease; box-shadow: 0 10px 24px rgba(20,22,30,.08); }
.nw-social-icon::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px dashed var(--nw-social); opacity: .25; transition: transform .4s ease; }
.nw-social-card:hover .nw-social-icon { transform: translateY(-4px) scale(1.06); }
.nw-social-card:hover .nw-social-icon::after { transform: rotate(120deg); }
.nw-social-icon .nw-svg { width: 38px; height: 38px; }
.nw-social-count { display: block; font-family: var(--nw-heading-font); font-size: 32px; font-weight: 800; color: var(--nw-social); line-height: 1; }
.nw-social-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--nw-muted); margin-top: 4px; }
.nw-social-card .nw-card-title { margin: 8px 0 0; }
.nw-social-btn { position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 7px; background: var(--nw-social); color: #fff; margin-top: 16px; width: 100%; transition: gap .18s ease, filter .18s ease; }
.nw-social-btn .nw-svg { width: 15px; height: 15px; }
.nw-social-btn::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.35) 50%, transparent 65%); transform: translateX(-130%); }
.nw-social-card:hover .nw-social-btn { gap: 10px; filter: brightness(1.08); }
.nw-social-card:hover .nw-social-btn::after { transform: translateX(130%); transition: transform .7s ease; }

/* official links */
.nw-link-card { display: flex; align-items: center; gap: 14px; }
.nw-link-icon { font-size: 26px; }
.nw-link-body { display: flex; flex-direction: column; }
.nw-link-url { font-size: 13px; color: var(--nw-muted); }

/* why us */
.nw-why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.nw-why-card { background: var(--nw-dark); color: #fff; border-radius: 22px; padding: 38px; box-shadow: var(--nw-shadow); }
.nw-why-card-title { color: var(--nw-primary); font-size: 24px; }
.nw-why-card-text { color: #c9ccd2; margin-bottom: 22px; }

/* faq (premium) */
.nw-faq-wrap { max-width: 860px; }
.nw-accordion { display: grid; gap: 14px; }
.nw-accordion-item { background: #fff; border: 1px solid var(--nw-border); border-radius: 16px; overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease; }
.nw-accordion-item:has(.nw-accordion-q[aria-expanded="true"]) { box-shadow: var(--nw-shadow); border-color: rgba(255,196,0,.5); }
.nw-accordion-q { width: 100%; display: flex; align-items: center; gap: 16px; background: none; border: 0; padding: 18px 22px; font-family: var(--nw-body-font); font-weight: 700; font-size: 16.5px; text-align: left; cursor: pointer; color: var(--nw-text); }
.nw-accordion-num { flex-shrink: 0; font-family: var(--nw-heading-font); font-weight: 800; font-size: 16px; color: var(--nw-primary-dark); width: 28px; }
.nw-accordion-qtext { flex: 1; }
.nw-accordion-q[aria-expanded="true"] { color: var(--nw-dark); }
.nw-accordion-q[aria-expanded="true"] .nw-accordion-num { color: var(--nw-accent); }
.nw-accordion-icon { position: relative; flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--nw-primary); transition: background .2s ease, transform .25s ease; }
.nw-acc-bar { position: absolute; top: 50%; left: 50%; width: 13px; height: 2.4px; border-radius: 2px; background: var(--nw-dark); transform: translate(-50%,-50%); transition: opacity .2s ease, transform .25s ease; }
.nw-acc-bar-v { transform: translate(-50%,-50%) rotate(90deg); }
.nw-accordion-q[aria-expanded="true"] .nw-accordion-icon { background: var(--nw-dark); transform: rotate(180deg); }
.nw-accordion-q[aria-expanded="true"] .nw-acc-bar { background: var(--nw-primary); }
.nw-accordion-q[aria-expanded="true"] .nw-acc-bar-v { opacity: 0; }
.nw-accordion-a-inner { padding: 2px 22px 20px 66px; color: var(--nw-muted); font-size: 15.5px; }

.nw-faq-more { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; text-align: center; margin-top: 34px; background: #fff; border: 1px solid var(--nw-border); border-radius: 18px; padding: 22px 26px; box-shadow: 0 10px 30px rgba(20,22,30,.06); }
.nw-faq-more-ico { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--nw-section-alt); color: var(--nw-dark); }
.nw-faq-more p { margin: 0; font-weight: 700; font-size: 16px; }

/* final CTA (premium panel) */
.nw-section-cta { background: transparent; padding: 20px 0 80px; }
.nw-cta-panel { position: relative; overflow: hidden; border-radius: 30px; padding: 64px 30px; text-align: center;
	background: radial-gradient(900px 400px at 80% -20%, #FFD84D, rgba(255,216,77,0) 60%), linear-gradient(135deg, var(--nw-primary), var(--nw-primary-dark) 60%, #f0a500);
	box-shadow: 0 30px 70px rgba(255,179,0,.32); }
.nw-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.nw-cta-bg .nw-orb-1 { width: 320px; height: 320px; right: -80px; top: -120px; }
.nw-cta-bg .nw-orb-2 { width: 240px; height: 240px; left: -70px; bottom: -110px; }
.nw-cta-fico { position: absolute; color: rgba(21,22,26,.14); }
.nw-cta-fico-1 { left: 7%; top: 24%; animation: nw-float 7s ease-in-out infinite; }
.nw-cta-fico-2 { right: 9%; bottom: 22%; animation: nw-float 8s ease-in-out infinite .5s; }
.nw-cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.nw-cta-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--nw-dark); color: var(--nw-primary); font-size: 13.5px; font-weight: 700; padding: 8px 18px; border-radius: 999px; margin-bottom: 18px; box-shadow: 0 10px 24px rgba(21,22,26,.25); }
.nw-cta-badge .nw-svg { width: 16px; height: 16px; color: var(--nw-accent); }
.nw-cta-title { font-size: clamp(24px, 6vw, 46px); color: var(--nw-dark); letter-spacing: -.5px; line-height: 1.1; }
.nw-cta-text { font-size: 18.5px; color: #3a3119; margin: 12px 0 30px; }
.nw-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.nw-cta-actions .nw-btn { padding: 15px 30px; font-size: 15.5px; box-shadow: 0 14px 30px rgba(21,22,26,.2); }
.nw-cta-actions .nw-btn .nw-svg { width: 18px; height: 18px; }

/* ---------- Footer (premium) ---------- */
.nw-footer { position: relative; background: linear-gradient(180deg, #101116, var(--nw-dark)); color: #b9bdc4; padding-top: 60px; }
.nw-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--nw-primary), var(--nw-accent), var(--nw-primary)); }
.nw-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.nw-footer-brand .nw-logo-text { color: var(--nw-primary); margin-bottom: 14px; display: inline-block; }
.nw-footer-brand .custom-logo { margin-bottom: 14px; max-height: 52px; width: auto; filter: brightness(0) invert(1); }
.nw-footer-about { font-size: 14.5px; color: #9aa0a8; }
.nw-footer-social { display: flex; gap: 10px; margin-top: 18px; }
.nw-footer-soc { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.06); color: #fff; transition: transform .15s ease, background .15s ease; }
.nw-footer-soc:hover { transform: translateY(-3px); }
.nw-soc-tg:hover, .nw-soc-telegram:hover { background: #229ED9; }
.nw-soc-wa:hover, .nw-soc-whatsapp:hover { background: #25D366; }
.nw-soc-facebook:hover { background: #1877F2; }
.nw-soc-youtube:hover { background: #FF0000; }
.nw-soc-instagram:hover { background: #E1306C; }
.nw-soc-twitter:hover { background: #000; }
.nw-footer-soc .nw-svg { width: 20px; height: 20px; }
.nw-footer-title { color: #fff; font-size: 16px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.nw-footer-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--nw-primary); }
.nw-footer-menu li { margin-bottom: 11px; }
.nw-footer-menu a { display: inline-flex; align-items: center; gap: 0; transition: color .15s ease, gap .15s ease; }
.nw-footer-menu a::before { content: "›"; color: var(--nw-primary); opacity: 0; width: 0; transition: opacity .15s ease, width .15s ease; }
.nw-footer-menu a:hover { color: var(--nw-primary); gap: 7px; }
.nw-footer-menu a:hover::before { opacity: 1; width: 8px; }
.nw-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.nw-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.nw-footer-disclaimer { display: flex; align-items: center; gap: 10px; color: #8b9098; max-width: 660px; margin: 0; }
.nw-age-badge { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 24px; padding: 0 7px; border-radius: 6px; background: var(--nw-danger); color: #fff; font-weight: 800; font-size: 12px; }
.nw-footer-copy { margin: 0; color: #8b9098; }

/* ---------- Inner pages ---------- */
.nw-inner-page { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 50px 20px; }
.nw-inner-page .nw-inner-main { min-width: 0; }
.nw-page-title { font-size: 32px; margin-bottom: 24px; }
.nw-post { margin-bottom: 26px; }
.nw-entry-content { font-size: 16.5px; }
.nw-entry-content p { margin: 0 0 1em; }
.nw-post-meta { color: var(--nw-muted); font-size: 14px; margin-bottom: 12px; }
.widget { margin-bottom: 28px; }
.widget-title { font-size: 18px; margin-bottom: 12px; }

/* ==========================================================================
   Responsive system — token-driven scale (tablet → phone → small)
   ========================================================================== */

/* ---- Tablet (≤1024) ---- */
@media (max-width: 1024px) {
	:root { --nw-section-y: 56px; --nw-head-mb: 36px; --nw-container: 920px; }
	.nw-grid-4 { grid-template-columns: repeat(2, 1fr); }
	.nw-grid-3 { grid-template-columns: repeat(2, 1fr); }
	.nw-steps .nw-step::after { display: none; }
	.nw-hero-inner, .nw-find-grid, .nw-why-grid, .nw-about-grid, .nw-scam-layout, .nw-compare-grid, .nw-article-layout { grid-template-columns: 1fr; }
	.nw-find-grid, .nw-why-grid, .nw-about-grid { gap: 30px; }
	.nw-footer-grid { grid-template-columns: 1fr 1fr; }
	.nw-inner-page { grid-template-columns: 1fr; }
	.nw-nav { display: none; }
	.nw-menu-toggle { display: flex; }
	.nw-header-inner { min-height: 64px; }
	.nw-header-cta { margin-left: auto; }
}

/* ---- Phone (≤768): single column + centered + smaller ---- */
@media (max-width: 768px) {
	:root { --nw-section-y: 38px; --nw-gutter: 16px; --nw-head-mb: 24px; }
	.nw-grid-3, .nw-grid-4, .nw-emg-grid, .nw-blog-grid { grid-template-columns: 1fr; }
	/* social + trust + steps + scam-list stay 2-per-row on phones */
	.nw-section-social .nw-grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
	.nw-section-trust .nw-grid-3 { grid-template-columns: 1fr 1fr; gap: 12px; }
	.nw-steps { grid-template-columns: 1fr 1fr; gap: 12px; }
	.nw-scam-list { grid-template-columns: 1fr 1fr; gap: 12px; }
	.nw-section-social .nw-social-card, .nw-section-trust .nw-feature, .nw-steps .nw-step, .nw-scam-list .nw-fake { min-width: 0; max-width: none; }

	/* typography step-down */
	.nw-section-title { font-size: clamp(20px, 5.4vw, 24px); line-height: 1.22; }
	.nw-section-subtitle { font-size: 14.5px; }
	.nw-card-title { font-size: 17px; }
	.nw-eyebrow { font-size: 11px; }

	/* center single-column content */
	.nw-hero-copy, .nw-about-copy, .nw-find-copy, .nw-why-copy { text-align: center; }
	.nw-hero-actions, .nw-cta-actions { justify-content: center; }
	.nw-hero-counters { justify-content: center; }
	/* about footer (signature + button) centered — higher specificity to beat base rule */
	.nw-about-copy .nw-about-foot { justify-content: center; flex-direction: column; align-items: center; gap: 14px; }
	.nw-about-copy .nw-about-signature { display: inline-block; }
	.nw-about-copy .nw-about-signature::after { left: 50%; transform: translateX(-50%); width: 60%; }
	.nw-about-facts { grid-template-columns: 1fr 1fr; gap: 9px; max-width: 440px; margin: 18px auto; }
	.nw-fact { padding: 9px 10px; gap: 9px; border-radius: 11px; }
	.nw-fact-ico { width: 32px; height: 32px; border-radius: 9px; }
	.nw-fact-ico .nw-svg { width: 17px; height: 17px; }
	.nw-fact-label { font-size: 10.5px; }
	.nw-fact-value { font-size: 13.5px; line-height: 1.25; }
	.nw-checklist { display: inline-grid; text-align: left; }
	.nw-hero-text, .nw-section-subtitle { margin-left: auto; margin-right: auto; }

	/* cap single-column card width so rows read centered */
	.nw-card, .nw-osite, .nw-msite, .nw-emg-card, .nw-blog-card, .nw-feature, .nw-step, .nw-social-card { max-width: 460px; margin-left: auto; margin-right: auto; width: 100%; }

	/* full-width stacked buttons */
	.nw-hero-actions .nw-btn, .nw-cta-actions .nw-btn { flex: 1 1 100%; }

	/* counters */
	.nw-counter { min-width: 0; }
	.nw-counter-num { font-size: 26px; }

	/* comparison VS becomes a divider */
	.nw-compare-vs { padding: 2px 0; }

	/* premium centered footer */
	.nw-footer { padding-top: 44px; }
	.nw-footer-grid { grid-template-columns: 1fr; gap: 26px; text-align: center; padding-bottom: 32px; }
	.nw-footer-brand { padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.08); }
	.nw-footer-brand .custom-logo, .nw-footer-brand .nw-logo-text { margin-left: auto; margin-right: auto; }
	.nw-footer-about { max-width: 360px; margin-left: auto; margin-right: auto; }
	.nw-footer-title { font-size: 15px; margin-bottom: 14px; }
	.nw-footer-title::after { left: 50%; transform: translateX(-50%); }
	.nw-footer-social { justify-content: center; gap: 12px; }
	.nw-footer-soc { width: 46px; height: 46px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.10); }
	.nw-footer-menu a { justify-content: center; }
	.nw-footer-bottom { padding: 18px 0; }
	.nw-footer-bottom-inner { justify-content: center; text-align: center; }
	.nw-topbar-menu { display: none; }

	/* long strings wrap */
	.nw-emg-num, .nw-fake-url, .nw-osite-host, .nw-msite-host { word-break: break-word; }

	/* blog + article heroes shrink */
	.nw-blog-hero { padding: 46px 0 40px; }
	.nw-blog-wrap { padding: 40px var(--nw-gutter) 50px; }
	.nw-article-hero { padding: 48px 0 40px; }
	.nw-article-hero.has-img { padding: 96px 0 34px; }
	.nw-article-layout { padding: 34px var(--nw-gutter) 16px; }
	.nw-article-content { font-size: 16px; }
	.nw-article-content h2 { font-size: 23px; }
	.nw-article-content h3 { font-size: 19px; }

	/* header CTA → clean round icon button next to hamburger */
	.nw-header-cta { gap: 10px; }
	.nw-hcta { width: 44px; height: 44px; padding: 0; gap: 0; justify-content: center; }
	.nw-hcta-txt, .nw-hcta-dot { display: none; }
	.nw-hcta-ico { width: 32px; height: 32px; }

	/* slimmer verification banner */
	.nw-verifybar { font-size: 12.5px; }
	.nw-verifybar-inner { min-height: 0; padding: 7px 14px; gap: 9px; font-size: 12.5px; }
	.nw-verifybar-text { line-height: 1.3; }
	.nw-verifybar-seal { width: 22px; height: 22px; }
	.nw-verifybar-seal .nw-vseal { width: 19px; height: 19px; }
	.nw-verifybar-btn { padding: 5px 12px; font-size: 12px; }
}

/* ---- Small phone (≤480) ---- */
@media (max-width: 480px) {
	:root { --nw-section-y: 30px; --nw-gutter: 14px; --nw-head-mb: 20px; }
	/* counters stay on one line (3 across) */
	.nw-hero-counters { flex-wrap: nowrap; gap: 8px; }
	.nw-counter { flex: 1 1 0; min-width: 0; padding: 11px 5px; }
	.nw-counter-num { font-size: 21px; }
	.nw-counter-label { font-size: 10px; }
	.nw-section-title { font-size: clamp(19px, 6vw, 23px); }
	.nw-section-subtitle { font-size: 14px; }
	.nw-card, .nw-osite, .nw-msite, .nw-emg-card, .nw-blog-card { padding: 20px; }
	.nw-fact { padding: 8px 9px; gap: 8px; }
	.nw-fact-ico { width: 30px; height: 30px; }
	.nw-fact-ico .nw-svg { width: 16px; height: 16px; }
	.nw-fact-value { font-size: 13px; }
	.nw-fact-label { font-size: 10px; }
	/* slimmer verifybar */
	.nw-verifybar-inner { min-height: 0; padding: 6px 12px; gap: 8px; font-size: 12px; }
	.nw-verifybar-btn { padding: 4px 10px; font-size: 11.5px; }
}

/* ---------- Floating contact buttons ---------- */
.nw-float { position: fixed; right: 18px; bottom: 18px; z-index: 200; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.nw-float-btn {
	position: relative; width: 54px; height: 54px; border-radius: 50%; border: 0; cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center; color: #fff;
	box-shadow: 0 8px 22px rgba(0,0,0,.28); transition: transform .15s ease, box-shadow .15s ease;
}
.nw-float-btn:hover { transform: translateY(-3px) scale(1.05); }
.nw-float-wa { background: #25D366; }
.nw-float-tg { background: #229ED9; }
.nw-float-top { background: var(--nw-dark); color: var(--nw-primary); font-size: 22px; font-weight: 700; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .25s ease, transform .25s ease; }
.nw-float-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nw-float-label {
	position: absolute; right: 64px; top: 50%; transform: translateY(-50%) translateX(6px);
	background: var(--nw-dark); color: #fff; font-size: 13px; font-weight: 600; white-space: nowrap;
	padding: 7px 12px; border-radius: 8px; opacity: 0; pointer-events: none; transition: opacity .15s ease, transform .15s ease;
}
.nw-float-btn:hover .nw-float-label { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 620px) {
	.nw-float { right: 14px; bottom: 14px; gap: 10px; }
	.nw-float-btn { width: 50px; height: 50px; }
	.nw-float-label { display: none; }
}

/* ==========================================================================
   Asif Khalid authority hub — section styles
   ========================================================================== */

/* ---- Verification banner ---- */
.nw-verifybar { position: relative; overflow: hidden; color: #fff; font-size: 14px; font-weight: 600;
	background: linear-gradient(100deg, #15a050, var(--nw-accent) 35%, #11b85f 65%, #15a050);
	background-size: 220% 100%; animation: nw-verify-flow 8s ease infinite; box-shadow: inset 0 -1px 0 rgba(0,0,0,.12); }
@keyframes nw-verify-flow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
/* subtle dotted texture overlay */
.nw-verifybar::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .25;
	background-image: radial-gradient(rgba(255,255,255,.35) 1px, transparent 1px); background-size: 14px 14px; }
/* moving diagonal sheen */
.nw-verifybar-sheen { position: absolute; top: 0; left: -40%; width: 35%; height: 100%; z-index: 1; pointer-events: none;
	background: linear-gradient(105deg, transparent, rgba(255,255,255,.28) 50%, transparent); transform: skewX(-16deg);
	animation: nw-sweep 5.5s ease-in-out infinite; }
.nw-verifybar-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 13px; min-height: 50px; padding: 9px 20px; text-align: center; flex-wrap: wrap; }

/* animated verified seal */
.nw-verifybar-seal { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; flex-shrink: 0; }
.nw-verifybar-seal .nw-vseal { width: 26px; height: 26px; position: relative; z-index: 1; filter: drop-shadow(0 2px 4px rgba(0,0,0,.25)); animation: nw-vpulse 2.6s ease-in-out infinite; }
.nw-verifybar-pulse { position: absolute; inset: 0; border-radius: 50%; background: rgba(255,255,255,.5); animation: nw-ring 2.2s ease-out infinite; }
@keyframes nw-ring { 0% { transform: scale(.6); opacity: .6; } 100% { transform: scale(1.9); opacity: 0; } }

.nw-verifybar-text { letter-spacing: .2px; }
.nw-verifybar-btn { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: #128a47; padding: 7px 16px; border-radius: 999px; font-weight: 800; white-space: nowrap; box-shadow: 0 6px 16px rgba(0,0,0,.18); transition: transform .15s ease, box-shadow .15s ease, gap .15s ease; }
.nw-verifybar-btn .nw-svg { width: 15px; height: 15px; }
.nw-verifybar-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,0,0,.26); gap: 9px; }
@media (prefers-reduced-motion: reduce) {
	.nw-verifybar, .nw-verifybar-sheen, .nw-verifybar-seal .nw-vseal, .nw-verifybar-pulse { animation: none !important; }
	.nw-verifybar-sheen, .nw-verifybar-pulse { display: none; }
}

/* ---- About (premium) ---- */
.nw-section-about { position: relative; overflow: hidden; }
.nw-section-about::before { content: ""; position: absolute; top: -120px; left: -120px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(255,196,0,.16), transparent 70%); pointer-events: none; }
.nw-about-grid { position: relative; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 60px; align-items: center; }

/* media / framed photo */
.nw-about-media { position: relative; padding: 18px; }
.nw-about-frame { position: absolute; inset: 0; border-radius: 26px; background: linear-gradient(150deg, var(--nw-primary), var(--nw-primary-dark)); transform: rotate(-3deg); box-shadow: 0 26px 60px rgba(255,179,0,.32); }
.nw-about-dots { position: absolute; right: -14px; bottom: 28px; width: 110px; height: 110px; z-index: 3;
	background-image: radial-gradient(var(--nw-dark) 2px, transparent 2px); background-size: 16px 16px; opacity: .18; border-radius: 8px; }
.nw-about-photo { position: relative; z-index: 2; border-radius: 20px; overflow: hidden; background: var(--nw-dark); box-shadow: 0 20px 44px rgba(21,22,26,.28); }
.nw-about-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.nw-about-placeholder { display: flex; align-items: center; justify-content: center; aspect-ratio: 4/5; color: var(--nw-primary); background: var(--nw-dark); }
.nw-about-placeholder .nw-svg { width: 88px; height: 88px; }
.nw-about-verify { position: absolute; top: 14px; left: 14px; z-index: 3; display: inline-flex; align-items: center; gap: 5px; background: var(--nw-accent); color: #fff; font-size: 12.5px; font-weight: 800; padding: 6px 13px; border-radius: 999px; box-shadow: 0 8px 18px rgba(33,193,94,.45); }
.nw-about-verify .nw-svg { width: 14px; height: 14px; }
.nw-about-xp { position: absolute; right: -6px; bottom: -6px; z-index: 4; background: #fff; border-radius: 16px; padding: 14px 20px; text-align: center; box-shadow: 0 16px 36px rgba(21,22,26,.22); border: 1px solid var(--nw-border); }
.nw-about-xp-num { display: block; font-family: var(--nw-heading-font); font-weight: 800; font-size: 30px; color: var(--nw-dark); line-height: 1; }
.nw-about-xp-text { display: block; font-size: 12px; color: var(--nw-muted); margin-top: 2px; }

/* copy */
.nw-about-bio { position: relative; color: #45494f; font-size: 16.5px; padding-left: 2px; }
.nw-about-bio p { margin: 0 0 1em; }
.nw-about-quote { position: absolute; top: -28px; left: -8px; font-family: var(--nw-heading-font); font-size: 90px; line-height: 1; color: var(--nw-primary); opacity: .35; pointer-events: none; }

/* fact cards */
.nw-about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0; }
.nw-fact { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--nw-border); border-radius: 14px; padding: 13px 16px; box-shadow: 0 6px 18px rgba(20,22,30,.05); transition: transform .16s ease, box-shadow .16s ease; }
.nw-fact:hover { transform: translateY(-3px); box-shadow: var(--nw-shadow); }
.nw-fact-ico { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px; background: var(--nw-section-alt); color: var(--nw-dark); flex-shrink: 0; }
.nw-fact-ico .nw-svg { width: 20px; height: 20px; }
.nw-fact-body { display: flex; flex-direction: column; min-width: 0; line-height: 1.3; }
.nw-fact-label { font-size: 12px; color: var(--nw-muted); }
.nw-fact-value { font-size: 15px; color: var(--nw-text); }

/* footer row: signature + button */
.nw-about-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.nw-about-signature { font-family: var(--nw-heading-font); font-size: 26px; font-weight: 800; color: var(--nw-dark); font-style: italic; position: relative; padding-bottom: 6px; }
.nw-about-signature::after { content: ""; position: absolute; left: 0; bottom: 0; width: 70%; height: 2px; background: linear-gradient(90deg, var(--nw-primary), transparent); }

/* ---- Site cards (official / managed) ---- */
.nw-site-card { display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; }
.nw-site-official { border: 2px solid rgba(33,193,94,.35); }
.nw-site-ribbon { position: absolute; top: 0; right: 0; background: var(--nw-accent); color: #fff; font-size: 12px; font-weight: 800; padding: 6px 16px; border-bottom-left-radius: 14px; }
.nw-site-head { display: flex; align-items: center; gap: 12px; }
.nw-site-logo { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.nw-site-logo-fallback { display: inline-flex; align-items: center; justify-content: center; background: var(--nw-dark); color: var(--nw-primary); font-weight: 800; font-size: 22px; font-family: var(--nw-heading-font); }
.nw-site-host { font-size: 13px; color: var(--nw-muted); word-break: break-all; }
.nw-site-visit { margin-top: auto; align-self: flex-start; }
.nw-pill-soft { background: rgba(0,0,0,.06); color: var(--nw-text); margin-left: auto; }

/* ---- Comparison (premium, graphic-rich) ---- */
.nw-section-comparison { position: relative; overflow: hidden; }
.nw-compare-bg { position: absolute; top: 10%; width: 420px; height: 420px; border-radius: 50%; filter: blur(20px); pointer-events: none; z-index: 0; animation: nw-float 9s ease-in-out infinite; }
.nw-compare-bg-ok { left: -140px; background: radial-gradient(circle, rgba(33,193,94,.16), transparent 70%); }
.nw-compare-bg-no { right: -140px; background: radial-gradient(circle, rgba(229,72,77,.14), transparent 70%); animation-direction: reverse; }
.nw-section-comparison .nw-container { position: relative; z-index: 1; }

.nw-compare-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; }
.nw-compare-panel { position: relative; border-radius: 24px; padding: 32px 30px; background: #fff; border: 1px solid var(--nw-border); box-shadow: 0 14px 40px rgba(20,22,30,.07); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.nw-compare-panel::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background-size: 200% 100%; }
.nw-compare-official::before { background: linear-gradient(90deg, var(--nw-accent), #18a04e, var(--nw-accent)); animation: nw-shimmer 2.4s linear infinite; }
.nw-compare-fake::before { background: linear-gradient(90deg, var(--nw-danger), #b3393d); }
.nw-compare-official { background: linear-gradient(180deg, rgba(33,193,94,.08), #fff 42%); border-color: rgba(33,193,94,.3); transform: translateY(-8px) scale(1.015); box-shadow: 0 26px 56px rgba(33,193,94,.16); }
.nw-compare-official:hover { transform: translateY(-12px) scale(1.015); box-shadow: 0 34px 64px rgba(33,193,94,.22); }
.nw-compare-fake { background: linear-gradient(180deg, rgba(229,72,77,.06), #fff 42%); }
.nw-compare-fake:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(229,72,77,.14); }

/* "safest" crown ribbon on official */
.nw-compare-crown { position: absolute; top: 16px; right: 0; z-index: 2; display: inline-flex; align-items: center; gap: 5px; background: linear-gradient(135deg, var(--nw-primary), var(--nw-primary-dark)); color: var(--nw-dark); font-size: 11.5px; font-weight: 800; padding: 6px 14px 6px 15px; border-radius: 999px 0 0 999px; box-shadow: 0 8px 18px rgba(255,179,0,.4); }
.nw-compare-crown .nw-svg { width: 13px; height: 13px; }
/* "warning" stamp on fake */
.nw-compare-stamp { position: absolute; top: 18px; right: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; color: var(--nw-danger); border: 2px dashed rgba(229,72,77,.55); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 5px 11px; border-radius: 8px; transform: rotate(7deg); }
.nw-compare-stamp .nw-svg { width: 12px; height: 12px; }
/* moving sheen on the official panel */
.nw-compare-shine { position: absolute; top: 0; left: -60%; width: 50%; height: 100%; z-index: 1; pointer-events: none; background: linear-gradient(105deg, transparent, rgba(33,193,94,.1) 50%, transparent); transform: skewX(-14deg); animation: nw-sweep 7s ease-in-out infinite; }

.nw-compare-panelhead { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; position: relative; z-index: 2; }
.nw-compare-badge { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; flex-shrink: 0; }
.nw-badge-ok { color: #fff; }
.nw-badge-ok .nw-vseal { width: 40px; height: 40px; }
.nw-compare-badge-ring { position: absolute; inset: -4px; border-radius: 50%; border: 2px dashed rgba(33,193,94,.5); animation: nw-spin 9s linear infinite; }
.nw-badge-no { width: 50px; height: 50px; border-radius: 14px; background: var(--nw-danger); color: #fff; box-shadow: 0 10px 22px rgba(229,72,77,.35); animation: nw-shake 4s ease-in-out infinite; }
.nw-badge-no .nw-svg { width: 26px; height: 26px; }
@keyframes nw-shake { 0%,92%,100% { transform: rotate(0); } 94% { transform: rotate(-8deg); } 96% { transform: rotate(8deg); } 98% { transform: rotate(-5deg); } }
.nw-compare-head { font-size: 21px; margin: 0; }

.nw-compare-list { display: grid; gap: 11px; position: relative; z-index: 2; }
.nw-compare-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15.5px; background: rgba(20,22,30,.025); border-radius: 12px; padding: 12px 14px; transition: transform .15s ease, background .15s ease; }
.nw-compare-official .nw-compare-list li { background: rgba(33,193,94,.07); }
.nw-compare-official .nw-compare-list li:hover { background: rgba(33,193,94,.13); transform: translateX(4px); }
.nw-compare-fake .nw-compare-list li { background: rgba(229,72,77,.06); }
.nw-compare-fake .nw-compare-list li:hover { background: rgba(229,72,77,.11); transform: translateX(4px); }
.nw-compare-mark { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; color: #fff; flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,.12); }
.nw-compare-mark .nw-svg { width: 15px; height: 15px; }
.nw-mark-ok { background: linear-gradient(135deg, #2ee06d, var(--nw-accent)); }
.nw-mark-no { background: linear-gradient(135deg, #ff6468, var(--nw-danger)); }

/* animated VS medallion */
.nw-compare-vs { display: flex; align-items: center; justify-content: center; position: relative; z-index: 3; }
.nw-compare-vs-badge { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; }
.nw-compare-vs-badge::before, .nw-compare-vs-badge::after { content: ""; position: absolute; border-radius: 50%; }
.nw-compare-vs-badge::before { inset: -6px; border: 2px dashed rgba(21,22,26,.18); animation: nw-spin 10s linear infinite; }
.nw-compare-vs-badge::after { inset: 0; background: radial-gradient(circle, rgba(255,196,0,.45), transparent 70%); filter: blur(8px); animation: nw-pulse-glow 2.8s ease-in-out infinite; z-index: -1; }
.nw-compare-vs-badge span { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(150deg, var(--nw-dark), var(--nw-dark-soft)); color: var(--nw-primary); font-family: var(--nw-heading-font); font-weight: 800; font-size: 18px; box-shadow: 0 12px 28px rgba(21,22,26,.35); border: 4px solid #fff; }

/* mobile: slim comparison section + smaller fonts */
@media (max-width: 620px) {
	.nw-compare-grid { gap: 12px; }
	.nw-compare-panel { max-width: 440px; width: 100%; margin: 0 auto; padding: 20px 16px; border-radius: 18px; }
	.nw-compare-panelhead { gap: 11px; margin-bottom: 16px; }
	.nw-compare-badge { width: 44px; height: 44px; }
	.nw-compare-badge .nw-vseal, .nw-compare-badge .nw-svg { width: 30px; height: 30px; }
	.nw-compare-head { font-size: 16px; }
	.nw-compare-list { gap: 8px; }
	.nw-compare-list li { font-size: 13px; gap: 9px; padding: 9px 11px; border-radius: 10px; }
	.nw-compare-mark { width: 21px; height: 21px; }
	.nw-compare-mark .nw-svg { width: 12px; height: 12px; }
	.nw-compare-vs-badge { width: 50px; height: 50px; }
	.nw-compare-vs-badge span { width: 44px; height: 44px; font-size: 15px; border-width: 3px; }
	.nw-compare-crown { font-size: 10px; padding: 5px 11px 5px 12px; }
	.nw-compare-stamp { font-size: 10px; padding: 4px 9px; }
}
@media (prefers-reduced-motion: reduce) {
	.nw-compare-bg, .nw-compare-shine, .nw-compare-official::before, .nw-badge-no, .nw-compare-badge-ring,
	.nw-compare-vs-badge::before, .nw-compare-vs-badge::after { animation: none !important; }
	.nw-compare-shine, .nw-compare-bg { display: none; }
}

/* ---- Scam alert (premium) ---- */
.nw-section-scam { background: linear-gradient(180deg, #fff, rgba(229,72,77,.05)); }
.nw-scam-intro { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; background: linear-gradient(120deg, rgba(229,72,77,.12), rgba(229,72,77,.05)); border: 1px solid rgba(229,72,77,.3); border-left: 5px solid var(--nw-danger); border-radius: 16px; padding: 20px 24px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(229,72,77,.08); }
.nw-scam-intro p { margin: 0; font-weight: 600; color: #8a2b2e; flex: 1; min-width: 240px; }
.nw-scam-report { flex-shrink: 0; margin-left: auto; }
.nw-scam-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--nw-danger); color: #fff !important; flex-shrink: 0; animation: nw-pulse-glow 2.4s ease-in-out infinite; box-shadow: 0 0 0 0 rgba(229,72,77,.4); }
.nw-scam-icon .nw-svg { width: 24px; height: 24px; }
.nw-scam-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; align-items: start; }
.nw-scam-list { display: grid; gap: 14px; }
.nw-fake { position: relative; display: flex; align-items: flex-start; gap: 16px; background: #fff; border: 1px solid rgba(229,72,77,.2); border-left: 5px solid var(--nw-danger); border-radius: 16px; padding: 18px 20px; overflow: hidden; box-shadow: 0 8px 22px rgba(229,72,77,.07); transition: transform .18s ease, box-shadow .18s ease; }
.nw-fake:hover { transform: translateX(4px); box-shadow: 0 16px 34px rgba(229,72,77,.16); }
.nw-fake-glow { position: absolute; top: -40px; right: -40px; width: 130px; height: 130px; border-radius: 50%; background: radial-gradient(circle, rgba(229,72,77,.18), transparent 70%); pointer-events: none; }
.nw-fake-seal { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--nw-danger), #b3393d); color: #fff; flex-shrink: 0; box-shadow: 0 8px 20px rgba(229,72,77,.4); }
.nw-fake-seal .nw-svg { width: 20px; height: 20px; position: relative; z-index: 1; }
.nw-fake-seal-ring { position: absolute; inset: -5px; border-radius: 50%; border: 2px dashed rgba(229,72,77,.5); animation: nw-spin 11s linear infinite; }
.nw-fake-body { display: flex; flex-direction: column; gap: 7px; min-width: 0; flex: 1; }
.nw-fake-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.nw-fake-name { font-weight: 800; font-size: 16px; }
.nw-fake-url { display: inline-flex; align-items: center; gap: 6px; font-family: ui-monospace, "Courier New", monospace; font-size: 13px; color: var(--nw-danger); background: rgba(229,72,77,.07); border: 1px dashed rgba(229,72,77,.35); border-radius: 8px; padding: 5px 10px; width: fit-content; max-width: 100%; }
.nw-fake-url .nw-svg { width: 13px; height: 13px; flex-shrink: 0; }
.nw-fake-url-text { text-decoration: line-through; word-break: break-all; }
.nw-fake-reason { display: inline-flex; align-items: flex-start; gap: 6px; font-size: 13px; color: var(--nw-muted); }
.nw-fake-reason .nw-svg { width: 13px; height: 13px; color: var(--nw-danger); flex-shrink: 0; margin-top: 2px; }
.nw-fake-status { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; padding: 5px 11px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; }
.nw-fake-status .nw-svg { width: 12px; height: 12px; }
.nw-fake-blacklisted { background: var(--nw-danger); color: #fff; }
.nw-fake-reported { background: #f5a623; color: #2a2300; }
.nw-fake-warning { background: rgba(229,72,77,.15); color: var(--nw-danger); }
.nw-scam-tips { position: relative; background: linear-gradient(160deg, var(--nw-dark), var(--nw-dark-soft)); color: #d8dadf; border-radius: 20px; padding: 30px; overflow: hidden; box-shadow: 0 18px 44px rgba(21,22,26,.25); }
.nw-scam-tips::before { content: ""; position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(255,196,0,.18), transparent 70%); }
.nw-scam-tips-title { position: relative; color: var(--nw-primary); font-size: 18px; margin-bottom: 18px; }
.nw-scam-tips .nw-checklist { position: relative; gap: 14px; }
.nw-scam-tips .nw-checklist li { color: #d8dadf; }

/* ---- Success result chip ---- */
.nw-success-result { display: inline-flex; align-items: center; gap: 5px; background: linear-gradient(135deg, var(--nw-accent), #18a04e); color: #fff; font-weight: 800; font-size: 14px; padding: 6px 13px; border-radius: 999px; white-space: nowrap; box-shadow: 0 8px 18px rgba(33,193,94,.32); }
.nw-success-result .nw-svg { width: 15px; height: 15px; }

/* ---- Video ---- */
/* ---- Video (premium cinematic) ---- */
.nw-section-video { position: relative; overflow: hidden; background: linear-gradient(180deg, #16171c, var(--nw-dark)); }
.nw-video-bg { position: absolute; inset: 0; pointer-events: none; }
.nw-section-video .nw-orb { mix-blend-mode: normal; opacity: .5; }
.nw-section-video .nw-orb-1 { width: 320px; height: 320px; right: -90px; top: -110px; background: radial-gradient(circle, rgba(255,196,0,.55), transparent 70%); }
.nw-section-video .nw-orb-2 { width: 280px; height: 280px; left: -80px; bottom: -110px; background: radial-gradient(circle, rgba(33,193,94,.4), transparent 70%); }
.nw-section-video .nw-hero-dots { opacity: .12; -webkit-mask-image: none; mask-image: none; background-image: radial-gradient(rgba(255,255,255,.5) 1.3px, transparent 1.3px); }

.nw-video-wrap { position: relative; z-index: 2; max-width: 900px; }
.nw-section-video .nw-section-title { color: #fff; }
.nw-section-video .nw-section-subtitle { color: #c9ccd2; }
.nw-section-video .nw-eyebrow { background: rgba(255,255,255,.08); color: var(--nw-primary); }

.nw-video-stage { position: relative; padding: 4px; border-radius: 24px; background: linear-gradient(135deg, var(--nw-primary), var(--nw-accent), var(--nw-primary)); background-size: 200% 200%; animation: nw-borderflow 6s ease infinite; box-shadow: 0 30px 70px rgba(0,0,0,.5); }
@keyframes nw-borderflow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.nw-video-frameglow { position: absolute; inset: -30px; border-radius: 40px; background: radial-gradient(circle at 50% 50%, rgba(255,196,0,.35), rgba(33,193,94,.15) 45%, transparent 70%); filter: blur(30px); z-index: -1; animation: nw-pulse-glow 4s ease-in-out infinite; }
.nw-video-frame { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 20px; overflow: hidden; background: #000; }
.nw-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.nw-video-caption { text-align: center; color: #b9bdc4; margin-top: 22px; font-size: 16px; max-width: 640px; margin-left: auto; margin-right: auto; }

.nw-video-trust { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.nw-video-chip { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: #e7e9ec; font-size: 13.5px; font-weight: 600; padding: 8px 16px; border-radius: 999px; }
.nw-video-chip .nw-svg { width: 15px; height: 15px; color: var(--nw-accent); }

/* ---- Reveal animation ---- */
.nw-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.nw-reveal.is-in { opacity: 1; transform: none; }

/* ---- Responsive additions ---- */
@media (max-width: 980px) {
	.nw-about-grid { grid-template-columns: 1fr; gap: 30px; }
	.nw-compare-grid { grid-template-columns: 1fr; }
	.nw-compare-vs { padding: 4px 0; }
	.nw-scam-layout { grid-template-columns: 1fr; }
	.nw-hero-inner { grid-template-columns: 1fr; gap: 60px; }
	.nw-hero-portrait { order: -1; }
	.nw-portrait-stage { width: 280px; }
}
@media (max-width: 620px) {
	.nw-hero { padding: 38px 0 58px; }
	.nw-portrait-stage { width: 232px; }
	.nw-portrait-chip { font-size: 11.5px; padding: 6px 11px; }
	/* no room beside the photo at this width — keep only the top-corner chip + Verified */
	.nw-chip-1 { top: 1%; left: -3%; right: auto; bottom: auto; }
	.nw-chip-2, .nw-chip-3 { display: none; }
}

/* ---------- Premium SVG icons ---------- */
.nw-svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.nw-feature-icon { line-height: 0; }
.nw-feature-icon .nw-svg { width: 28px; height: 28px; }
.nw-social-icon { color: var(--nw-social); line-height: 0; display: inline-flex; margin-bottom: 6px; }
.nw-social-icon .nw-svg { width: 38px; height: 38px; }
.nw-check { line-height: 0; }
.nw-check .nw-svg { width: 14px; height: 14px; }
.nw-compare-mark .nw-svg, .nw-fake-x .nw-svg { width: 15px; height: 15px; }
.nw-fake-x { line-height: 0; }
.nw-scam-icon { line-height: 0; color: var(--nw-danger); }
.nw-scam-tips-title { display: inline-flex; align-items: center; gap: 8px; }
.nw-scam-tips-title .nw-svg { color: var(--nw-primary); width: 20px; height: 20px; }
.nw-portrait-chip { display: inline-flex; align-items: center; gap: 5px; }
.nw-portrait-chip .nw-svg { width: 15px; height: 15px; color: var(--nw-accent); }
.nw-chip-1 .nw-svg { color: #f5a623; }
.nw-hero-actions .nw-btn .nw-svg { width: 18px; height: 18px; }

/* premium step badge: icon + number */
.nw-step-badge { position: relative; z-index: 2; display: inline-flex; align-items: center; justify-content: center; width: 68px; height: 68px; border-radius: 20px; background: linear-gradient(150deg, var(--nw-dark), var(--nw-dark-soft)); color: var(--nw-primary); margin-bottom: 18px; box-shadow: 0 14px 30px rgba(21,22,26,.24); transition: transform .25s ease; }
.nw-step-badge::before { content: ""; position: absolute; inset: 0; border-radius: 20px; padding: 2px; background: linear-gradient(135deg, var(--nw-primary), transparent 60%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .6; }
.nw-step:hover .nw-step-badge { transform: translateY(-4px) scale(1.05); }
.nw-step-badge .nw-svg { width: 30px; height: 30px; }
.nw-step-glyph { font-family: var(--nw-heading-font); font-weight: 800; font-size: 26px; }
.nw-step-count { position: absolute; top: -9px; right: -9px; width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--nw-primary), var(--nw-primary-dark)); color: var(--nw-dark); font-family: var(--nw-heading-font); font-weight: 800; font-size: 13px; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 6px 14px rgba(255,179,0,.4); border: 2px solid #fff; }

/* site card icon fallback + external link */
.nw-site-logo-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 12px; background: var(--nw-section-alt); color: var(--nw-dark); flex-shrink: 0; }
.nw-site-managed .nw-site-logo-icon { color: var(--nw-muted); }

/* ---- Official site cards (premium) ---- */
.nw-osite { position: relative; display: flex; flex-direction: column; gap: 14px; background: #fff; border: 1px solid var(--nw-border); border-radius: 22px; padding: 26px; overflow: hidden; box-shadow: 0 10px 30px rgba(20,22,30,.06); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.nw-osite::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--nw-accent), #18a04e, var(--nw-accent)); background-size: 200% 100%; }
.nw-osite:hover { transform: translateY(-6px); box-shadow: 0 26px 55px rgba(33,193,94,.16); border-color: rgba(33,193,94,.45); }
.nw-osite:hover::before { animation: nw-shimmer 1.6s linear infinite; }
@keyframes nw-shimmer { to { background-position: -200% 0; } }
.nw-osite-glow { position: absolute; top: -50px; right: -50px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(33,193,94,.25), transparent 70%); opacity: .7; pointer-events: none; transition: opacity .25s ease; }
.nw-osite:hover .nw-osite-glow { opacity: 1; }

.nw-osite-tag { position: absolute; top: 16px; left: 0; z-index: 2; display: inline-flex; align-items: center; gap: 5px; background: linear-gradient(135deg, var(--nw-primary), var(--nw-primary-dark)); color: var(--nw-dark); font-size: 11.5px; font-weight: 800; padding: 5px 13px 5px 14px; border-radius: 0 999px 999px 0; box-shadow: 0 6px 16px rgba(255,179,0,.35); }
.nw-osite-tag .nw-svg { width: 13px; height: 13px; }

.nw-osite-top { display: flex; align-items: flex-start; justify-content: space-between; margin-top: 6px; }
.nw-osite-logo { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 16px; background: var(--nw-section-alt); color: var(--nw-dark); overflow: hidden; box-shadow: 0 6px 16px rgba(20,22,30,.08); }
.nw-osite-logo img { width: 100%; height: 100%; object-fit: cover; }
.nw-osite-seal { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; }
.nw-osite-seal .nw-vseal { width: 38px; height: 38px; position: relative; z-index: 1; }
.nw-osite-seal-ring { position: absolute; inset: -2px; border-radius: 50%; border: 2px dashed rgba(33,193,94,.5); animation: nw-spin 9s linear infinite; }

.nw-osite-title { font-size: 20px; margin: 0; }
.nw-osite-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: -4px; }
.nw-osite-host { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--nw-muted); word-break: break-all; }
.nw-osite-host .nw-svg { width: 13px; height: 13px; }
.nw-osite-live { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #18914a; }
.nw-osite-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--nw-accent); box-shadow: 0 0 0 3px rgba(33,193,94,.2); animation: nw-pulse 1.6s infinite; }
.nw-osite-text { color: var(--nw-muted); font-size: 15px; }
.nw-osite-text p { margin: 0; }

.nw-osite-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 6px; }
.nw-osite-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(33,193,94,.12); color: #18914a; font-size: 12px; font-weight: 800; padding: 7px 12px; border-radius: 999px; white-space: nowrap; }
.nw-osite-badge .nw-svg { width: 13px; height: 13px; }
.nw-osite-btn { position: relative; overflow: hidden; margin-left: auto; display: inline-flex; align-items: center; gap: 8px; background: var(--nw-dark); color: #fff; font-weight: 700; font-size: 14px; padding: 11px 20px; border-radius: 999px; transition: background .18s ease, gap .18s ease; }
.nw-osite-btn .nw-svg { width: 16px; height: 16px; transition: transform .18s ease; }
.nw-osite-btn::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.3) 50%, transparent 65%); transform: translateX(-130%); }
.nw-osite-btn:hover { background: var(--nw-accent); gap: 11px; }
.nw-osite-btn:hover::after { transform: translateX(130%); transition: transform .7s ease; }

/* slim + centered official-site cards on mobile */
@media (max-width: 620px) {
	.nw-osite { max-width: 400px; padding: 20px; gap: 11px; text-align: center; align-items: center; }
	.nw-osite-top { width: 100%; justify-content: center; gap: 16px; margin-top: 10px; }
	.nw-osite-logo { width: 50px; height: 50px; border-radius: 13px; }
	.nw-osite-seal { width: 40px; height: 40px; }
	.nw-osite-seal .nw-vseal { width: 32px; height: 32px; }
	.nw-osite-title { font-size: 18px; }
	.nw-osite-meta { justify-content: center; gap: 10px; margin-top: 0; }
	.nw-osite-host { word-break: break-word; }
	.nw-osite-text { font-size: 14px; }
	.nw-osite-foot { flex-direction: column; gap: 10px; width: 100%; padding-top: 4px; }
	.nw-osite-badge { margin: 0 auto; }
	.nw-osite-btn { margin-left: 0; width: 100%; justify-content: center; }
}

/* ---- Managed / partner site cards (premium, gold theme) ---- */
.nw-msite { position: relative; display: flex; flex-direction: column; gap: 14px; background: #fff; border: 1px solid var(--nw-border); border-radius: 22px; padding: 26px; overflow: hidden; box-shadow: 0 10px 30px rgba(20,22,30,.06); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.nw-msite::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--nw-primary), var(--nw-primary-dark), var(--nw-primary)); background-size: 200% 100%; }
.nw-msite:hover { transform: translateY(-6px); box-shadow: 0 26px 55px rgba(255,179,0,.16); border-color: rgba(255,196,0,.55); }
.nw-msite:hover::before { animation: nw-shimmer 1.6s linear infinite; }
.nw-msite-glow { position: absolute; top: -50px; right: -50px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(255,196,0,.28), transparent 70%); opacity: .7; pointer-events: none; transition: opacity .25s ease; }
.nw-msite:hover .nw-msite-glow { opacity: 1; }

.nw-msite-top { display: flex; align-items: flex-start; justify-content: space-between; margin-top: 6px; }
.nw-msite-logo { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 16px; background: var(--nw-section-alt); color: var(--nw-dark); overflow: hidden; box-shadow: 0 6px 16px rgba(20,22,30,.08); }
.nw-msite-logo img { width: 100%; height: 100%; object-fit: cover; }
.nw-msite-seal { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 14px; background: var(--nw-dark); color: var(--nw-primary); box-shadow: 0 8px 20px rgba(21,22,26,.28); }
.nw-msite-seal .nw-svg { width: 22px; height: 22px; }

.nw-msite-title { font-size: 20px; margin: 0; }
.nw-msite-host { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--nw-muted); word-break: break-all; margin-top: -4px; }
.nw-msite-host .nw-svg { width: 13px; height: 13px; }
.nw-msite-text { color: var(--nw-muted); font-size: 15px; }
.nw-msite-text p { margin: 0; }

.nw-msite-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 6px; }
.nw-msite-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,196,0,.16); color: #8a6d00; font-size: 12px; font-weight: 800; padding: 7px 12px; border-radius: 999px; white-space: nowrap; }
.nw-msite-badge .nw-svg { width: 13px; height: 13px; }
.nw-msite.is-partner .nw-msite-badge { background: rgba(21,22,26,.07); color: var(--nw-dark); }
.nw-msite-btn { position: relative; overflow: hidden; margin-left: auto; display: inline-flex; align-items: center; gap: 8px; background: var(--nw-dark); color: #fff; font-weight: 700; font-size: 14px; padding: 11px 20px; border-radius: 999px; transition: background .18s ease, color .18s ease, gap .18s ease; }
.nw-msite-btn .nw-svg { width: 16px; height: 16px; }
.nw-msite-btn::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.3) 50%, transparent 65%); transform: translateX(-130%); }
.nw-msite-btn:hover { background: var(--nw-primary); color: var(--nw-dark); gap: 11px; }
.nw-msite-btn:hover::after { transform: translateX(130%); transition: transform .7s ease; }
.nw-site-ribbon { display: inline-flex; align-items: center; gap: 5px; }
.nw-site-ribbon .nw-svg { width: 14px; height: 14px; }
.nw-site-visit { display: inline-flex; align-items: center; gap: 7px; }
.nw-site-visit .nw-svg { width: 16px; height: 16px; }

/* ---- All-sites button (homepage) + page ---- */
.nw-allsites-cta { text-align: center; margin-top: 40px; }
.nw-allsites-btn { display: inline-flex; align-items: center; gap: 9px; padding: 15px 30px; font-size: 15.5px; box-shadow: 0 14px 30px rgba(21,22,26,.2); }
.nw-allsites-btn .nw-svg { width: 18px; height: 18px; }
.nw-allsites-btn:hover .nw-svg:last-child { transform: translateX(3px); transition: transform .2s ease; }

.nw-allsites-hero { position: relative; overflow: hidden; padding: 64px 0 56px; text-align: center; background: linear-gradient(135deg, var(--nw-primary), var(--nw-primary-dark)); }
.nw-allsites-bg { position: absolute; inset: 0; pointer-events: none; }
.nw-allsites-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.nw-allsites-hero .nw-eyebrow { background: var(--nw-dark); color: var(--nw-primary); }
.nw-allsites-hero .nw-eyebrow .nw-svg { width: 14px; height: 14px; color: var(--nw-accent); vertical-align: -2px; }
.nw-allsites-title { font-size: clamp(26px, 6.5vw, 48px); color: var(--nw-dark); margin: 14px 0 12px; letter-spacing: -.5px; }
.nw-allsites-intro { font-size: 17.5px; color: #4a3f1c; }
.nw-allsites-intro p { margin: 0 0 1em; }
.nw-allsites-intro p:last-child { margin-bottom: 0; }

/* ---- Emergency WhatsApp section (premium) ---- */
.nw-section-emergency { position: relative; overflow: hidden; background: linear-gradient(180deg, #effff6, #e6fff0 60%, #def9ea); }
.nw-emg-bg { position: absolute; width: 380px; height: 380px; border-radius: 50%; filter: blur(22px); pointer-events: none; z-index: 0; }
.nw-emg-bg-1 { top: -130px; left: -130px; background: radial-gradient(circle, rgba(37,211,102,.25), transparent 70%); animation: nw-float 9s ease-in-out infinite; }
.nw-emg-bg-2 { bottom: -150px; right: -130px; background: radial-gradient(circle, rgba(18,138,71,.2), transparent 70%); animation: nw-float 11s ease-in-out infinite reverse; }
.nw-emg-deco { position: absolute; z-index: 0; color: rgba(37,211,102,.18); pointer-events: none; }
.nw-emg-deco-1 { top: 16%; left: 6%; animation: nw-float 7s ease-in-out infinite; }
.nw-emg-deco-2 { top: 22%; right: 9%; animation: nw-float 8s ease-in-out infinite .6s; }
.nw-emg-deco-3 { bottom: 14%; left: 12%; animation: nw-float 6.5s ease-in-out infinite .3s; }
.nw-section-emergency .nw-container { position: relative; z-index: 1; }
.nw-section-emergency .nw-eyebrow { background: linear-gradient(135deg, #25D366, #128a47); color: #fff; }

.nw-emg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 860px; margin: 0 auto; align-items: stretch; }
.nw-emg-card { position: relative; display: flex; flex-direction: column; overflow: hidden; background: #fff; border-radius: 26px; padding: 28px; box-shadow: 0 18px 50px rgba(37,211,102,.14); transition: transform .25s ease, box-shadow .25s ease; }
/* animated gradient border */
.nw-emg-border { position: absolute; inset: 0; border-radius: 26px; padding: 2px; background: linear-gradient(130deg, #25D366, #b6ffd2 30%, #128a47 60%, #25D366); background-size: 220% 220%; animation: nw-borderflow 6s ease infinite; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.nw-emg-card:hover { transform: translateY(-7px); box-shadow: 0 34px 66px rgba(37,211,102,.24); }
.nw-emg-card.is-primary { box-shadow: 0 22px 56px rgba(37,211,102,.22); transform: translateY(-6px) scale(1.02); }
.nw-emg-card.is-primary:hover { transform: translateY(-12px) scale(1.02); }
.nw-emg-glow { position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 220px; height: 170px; background: radial-gradient(circle, rgba(37,211,102,.3), transparent 70%); opacity: .7; pointer-events: none; transition: opacity .25s ease; }
.nw-emg-card:hover .nw-emg-glow { opacity: 1; }

.nw-emg-badge { position: absolute; top: 18px; right: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; background: rgba(37,211,102,.14); color: #128a47; font-size: 11.5px; font-weight: 800; padding: 5px 11px; border-radius: 999px; }
.nw-emg-badge .nw-svg { width: 12px; height: 12px; }

.nw-emg-top { position: relative; z-index: 1; display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.nw-emg-icon { position: relative; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(145deg, #2be36e, #128a47); color: #fff; box-shadow: 0 12px 26px rgba(37,211,102,.45); }
.nw-emg-icon .nw-svg { width: 36px; height: 36px; position: relative; z-index: 1; }
.nw-emg-ring { position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: nw-emg-ripple 2.2s ease-out infinite; }
@keyframes nw-emg-ripple { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 100% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } }
.nw-emg-id { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.nw-emg-name { display: inline-flex; align-items: center; gap: 6px; font-size: 19px; margin: 0; }
.nw-emg-name .nw-vseal { width: 16px; height: 16px; }
.nw-emg-online { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: #1eaa57; }
.nw-emg-typing { display: inline-flex; align-items: center; gap: 3px; }
.nw-emg-typing i { width: 5px; height: 5px; border-radius: 50%; background: #25D366; display: inline-block; animation: nw-typing 1.3s ease-in-out infinite; }
.nw-emg-typing i:nth-child(2) { animation-delay: .2s; }
.nw-emg-typing i:nth-child(3) { animation-delay: .4s; }
@keyframes nw-typing { 0%,60%,100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }

.nw-emg-num { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 7px; font-family: ui-monospace, "Courier New", monospace; font-size: 17px; font-weight: 700; color: #0f7a3e; letter-spacing: .5px; background: rgba(37,211,102,.08); border: 1px dashed rgba(37,211,102,.35); border-radius: 10px; padding: 9px 13px; width: fit-content; margin-bottom: 12px; }
.nw-emg-num .nw-svg { width: 15px; height: 15px; }
.nw-emg-note { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--nw-muted); margin-bottom: 20px; }
.nw-emg-note .nw-svg { width: 13px; height: 13px; color: #1eaa57; }

.nw-emg-btn { position: relative; overflow: hidden; z-index: 1; margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 9px; width: 100%; background: linear-gradient(135deg, #25D366, #1eb558); color: #fff; font-weight: 800; font-size: 15.5px; padding: 15px 22px; border-radius: 999px; box-shadow: 0 14px 28px rgba(37,211,102,.42); transition: transform .15s ease, box-shadow .15s ease; }
.nw-emg-btn .nw-svg { width: 18px; height: 18px; }
.nw-emg-btn::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.4) 50%, transparent 65%); transform: translateX(-130%); animation: nw-amount-shine 3.6s ease-in-out infinite; }
.nw-emg-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(37,211,102,.52); }

@media (max-width: 620px) {
	.nw-emg-grid { grid-template-columns: 1fr; max-width: 380px; gap: 16px; }
	.nw-emg-card { padding: 18px; border-radius: 18px; }
	.nw-emg-border { border-radius: 18px; }
	.nw-emg-card.is-primary { transform: none; }
	.nw-emg-top { gap: 12px; margin-bottom: 14px; }
	.nw-emg-icon { width: 50px; height: 50px; }
	.nw-emg-icon .nw-svg { width: 28px; height: 28px; }
	.nw-emg-name { font-size: 17px; }
	.nw-emg-online { font-size: 12.5px; }
	.nw-emg-num { font-size: 15px; padding: 7px 11px; margin-bottom: 10px; }
	.nw-emg-note { margin-bottom: 14px; font-size: 12.5px; }
	.nw-emg-btn { padding: 12px 18px; font-size: 14.5px; }
	.nw-emg-badge { top: 12px; right: 12px; padding: 4px 9px; font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
	.nw-emg-bg, .nw-emg-deco, .nw-emg-border, .nw-emg-ring, .nw-emg-typing i, .nw-emg-btn::after { animation: none !important; }
}

/* ==========================================================================
   Blog listing + single article (premium)
   ========================================================================== */
.nw-blog-hero { position: relative; overflow: hidden; padding: 72px 0 64px; text-align: center; background: radial-gradient(800px 360px at 50% -30%, #FFD84D, rgba(255,216,77,0) 60%), linear-gradient(135deg, var(--nw-primary), var(--nw-primary-dark)); }
.nw-blog-hero-bg { position: absolute; inset: 0; opacity: .3; pointer-events: none; background-image: radial-gradient(rgba(21,22,26,.12) 1.3px, transparent 1.3px); background-size: 20px 20px; -webkit-mask-image: linear-gradient(180deg,#000,transparent 82%); mask-image: linear-gradient(180deg,#000,transparent 82%); }
.nw-blog-hero-orb { position: absolute; border-radius: 50%; filter: blur(16px); opacity: .5; mix-blend-mode: soft-light; background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,0)); pointer-events: none; }
.nw-blog-hero-orb-1 { width: 320px; height: 320px; right: -90px; top: -120px; animation: nw-float 9s ease-in-out infinite; }
.nw-blog-hero-orb-2 { width: 240px; height: 240px; left: -80px; bottom: -110px; animation: nw-float 11s ease-in-out infinite reverse; }
.nw-blog-deco { position: absolute; color: rgba(21,22,26,.16); pointer-events: none; }
.nw-blog-deco-1 { left: 8%; top: 26%; animation: nw-float 6s ease-in-out infinite; }
.nw-blog-deco-2 { right: 10%; top: 22%; animation: nw-float 8s ease-in-out infinite .5s; }
.nw-blog-deco-3 { right: 18%; bottom: 22%; animation: nw-float 7s ease-in-out infinite .3s; }
.nw-blog-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.nw-blog-hero .nw-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: var(--nw-dark); color: var(--nw-primary); }
.nw-blog-hero .nw-eyebrow .nw-svg { width: 14px; height: 14px; }
.nw-blog-hero-title { font-size: clamp(26px, 6.5vw, 52px); color: var(--nw-dark); margin: 16px 0 10px; letter-spacing: -.5px; }
.nw-blog-hero-sub { font-size: 17.5px; color: #4a3f1c; margin: 0 auto; max-width: 580px; }
.nw-blog-hero-stats { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.nw-blog-stat { display: inline-flex; align-items: center; gap: 7px; background: rgba(21,22,26,.9); color: #fff; font-size: 13.5px; font-weight: 700; padding: 8px 16px; border-radius: 999px; box-shadow: 0 8px 20px rgba(21,22,26,.18); }
.nw-blog-stat .nw-svg { width: 15px; height: 15px; color: var(--nw-primary); }

.nw-blog-wrap { padding: 56px 20px 70px; }
.nw-blog-grid { align-items: stretch; }
.nw-blog-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--nw-border); border-radius: 22px; overflow: hidden; box-shadow: 0 12px 34px rgba(20,22,30,.07); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.nw-blog-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 3; background: linear-gradient(90deg, var(--nw-primary), var(--nw-primary-dark)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.nw-blog-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(20,22,30,.14); border-color: rgba(255,196,0,.4); }
.nw-blog-card:hover::before { transform: scaleX(1); }
/* category-tinted accent + fallback */
.nw-bf-0 { --nw-blog-accent: #FFC400; } .nw-bf-1 { --nw-blog-accent: #21C15E; } .nw-bf-2 { --nw-blog-accent: #229ED9; }
.nw-bf-3 { --nw-blog-accent: #E5484D; } .nw-bf-4 { --nw-blog-accent: #8b5cf6; }
.nw-blog-card::before { background: linear-gradient(90deg, var(--nw-blog-accent, var(--nw-primary)), var(--nw-primary-dark)); }
.nw-blog-thumb { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--nw-section-alt); }
.nw-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.nw-blog-card:hover .nw-blog-thumb img { transform: scale(1.07); }
.nw-blog-thumb-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, var(--nw-blog-accent, var(--nw-primary)), var(--nw-dark)); opacity: .92; }
.nw-blog-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35)); opacity: 0; transition: opacity .25s ease; }
.nw-blog-card:hover .nw-blog-thumb::after { opacity: 1; }
.nw-blog-cat { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--nw-dark); color: var(--nw-primary); font-size: 11.5px; font-weight: 800; padding: 5px 13px; border-radius: 999px; box-shadow: 0 6px 16px rgba(21,22,26,.3); }
.nw-blog-rt { position: absolute; bottom: 14px; right: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,.92); color: var(--nw-dark); font-size: 11.5px; font-weight: 700; padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(4px); }
.nw-blog-rt .nw-svg { width: 12px; height: 12px; }
.nw-blog-body { display: flex; flex-direction: column; gap: 11px; padding: 22px; flex: 1; }
.nw-blog-title { font-size: 20px; line-height: 1.32; margin: 0; }
.nw-blog-title a { transition: color .15s ease; }
.nw-blog-title a:hover { color: var(--nw-primary-dark); }
.nw-blog-excerpt { color: var(--nw-muted); font-size: 14.5px; margin: 0; }
.nw-blog-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--nw-border); }
.nw-blog-author { display: inline-flex; align-items: center; gap: 9px; min-width: 0; }
.nw-blog-author img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--nw-primary); flex-shrink: 0; }
.nw-blog-author-txt { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.nw-blog-author-txt { font-weight: 700; font-size: 13px; color: var(--nw-text); }
.nw-blog-author-txt small { font-weight: 500; font-size: 11.5px; color: var(--nw-muted); }
.nw-blog-more { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--nw-section-alt); color: var(--nw-dark); flex-shrink: 0; transition: transform .15s ease, background .15s ease, color .15s ease; }
.nw-blog-more .nw-svg { width: 16px; height: 16px; }
.nw-blog-card:hover .nw-blog-more { background: var(--nw-dark); color: var(--nw-primary); transform: translateX(2px); }

/* ==========================================================================
   Mobile: slim cards + centered inner content (all card types)
   ========================================================================== */
@media (max-width: 620px) {
	/* generic + feature + why cards */
	.nw-card, .nw-feature { text-align: center; }
	.nw-feature-icon, .nw-card-icon { margin-left: auto; margin-right: auto; }
	/* trust features → compact 2-up */
	.nw-section-trust .nw-feature { padding: 16px 13px; }
	.nw-feature-icon { width: 46px; height: 46px; border-radius: 13px; margin-bottom: 10px; }
	.nw-feature-icon .nw-svg { width: 22px; height: 22px; }
	.nw-feature .nw-card-title { font-size: 14.5px; margin-bottom: 5px; }
	.nw-feature .nw-card-text { font-size: 12.5px; }

	/* process steps → slim + smaller fonts */
	.nw-step { max-width: 360px; padding: 22px 16px 20px; }
	.nw-step-badge { width: 52px; height: 52px; border-radius: 15px; margin-bottom: 12px; }
	.nw-step-badge::before { border-radius: 15px; }
	.nw-step-badge .nw-svg { width: 24px; height: 24px; }
	.nw-step-glyph { font-size: 20px; }
	.nw-step-count { width: 22px; height: 22px; font-size: 11px; top: -7px; right: -7px; }
	.nw-step-num { width: 44px; height: 44px; font-size: 18px; margin-bottom: 10px; }
	.nw-step .nw-card-title { font-size: 16px; }
	.nw-step .nw-card-text { font-size: 13.5px; }

	/* managed / partner site cards (mirror of official) */
	.nw-msite { max-width: 400px; padding: 20px; gap: 11px; text-align: center; align-items: center; }
	.nw-msite-top { width: 100%; justify-content: center; gap: 16px; margin-top: 10px; }
	.nw-msite-logo { width: 50px; height: 50px; border-radius: 13px; }
	.nw-msite-seal { width: 42px; height: 42px; }
	.nw-msite-title { font-size: 18px; }
	.nw-msite-host { justify-content: center; margin-top: 0; word-break: break-word; }
	.nw-msite-text { font-size: 14px; }
	.nw-msite-foot { flex-direction: column; gap: 10px; width: 100%; padding-top: 4px; }
	.nw-msite-badge { margin: 0 auto; }
	.nw-msite-btn { margin-left: 0; width: 100%; justify-content: center; }

	/* fake-site alert cards → compact 2-up, centered */
	.nw-fake { flex-direction: column; align-items: center; text-align: center; gap: 9px; padding: 14px 12px; border-left-width: 1px; border-top: 5px solid var(--nw-danger); }
	.nw-fake-body { align-items: center; gap: 6px; }
	.nw-fake-head { justify-content: center; gap: 7px; }
	.nw-fake-seal { width: 40px; height: 40px; }
	.nw-fake-seal .nw-svg { width: 18px; height: 18px; }
	.nw-fake-name { font-size: 14px; }
	.nw-fake-url { font-size: 11.5px; padding: 4px 8px; justify-content: center; }
	.nw-fake-reason { font-size: 12px; justify-content: center; text-align: left; }
	.nw-fake-status { font-size: 10px; padding: 4px 9px; }

	/* blog cards → centered body */
	.nw-blog-card { max-width: 420px; }
	.nw-blog-body { text-align: center; align-items: center; padding: 18px; }
	.nw-blog-foot { justify-content: center; }

	/* official-channel (social) cards → compact small design */
	.nw-social-card { max-width: 300px; padding: 16px 14px; }
	.nw-social-icon { width: 46px; height: 46px; margin: 0 auto 8px; }
	.nw-social-icon .nw-svg { width: 24px; height: 24px; }
	.nw-social-count { font-size: 22px; }
	.nw-social-label { font-size: 10px; margin-top: 2px; }
	.nw-social-card .nw-card-title { font-size: 14.5px; }
	.nw-social-btn { margin-top: 10px; padding: 9px 14px; font-size: 13.5px; }
	.nw-social-verify { top: 10px; right: 10px; }
	.nw-social-verify .nw-vseal { width: 18px; height: 18px; }

	/* scam-alert → slim + centered, smaller fonts */
	.nw-scam-intro { justify-content: center; text-align: center; gap: 12px; padding: 16px; margin-bottom: 22px; }
	.nw-scam-intro p { min-width: 0; flex-basis: 100%; font-size: 13.5px; }
	.nw-scam-report { margin: 4px auto 0; }
	.nw-scam-icon { width: 40px; height: 40px; }
	.nw-scam-icon .nw-svg { width: 20px; height: 20px; }
	.nw-scam-list { gap: 12px; }
	.nw-scam-tips { max-width: 440px; margin: 0 auto; padding: 20px 18px; border-radius: 16px; }
	.nw-scam-tips-title { display: flex; justify-content: center; font-size: 16px; margin-bottom: 14px; }
	.nw-scam-tips .nw-checklist { gap: 10px; }
	.nw-scam-tips .nw-checklist li { font-size: 13.5px; }
}

/* ---- Load more ---- */
.nw-loadmore { display: flex; justify-content: center; margin-top: 46px; }
.nw-loadmore-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: var(--nw-dark); color: #fff; font-weight: 800; font-size: 15.5px; padding: 15px 32px; border: 0; border-radius: 999px; cursor: pointer; box-shadow: 0 14px 30px rgba(21,22,26,.2); transition: transform .15s ease, box-shadow .15s ease; }
.nw-loadmore-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(21,22,26,.28); }
.nw-loadmore-label { display: inline-flex; align-items: center; gap: 9px; }
.nw-loadmore-label .nw-svg { width: 17px; height: 17px; color: var(--nw-primary); }
.nw-loadmore-spin { display: none; width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,.3); border-top-color: var(--nw-primary); border-radius: 50%; animation: nw-spin .7s linear infinite; }
.nw-loadmore-btn.is-loading .nw-loadmore-label { display: none; }
.nw-loadmore-btn.is-loading .nw-loadmore-spin { display: inline-block; }

.nw-blog-pagination { margin-top: 44px; }
.nw-blog-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.nw-blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border-radius: 12px; background: #fff; border: 1px solid var(--nw-border); font-weight: 700; color: var(--nw-text); transition: background .15s ease, color .15s ease; }
.nw-blog-pagination .page-numbers:hover { background: var(--nw-section-alt); }
.nw-blog-pagination .page-numbers.current { background: var(--nw-dark); color: var(--nw-primary); border-color: var(--nw-dark); }
.nw-blog-empty { text-align: center; padding: 60px 0; }
.nw-blog-empty-ico { display: inline-flex; color: var(--nw-primary-dark); margin-bottom: 12px; }

/* reading progress bar */
.nw-reading-bar { position: fixed; top: 0; left: 0; right: 0; height: 4px; z-index: 300; background: rgba(0,0,0,.06); }
.nw-reading-fill { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--nw-primary), var(--nw-accent)); box-shadow: 0 0 10px rgba(255,196,0,.5); transition: width .1s linear; }

.nw-article-hero { position: relative; overflow: hidden; padding: 70px 0 58px; background: radial-gradient(700px 320px at 80% -20%, rgba(255,196,0,.22), transparent 60%), linear-gradient(135deg, var(--nw-dark), var(--nw-dark-soft)); }
.nw-article-hero.has-img { padding: 150px 0 50px; background-image: var(--nw-hero-img); background-size: cover; background-position: center; }
.nw-article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,16,20,.5), rgba(15,16,20,.92)); }
.nw-article-hero-orb { position: absolute; top: -120px; right: -100px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,196,0,.25), transparent 70%); pointer-events: none; }
.nw-article-hero-inner { position: relative; z-index: 1; max-width: 860px; }
.nw-article-crumbs { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; color: #b9bdc4; margin-bottom: 18px; }
.nw-article-crumbs a { color: #d3d6db; transition: color .15s ease; }
.nw-article-crumbs a:hover { color: var(--nw-primary); }
.nw-article-crumbs span { opacity: .5; }
.nw-article-cat { display: inline-block; background: var(--nw-primary); color: var(--nw-dark); font-size: 12px; font-weight: 800; padding: 6px 15px; border-radius: 999px; margin-bottom: 16px; box-shadow: 0 8px 20px rgba(255,179,0,.3); }
.nw-article-title { font-size: clamp(26px, 6.5vw, 52px); color: #fff; line-height: 1.16; margin: 0 0 22px; letter-spacing: -.5px; }
.nw-article-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: #d3d6db; font-size: 14px; }
.nw-article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.nw-article-meta .nw-svg { width: 14px; height: 14px; color: var(--nw-primary); }
.nw-article-meta-div { width: 1px; height: 22px; background: rgba(255,255,255,.18); }
.nw-article-author { display: inline-flex; align-items: center; gap: 11px; color: #fff; }
.nw-article-author img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--nw-primary); }
.nw-article-author-txt { display: flex; flex-direction: column; line-height: 1.2; }
.nw-article-author-txt { font-weight: 700; }
.nw-article-author-txt small { font-weight: 500; font-size: 12px; color: #aeb3ba; }

/* layout: sticky share rail + main column */
.nw-article-layout { display: grid; grid-template-columns: 72px minmax(0, 760px); gap: 32px; justify-content: center; padding: 48px 20px 20px; }
.nw-article-rail { position: sticky; top: 90px; align-self: start; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.nw-rail-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--nw-muted); writing-mode: vertical-rl; margin-bottom: 4px; }
.nw-rail-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--nw-border); border-radius: 14px; background: #fff; color: var(--nw-dark); cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease; }
.nw-rail-btn:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 12px 24px rgba(20,22,30,.16); }
.nw-rail-btn .nw-svg { width: 18px; height: 18px; }
.nw-rail-copy.is-copied { background: var(--nw-accent); color: #fff; }
.nw-article-main { min-width: 0; }
.nw-article-content { font-size: 18px; line-height: 1.85; color: #2c2f35; }
.nw-article-content > * { margin: 0 0 1.3em; }
.nw-article-content h2 { font-size: 28px; margin: 1.6em 0 .6em; }
.nw-article-content h3 { font-size: 22px; margin: 1.4em 0 .5em; }
.nw-article-content a { color: var(--nw-primary-dark); text-decoration: underline; text-underline-offset: 3px; }
.nw-article-content img { border-radius: 16px; height: auto; }
.nw-article-content blockquote { border-left: 4px solid var(--nw-primary); background: var(--nw-section-alt); margin: 1.6em 0; padding: 18px 24px; border-radius: 0 14px 14px 0; font-size: 18px; font-style: italic; color: #45413a; }
.nw-article-content ul, .nw-article-content ol { padding-left: 1.3em; }
.nw-article-content li { margin-bottom: .5em; }

.nw-article-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 30px; color: var(--nw-muted); }
.nw-article-tags a { background: var(--nw-section-alt); color: var(--nw-dark); font-size: 13px; font-weight: 600; padding: 6px 13px; border-radius: 999px; }
.nw-article-tags a:hover { background: var(--nw-primary); }

.nw-article-share { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 26px; padding: 18px 0; border-top: 1px solid var(--nw-border); border-bottom: 1px solid var(--nw-border); }
.nw-article-share-label { font-weight: 800; margin-right: 4px; }
.nw-share { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: var(--nw-section-alt); color: var(--nw-dark); transition: transform .15s ease, background .15s ease, color .15s ease; }
.nw-share:hover { transform: translateY(-3px); color: #fff; }
.nw-share-fb:hover { background: #1877F2; }
.nw-share-wa:hover { background: #25D366; }
.nw-share-tg:hover { background: #229ED9; }
.nw-share-x:hover { background: #000; }
.nw-share .nw-svg { width: 18px; height: 18px; }

/* desktop hides the inline mobile share row (rail is used instead) */
.nw-article-share { display: none; }

/* CTA box */
.nw-article-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 34px; padding: 24px 26px; border-radius: 20px; background: linear-gradient(135deg, #16171c, var(--nw-dark)); color: #fff; box-shadow: 0 18px 44px rgba(21,22,26,.28); position: relative; overflow: hidden; }
.nw-article-cta::before { content: ""; position: absolute; top: -50px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(37,211,102,.3), transparent 70%); }
.nw-article-cta-ico { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #128a47); color: #fff; flex-shrink: 0; box-shadow: 0 10px 22px rgba(37,211,102,.4); }
.nw-article-cta-ico .nw-svg { width: 30px; height: 30px; }
.nw-article-cta-txt { position: relative; display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 180px; }
.nw-article-cta-txt strong { font-size: 18px; }
.nw-article-cta-txt span { color: #b9bdc4; font-size: 14px; }
.nw-article-cta-btn { position: relative; display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; font-weight: 800; padding: 12px 22px; border-radius: 999px; box-shadow: 0 12px 24px rgba(37,211,102,.4); transition: transform .15s ease; }
.nw-article-cta-btn:hover { transform: translateY(-2px); }
.nw-article-cta-btn .nw-svg { width: 17px; height: 17px; }

/* author box */
.nw-article-author-box { display: flex; align-items: flex-start; gap: 18px; background: #fff; border: 1px solid var(--nw-border); border-radius: 20px; padding: 26px; margin-top: 30px; box-shadow: 0 12px 30px rgba(20,22,30,.06); }
.nw-article-author-box img { width: 76px; height: 76px; border-radius: 50%; border: 3px solid var(--nw-primary); flex-shrink: 0; }
.nw-article-author-info { display: flex; flex-direction: column; gap: 3px; }
.nw-article-author-eyebrow { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--nw-primary-dark); }
.nw-article-author-eyebrow .nw-svg { width: 13px; height: 13px; color: var(--nw-accent); }
.nw-article-author-info strong { font-size: 20px; }
.nw-article-author-info p { margin: 4px 0 0; color: var(--nw-muted); font-size: 14.5px; }

.nw-article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.nw-article-nav-link { display: flex; flex-direction: column; gap: 5px; background: #fff; border: 1px solid var(--nw-border); border-radius: 16px; padding: 18px 20px; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.nw-article-nav-link:hover { transform: translateY(-3px); box-shadow: var(--nw-shadow); border-color: rgba(255,196,0,.4); }
.nw-article-nav .nw-next { text-align: right; align-items: flex-end; }
.nw-article-nav-dir { font-size: 12.5px; font-weight: 700; color: var(--nw-primary-dark); }
.nw-article-nav-title { font-weight: 700; font-size: 15px; }
.nw-related { margin-top: 20px; }

@media (max-width: 900px) {
	.nw-article-layout { grid-template-columns: 1fr; gap: 24px; }
	.nw-article-rail { position: static; flex-direction: row; justify-content: center; }
	.nw-rail-label { display: none; }
}
@media (max-width: 620px) {
	.nw-article-nav { grid-template-columns: 1fr; }
	.nw-article-nav .nw-next { text-align: left; align-items: flex-start; }
	.nw-article-author-box { flex-direction: column; }
}
