@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

.hw-page {
	--accent: #00a857;
	--accent-bright: #00bf63;
	--gold: #c9a227;
	--ink: #122018;
	--muted: #5a6f63;
	--line: rgba(18, 32, 24, 0.1);
	--panel: rgba(255, 255, 255, 0.92);
	--soft: #e7f6ee;
	position: relative;
	isolation: isolate;
	padding: 1.75rem 0 2.5rem;
	font-family: 'DM Sans', system-ui, sans-serif;
	color: var(--ink);
	background:
		radial-gradient(900px 420px at 12% -10%, rgba(0, 191, 99, 0.2), transparent 55%),
		radial-gradient(700px 380px at 88% 6%, rgba(56, 178, 172, 0.14), transparent 50%),
		linear-gradient(180deg, #eef7f2 0%, #e2f0e8 42%, #d8ebe1 100%);
	min-height: calc(100vh - 140px);
	overflow: hidden;
}
.hw-page::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.4;
	background-image:
		linear-gradient(rgba(0, 168, 87, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 168, 87, 0.04) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 25%, #000 20%, transparent 75%);
}
.hw {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	animation: hw-enter 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes hw-enter {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}

.hw-card {
	background: var(--panel);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 18px;
	padding: 1.25rem 1.3rem;
	margin-bottom: 0.85rem;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 12px 28px rgba(18, 48, 32, 0.07);
}
.hw-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}
.hw-head:last-child { margin-bottom: 0; }
.hw-title {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0;
	font-family: Outfit, sans-serif;
	font-size: 1.05rem;
	font-weight: 750;
	letter-spacing: -0.02em;
	color: var(--ink);
}
.hw-title i {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #dff7ea, #c8efd9);
	color: var(--accent);
	font-size: 0.95rem;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}
.hw-sub {
	margin: 0.3rem 0 0;
	font-size: 0.86rem;
	color: var(--muted);
}

.hw-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: hw-step;
}
.hw-step {
	counter-increment: hw-step;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.8rem 0;
	border-bottom: 1px solid var(--line);
	font-size: 0.9rem;
	line-height: 1.5;
	color: #2a3d32;
}
.hw-step:last-child { border-bottom: 0; padding-bottom: 0; }
.hw-step:first-child { padding-top: 0; }
.hw-step::before {
	content: counter(hw-step);
	width: 28px;
	height: 28px;
	border-radius: 9px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: Outfit, sans-serif;
	font-size: 0.78rem;
	font-weight: 750;
	background: var(--soft);
	color: var(--accent);
	border: 1px solid rgba(0, 168, 87, 0.2);
	margin-top: 0.05rem;
}
.hw-step strong { color: var(--ink); font-weight: 750; }

.hw-rates {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.65rem;
	margin-bottom: 0.9rem;
}
.hw-rate {
	padding: 0.95rem 0.85rem;
	border-radius: 14px;
	border: 1px solid var(--line);
	background: #fff;
	text-align: center;
	box-shadow: 0 6px 14px rgba(18, 48, 32, 0.04);
}
.hw-rate b {
	display: block;
	font-family: Outfit, sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--accent);
	line-height: 1.2;
	margin-bottom: 0.25rem;
	letter-spacing: -0.02em;
}
.hw-rate span {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted);
}

.hw-note {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	padding: 0.8rem 0.95rem;
	border-radius: 12px;
	border: 1px solid rgba(0, 168, 87, 0.22);
	background: var(--soft);
	font-size: 0.86rem;
	line-height: 1.5;
	color: #2a3d32;
}
.hw-note i {
	color: var(--accent);
	font-size: 1.05rem;
	flex-shrink: 0;
	margin-top: 0.1rem;
}
.hw-note strong { color: var(--accent); font-weight: 750; }

.hw-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.hw-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--line);
	font-size: 0.9rem;
	line-height: 1.5;
	color: #2a3d32;
}
.hw-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.hw-list li:first-child { padding-top: 0; }
.hw-list li::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	flex-shrink: 0;
	margin-top: 0.45rem;
	box-shadow: 0 0 0 3px rgba(0, 168, 87, 0.15);
}
.hw-list strong { color: var(--ink); font-weight: 750; }

.hw-comms {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.65rem;
	margin-bottom: 0.95rem;
}
.hw-comm {
	padding: 1rem 1.05rem;
	border-radius: 14px;
	border: 1px solid var(--line);
	background: #fff;
	box-shadow: 0 6px 14px rgba(18, 48, 32, 0.04);
}
.hw-comm.premium {
	border-color: rgba(201, 162, 39, 0.3);
	background: linear-gradient(180deg, #fffef8 0%, #fff 100%);
}
.hw-comm-label {
	font-size: 0.7rem;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--muted);
	margin-bottom: 0.3rem;
}
.hw-comm.premium .hw-comm-label { color: #8a7018; }
.hw-comm-rate {
	font-family: Outfit, sans-serif;
	font-size: 1.65rem;
	font-weight: 800;
	color: var(--accent);
	line-height: 1.1;
	margin-bottom: 0.25rem;
	letter-spacing: -0.03em;
}
.hw-comm.premium .hw-comm-rate { color: var(--gold); }
.hw-comm-desc {
	font-size: 0.8rem;
	color: var(--muted);
	line-height: 1.4;
}
.hw-comm-price {
	font-size: 0.76rem;
	color: #8a7018;
	font-weight: 650;
	margin-bottom: 0.25rem;
}

.hw-block {
	padding: 0.8rem 0;
	border-bottom: 1px solid var(--line);
}
.hw-block:last-of-type { border-bottom: 0; }
.hw-block-h {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 0.45rem;
	font-family: Outfit, sans-serif;
	font-size: 0.9rem;
	font-weight: 750;
	color: var(--ink);
}
.hw-block-h i { color: var(--accent); font-size: 0.95rem; }
.hw-block p {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.5;
	color: var(--muted);
}

.hw-rewards {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.hw-reward {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0.85rem;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: #fff;
}
.hw-reward.premium {
	border-color: rgba(201, 162, 39, 0.28);
	background: linear-gradient(180deg, #fffef8 0%, #fff 100%);
}
.hw-reward-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: var(--soft);
	color: var(--accent);
	font-size: 0.95rem;
	border: 1px solid rgba(0, 168, 87, 0.18);
}
.hw-reward.premium .hw-reward-icon {
	background: rgba(201, 162, 39, 0.14);
	color: #8a7018;
	border-color: rgba(201, 162, 39, 0.25);
}
.hw-reward strong {
	display: block;
	font-family: Outfit, sans-serif;
	font-size: 0.92rem;
	font-weight: 750;
	color: var(--ink);
}
.hw-reward span {
	font-size: 0.78rem;
	color: var(--muted);
}

.hw-benefits {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.55rem;
	margin: 0.95rem 0;
}
.hw-benefit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.75rem 0.8rem;
	border-radius: 12px;
	border: 1px solid rgba(0, 168, 87, 0.22);
	background: var(--soft);
	font-size: 0.82rem;
	font-weight: 700;
	color: #1a2e22;
	text-align: center;
}
.hw-benefit i { color: var(--accent); }

.hw-cta {
	display: flex;
	justify-content: center;
	margin-top: 0.5rem;
}
.hw-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	padding: 0.8rem 1.4rem;
	border: none;
	border-radius: 12px;
	font-family: Outfit, sans-serif;
	font-size: 0.92rem;
	font-weight: 750;
	background: linear-gradient(135deg, #00bf63, #009a4f);
	color: #fff !important;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0, 168, 87, 0.26);
	transition: transform 0.2s ease, filter 0.2s ease;
}
.hw-cta-btn:hover {
	filter: brightness(1.05);
	color: #fff !important;
	transform: translateY(-2px);
}

@media (max-width: 767.98px) {
	.hw-rates { grid-template-columns: 1fr; }
	.hw-comms { grid-template-columns: 1fr; }
	.hw-benefits { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
	.hw { animation: none; }
	.hw-cta-btn:hover { transform: none; }
}
