.wrap {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

.cta {
	display: flex;
	gap: 10px;
	margin: 20px 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 12px;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, .1);
	transition: .2s ease;
	cursor: pointer;
	white-space: nowrap;
}

.btn--primary {
	background: #17a200;
	color: #ffffff;
	border: none;
	border-radius: 999px;
	text-decoration: none;
}

.btn--ghost {
	background: transparent;
	padding: 0 10px;
}

.btn--primary:hover {
	color: #fff;
}

.btn svg {
	width: 18px;
	height: 18px
}

/* Hero */
.hero {
	position: relative;
    padding: 40px 30px;
    background: #ececec;
    border-radius: 20px;
	margin-top: 40px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 28px
}

.hero h2 {
	font-size: clamp(28px, 5vw, 44px);
	line-height: 1.05;
	margin: 20px 0;
}

.lead {
	font-size: clamp(16px, 2.2vw, 19px);
	color: #212121;
	margin-bottom: 22px
}

.hero-card {
	background: #fed625;
	border-radius: 20px;
	width: 450px;
}

.hero-card .inner {
	padding: 22px;
	width: 100%;
}

.hero-card h3 {
	font-size: 24px;
	margin-bottom: 20px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #111827;
    background: #fed625;
    padding: 8px 15px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat {
	margin-top: 30px;
	font-size: 20px;
}

.stat b {
	font-size: 20px;
}

/* Steps */
.section {
	padding: 80px 0 0 0;
}

.section h2 {
	font-size: clamp(22px, 3.2vw, 32px);
	margin: 0 0 18px
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px
}

.card {
	background: #ececec;
	border-radius: 20px;
}

.card .inner {
	padding: 40px 30px;
}

.card .pre {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #212121;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .12em;
	margin-bottom: 15px
}

.card .title {
	font-weight: 700;
	font-size: 18px;
	margin: 0 0 6px
}

.card p {
	margin: 0;
	color: #212121;
	font-size: 16px;
}

.icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: #fed625;
	display: grid;
	place-items: center;
	color: #212121;
}

.icon svg {
	width: 22px;
	height: 22px
}

/* Why */
.list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none
}

.li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 0;
	margin-bottom: 10px;
	font-size: 18px;
}

.li svg {
	flex: 0 0 18px;
	margin-top: 3px
}

/* Calculator */
.calc {
	width: 100%;
}

.input {
	display: block;
    align-items: center;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #fed625;
    border-radius: 10px;
	box-shadow: 0px 6px 15px -18px #000000 inset;
	width: 100%;
	margin-bottom: 20px;
}

.input input {
	flex: 1;
	background: transparent;
	border: 0;
	outline: none;
	color: #212121;
    font-size: 20px;
    width: 100%;
}

.hint {
	color: #212121;
	font-size: 16px
}

.hint-start {
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .1);
	background: rgba(255, 255, 255, .04);
	font-weight: 600
}

/* FAQ */
details {
	padding: 0;
	border-bottom: 1px dashed #d2d2d2;
	margin-bottom: 15px;
	padding-bottom: 10px;
}

details summary {
	cursor: pointer;
	list-style: none;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 18px;
}

details[open] {
	background: rgba(255, 255, 255, .06)
}

.section-bottom {
	padding-bottom: 80px;
}

/* Responsive */
@media (max-width: 980px) {
	.hero-grid {
		grid-template-columns: 1fr
	}

	.grid-3 {
		grid-template-columns: 1fr
	}
}

@media (max-width: 724px) {
	.hero-card {
		width: 100%;
	}
	
	.hero, .card .inner {
		padding: 18px 18px;
	}
	
	.cta {
		display: grid;
		gap: 10px;
		margin: 20px 0;
	}
	
	.stat {
		margin-top: 0;
		font-size: 16px !important;
		text-align: center;
	}
	
	.stat b {
		display: block;
		font-size: 16px;
	}
		
	.hero h2 {
		font-size: 20px;
	}
	
	.hero-card h3 {
		font-size: 20px;
	}
	
	.input input {
		font-size: 16px;
	}
	
	.section {
		padding: 40px 0 0 0;
	}
	
	.li {
		font-size: 16px;
	}
	
	.section-bottom {
		padding-bottom: 40px;
	}
}