/*
 * How It Works – [projectname_how_it_works]
 * Scoped entirely under .pn-howitworks — zero global bleed.
 *
 * Design tokens (Figma):
 *   Primary indigo:   #6366f1
 *   Primary purple:   #8b5cf6
 *   Primary violet:   #a855f7
 *   Gradient primary: linear-gradient(165deg,#6366f1,#8b5cf6)
 *   Text dark:        #101828
 *   Text body:        #6a7282
 *   Text muted:       #99a1af
 *   Border soft:      rgba(99,102,241,.1)
 *   Border card:      rgba(0,0,0,.07)
 *   Card bg:          #ffffff
 *   Section alt bg:   #f9f9fc
 *   Card radius:      24px
 *   Button radius:    16px
 *   Icon radius:      14px
 */

/* ─────────────────────────────────────────────────────────────────────────────
   Reset / box-model
   ───────────────────────────────────────────────────────────────────────────── */

.pn-howitworks *,
.pn-howitworks *::before,
.pn-howitworks *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.pn-howitworks {
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: #101828;
	line-height: 1.5;
	overflow-x: hidden;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Container
   ───────────────────────────────────────────────────────────────────────────── */

.pn-hiw-container {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: 48px;
}

.pn-hiw-container--narrow {
	max-width: 768px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Shared typography helpers
   ───────────────────────────────────────────────────────────────────────────── */

.pn-hiw-eyebrow {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	text-align: center;
}

.pn-hiw-section-title {
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 600;
	line-height: 1.15;
	text-align: center;
	color: #101828;
}

.pn-hiw-section-sub {
	font-size: 16px;
	color: #99a1af;
	text-align: center;
	line-height: 1.6;
}

.pn-hiw-section-sub--narrow {
	max-width: 540px;
	margin-inline: auto;
}

.pn-hiw-gradient-text {
	background: linear-gradient(150deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.pn-hiw-gradient-text--light {
	background: linear-gradient(163deg, #a78bfa 0%, #c084fc 50%, #f0abfc 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Shared button styles
   ───────────────────────────────────────────────────────────────────────────── */

.pn-hiw-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 28px;
	border-radius: 16px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
	white-space: nowrap;
}

.pn-hiw-btn--primary {
	background: linear-gradient(166deg, #6366f1 0%, #8b5cf6 100%);
	color: #fff;
	box-shadow: 0 8px 28px rgba(99, 102, 241, 0.35);
}

.pn-hiw-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 36px rgba(99, 102, 241, 0.5);
	opacity: 0.93;
	color: #fff;
	text-decoration: none;
}

.pn-hiw-btn--glow {
	box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5);
}

.pn-hiw-btn--secondary {
	background: #fff;
	color: #1e2939;
	border: 1px solid #e5e7eb;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pn-hiw-btn--secondary:hover {
	background: #f5f3ff;
	border-color: #c7d2fe;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(99, 102, 241, 0.12);
	color: #4f46e5;
	text-decoration: none;
}

.pn-hiw-btn--ghost {
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.pn-hiw-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
	color: #fff;
	text-decoration: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Shared card base
   ───────────────────────────────────────────────────────────────────────────── */

.pn-hiw-card {
	background: #fff;
	border: 1px solid rgba(99, 102, 241, 0.1);
	border-radius: 24px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
	padding: 24px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pn-hiw-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(99, 102, 241, 0.14);
	border-color: rgba(99, 102, 241, 0.25);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Badge pill
   ───────────────────────────────────────────────────────────────────────────── */

.pn-hiw-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	background: #eef2ff;
	border: 1px solid #e0e7ff;
	border-radius: 999px;
	font-size: 14px;
	color: #4f39f6;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pn-hiw-badge--dark {
	background: rgba(99, 102, 241, 0.15);
	border-color: rgba(139, 92, 246, 0.3);
	color: #c4b5fd;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Icon helpers
   ───────────────────────────────────────────────────────────────────────────── */

.pn-hiw-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 16px;
	background: rgba(99, 102, 241, 0.06);
	flex-shrink: 0;
}

.pn-hiw-icon-wrap--purple { background: rgba(139, 92, 246, 0.06); }
.pn-hiw-icon-wrap--violet { background: rgba(168, 85, 247, 0.06); }
.pn-hiw-icon-wrap--pink   { background: rgba(236, 72, 153, 0.06); }

.pn-hiw-icon-inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 14px;
	flex-shrink: 0;
}

.pn-hiw-feat-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	margin-bottom: 4px;
	flex-shrink: 0;
	overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Section 1 – HERO
   ───────────────────────────────────────────────────────────────────────────── */

.pn-hiw-hero {
	position: relative;
	background: #fff;
	padding-block: 80px 0;
	overflow: hidden;
	min-height: 760px;
	display: flex;
	flex-direction: column;
}

.pn-hiw-glow {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.pn-hiw-glow--right {
	width: 610px;
	height: 610px;
	background: radial-gradient(circle, rgba(99,102,241,.18) 0%, rgba(50,51,121,.09) 45%, transparent 70%);
	top: -166px;
	right: -80px;
}

.pn-hiw-glow--left {
	width: 518px;
	height: 518px;
	background: radial-gradient(circle, rgba(139,92,246,.15) 0%, rgba(70,46,123,.075) 45%, transparent 70%);
	bottom: -80px;
	left: -105px;
}

.pn-hiw-hero-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 24px;
	padding-bottom: 80px;
	position: relative;
	z-index: 1;
}

.pn-hiw-hero-title {
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -1.8px;
	color: #101828;
	max-width: 720px;
}

.pn-hiw-hero-sub {
	font-size: 20px;
	color: #6a7282;
	line-height: 1.625;
	max-width: 620px;
}

.pn-hiw-hero-btns {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

/* Stats row */
.pn-hiw-hero-stats {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	justify-content: center;
	color: #99a1af;
	font-size: 14px;
}

.pn-hiw-stat {
	display: flex;
	align-items: center;
	gap: 10px;
}

.pn-hiw-stat-divider {
	width: 1px;
	height: 16px;
	background: #e5e7eb;
}

.pn-hiw-stat-avatars {
	display: flex;
}

.pn-hiw-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid #fff;
	margin-right: -8px;
	display: block;
}

.pn-hiw-avatar:last-child { margin-right: 0; }

.pn-hiw-stars {
	display: flex;
	gap: 2px;
}

/* Scroll hint */
.pn-hiw-scroll-hint {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	color: #99a1af;
	font-size: 12px;
	padding-bottom: 24px;
	position: relative;
	z-index: 1;
}

.pn-hiw-scroll-mouse {
	width: 20px;
	height: 32px;
	border: 1.8px solid #d1d5dc;
	border-radius: 999px;
	position: relative;
}

.pn-hiw-scroll-mouse::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 6px;
	transform: translateX(-50%);
	width: 4px;
	height: 8px;
	background: #99a1af;
	border-radius: 999px;
	animation: pn-scroll-bob 1.5s ease-in-out infinite;
}

@keyframes pn-scroll-bob {
	0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
	50%       { transform: translateX(-50%) translateY(4px); opacity: 0.5; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Section 2 – JOURNEY / TABS
   ───────────────────────────────────────────────────────────────────────────── */

.pn-hiw-journey {
	background: #fff;
	padding-block: 32px 40px;
}

.pn-hiw-journey .pn-hiw-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.pn-hiw-tabs {
	display: flex;
	gap: 0;
	background: linear-gradient(170deg, #f8f8fb, #f0f0f6);
	border: 1px solid rgba(99, 102, 241, 0.1);
	border-radius: 24px;
	padding: 8px;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
	margin-top: 8px;
}

.pn-hiw-tab {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 24px;
	border-radius: 16px;
	border: 1px solid transparent;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	text-align: left;
	position: relative;
}

.pn-hiw-tab:hover:not(.pn-hiw-tab--active) {
	background: rgba(255, 255, 255, 0.75);
	border-color: rgba(99, 102, 241, 0.15);
}

.pn-hiw-tab--active {
	background: linear-gradient(163deg, #fff 0%, #fafaff 100%);
	border-color: rgba(99, 102, 241, 0.12);
	box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15), 0 1px 4px rgba(0, 0, 0, 0.08);
}

.pn-hiw-tab-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 14px;
	background: rgba(99, 102, 241, 0.12);
	color: #6366f1; /* SVG currentColor → indigo when inactive */
	flex-shrink: 0;
	transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.pn-hiw-tab-icon--active {
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
	color: #fff; /* SVG currentColor → white on gradient */
}

.pn-hiw-tab-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.pn-hiw-tab-text strong {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
}

.pn-hiw-tab--active .pn-hiw-tab-text strong { color: #111827; }

/* Inactive: readable dark text, not washed-out */
.pn-hiw-tab:not(.pn-hiw-tab--active) .pn-hiw-tab-text strong { color: #374151; }

.pn-hiw-tab-text small {
	font-size: 12px;
	font-weight: 500;
	color: #6b7280;
}

.pn-hiw-tab:not(.pn-hiw-tab--active) .pn-hiw-tab-text small { color: #6b7280; }

/* ─────────────────────────────────────────────────────────────────────────────
   Section 3 – STEPS
   ───────────────────────────────────────────────────────────────────────────── */

.pn-hiw-steps {
	background: #f9f9fc;
	padding-block: 80px;
	position: relative;
	overflow: hidden;
}

.pn-hiw-steps::before {
	content: '';
	position: absolute;
	width: 384px;
	height: 384px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(99,102,241,.12) 0%, transparent 70%);
	top: -115px;
	right: -80px;
	pointer-events: none;
}

.pn-hiw-steps::after {
	content: '';
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(139,92,246,.1) 0%, transparent 70%);
	bottom: -80px;
	left: -96px;
	pointer-events: none;
}

.pn-hiw-steps-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-bottom: 48px;
}

.pn-hiw-step-connector {
	height: 2px;
	width: calc(100% - 200px);
	margin-inline: auto;
	background: linear-gradient(90deg,
		rgba(99,102,241,0) 0%,
		rgba(99,102,241,.2) 20%,
		rgba(139,92,246,.3) 50%,
		rgba(168,85,247,.2) 80%,
		rgba(168,85,247,0) 100%);
	border-radius: 99px;
	margin-bottom: -2px;
	position: relative;
	z-index: 1;
}

/* Step cards grid */
.pn-hiw-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	position: relative;
	z-index: 2;
}

.pn-hiw-cards--hidden {
	display: none;
}

.pn-hiw-step-card {
	border: 1px solid rgba(99, 102, 241, 0.1);
}

.pn-hiw-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.pn-hiw-step-num {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.44px;
	color: #d1d5db;
}

.pn-hiw-step-card h3 {
	font-size: 17px;
	font-weight: 600;
	color: #101828;
	margin-bottom: 10px;
}

.pn-hiw-step-card p {
	font-size: 14px;
	color: #6a7282;
	line-height: 1.625;
}

.pn-hiw-steps-cta {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Section 4 – FEATURES ("Built for everyone")
   ───────────────────────────────────────────────────────────────────────────── */

.pn-hiw-features {
	background: #fff;
	padding-block: 96px;
	position: relative;
	overflow: hidden;
}

.pn-hiw-features::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(99,102,241,.15) 50%, transparent);
}

.pn-hiw-features .pn-hiw-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.pn-hiw-feat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
	margin-top: 48px;
}

.pn-hiw-feat-card {
	border: 1px solid rgba(0, 0, 0, 0.07);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pn-hiw-feat-card:hover {
	border-color: rgba(99, 102, 241, 0.2);
	box-shadow: 0 8px 32px rgba(99, 102, 241, 0.12);
}

.pn-hiw-feat-card h3 {
	font-size: 17px;
	font-weight: 600;
	color: #101828;
}

.pn-hiw-feat-card p {
	font-size: 14px;
	color: #6a7282;
	line-height: 1.625;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Section 5 – FAQ
   ───────────────────────────────────────────────────────────────────────────── */

.pn-hiw-faq {
	background: #f9f9fc;
	padding-block: 96px;
	position: relative;
}

.pn-hiw-faq::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(139,92,246,.15) 50%, transparent);
}

.pn-hiw-faq .pn-hiw-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.pn-hiw-faq-icon {
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pn-hiw-faq-list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}

.pn-hiw-faq-item {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}

.pn-hiw-faq-item:hover {
	box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.pn-hiw-faq-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 24px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	color: #111827;
	transition: background 0.2s ease;
}

.pn-hiw-faq-btn:hover {
	background: rgba(99, 102, 241, 0.03);
}

.pn-hiw-faq-icon-btn {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 14px;
	background: rgba(99, 102, 241, 0.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #6366f1;
	transition: background 0.2s ease, transform 0.2s ease;
}

.pn-hiw-faq-btn[aria-expanded="true"] .pn-hiw-faq-icon-btn {
	background: rgba(99, 102, 241, 0.15);
}

.pn-hiw-faq-plus  { display: block; }
.pn-hiw-faq-minus { display: none; }

.pn-hiw-faq-btn[aria-expanded="true"] .pn-hiw-faq-plus  { display: none; }
.pn-hiw-faq-btn[aria-expanded="true"] .pn-hiw-faq-minus { display: block; }

.pn-hiw-faq-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.25s ease;
}

.pn-hiw-faq-body.pn-hiw-faq-open {
	max-height: 300px;
}

.pn-hiw-faq-body p {
	padding: 0 24px 22px;
	font-size: 14px;
	color: #6a7282;
	line-height: 1.7;
}

.pn-hiw-faq-footer {
	font-size: 14px;
	color: #99a1af;
	text-align: center;
	margin-top: 8px;
}

.pn-hiw-faq-footer a {
	color: #6366f1;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.pn-hiw-faq-footer a:hover {
	color: #4f46e5;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Section 6 – FINAL CTA BAND
   ───────────────────────────────────────────────────────────────────────────── */

.pn-hiw-cta-band {
	background: linear-gradient(156deg, #0f0f1a 0%, #1a1040 40%, #0d1030 100%);
	padding-block: 96px;
	position: relative;
	overflow: hidden;
}

.pn-hiw-cta-glow {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.pn-hiw-cta-glow--right {
	width: 677px;
	height: 677px;
	background: radial-gradient(circle, rgba(99,102,241,.3) 0%, rgba(50,51,121,.15) 35%, transparent 65%);
	top: -270px;
	right: -150px;
}

.pn-hiw-cta-glow--left {
	width: 504px;
	height: 504px;
	background: radial-gradient(circle, rgba(139,92,246,.25) 0%, rgba(70,46,123,.125) 35%, transparent 65%);
	bottom: -100px;
	left: -110px;
}

.pn-hiw-cta-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 24px;
}

.pn-hiw-cta-title {
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
}

.pn-hiw-cta-sub {
	font-size: 20px;
	color: rgba(196, 181, 253, 0.7);
	line-height: 1.625;
	max-width: 600px;
}

.pn-hiw-cta-btns {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

.pn-hiw-cta-note {
	font-size: 14px;
	color: rgba(196, 181, 253, 0.4);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Reduced-motion overrides
   ───────────────────────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
	.pn-howitworks *,
	.pn-howitworks *::before,
	.pn-howitworks *::after {
		transition: none !important;
		animation: none !important;
	}

	.pn-hiw-btn:hover,
	.pn-hiw-card:hover {
		transform: none !important;
	}
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive – tablet (≤ 1024px)
   ───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.pn-hiw-container {
		padding-inline: 32px;
	}

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

	.pn-hiw-step-connector {
		display: none;
	}

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

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive – mobile (≤ 640px)
   ───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
	.pn-hiw-container {
		padding-inline: 20px;
	}

	.pn-hiw-hero {
		min-height: auto;
		padding-block: 56px 0;
	}

	.pn-hiw-hero-title {
		letter-spacing: -1px;
	}

	.pn-hiw-hero-sub {
		font-size: 17px;
	}

	.pn-hiw-hero-btns {
		flex-direction: column;
		width: 100%;
	}

	.pn-hiw-btn {
		justify-content: center;
	}

	.pn-hiw-hero-stats {
		flex-direction: column;
		gap: 12px;
	}

	.pn-hiw-stat-divider {
		width: 40px;
		height: 1px;
	}

	.pn-hiw-tabs {
		flex-direction: column;
		width: 100%;
	}

	.pn-hiw-tab {
		width: 100%;
	}

	.pn-hiw-cards {
		grid-template-columns: 1fr;
	}

	.pn-hiw-feat-grid {
		grid-template-columns: 1fr;
	}

	.pn-hiw-cta-btns {
		flex-direction: column;
		width: 100%;
	}

	.pn-hiw-scroll-hint {
		display: none;
	}

	.pn-hiw-steps,
	.pn-hiw-features,
	.pn-hiw-faq,
	.pn-hiw-cta-band {
		padding-block: 64px;
	}
}
