:root {
	--gold: #FFB703;
	--navy: #022152;
	--ink: #333333;
	--muted: #5b6170;
	--line: #d8d9e0;
	--paper: #ffffff;
	--wash: #f3f4f7;
	--green: #1f9d55;
	--radius: 10px;
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	font-family: "Plus Jakarta Sans", Arial, sans-serif;
	color: var(--ink);
	background: var(--paper);
	min-height: 100%;
}

a { color: inherit; }

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 40px;
	border-bottom: 1px solid var(--line);
	background: var(--paper);
}

.site-logo {
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--navy);
	text-decoration: none;
	font-size: 15px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 13.5px;
}

.site-nav a {
	text-decoration: none;
	color: var(--ink);
}

.site-main {
	min-height: calc(100vh - 140px);
}

.site-footer {
	padding: 24px 40px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 12.5px;
}

.btn {
	display: inline-block;
	background: var(--gold);
	color: var(--ink);
	font-weight: 700;
	font-size: 13.5px;
	padding: 10px 22px;
	border-radius: 7px;
	border: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
}

.btn.secondary {
	background: transparent;
	border: 1.5px solid var(--navy);
	color: var(--navy);
}

.btn.ghost {
	background: var(--wash);
	border: 1px solid var(--line);
}

.btn.full {
	display: block;
	width: 100%;
}

.hero {
	text-align: center;
	padding: 72px 40px 48px;
	background: var(--navy);
	color: #fff;
}

.hero h1 {
	margin: 0 0 12px;
	font-size: 36px;
	line-height: 1.2;
}

.hero p {
	max-width: 560px;
	margin: 0 auto 24px;
	color: rgba(255,255,255,.82);
	font-size: 16px;
	line-height: 1.6;
}

.section {
	max-width: 920px;
	margin: 0 auto;
	padding: 48px 24px 72px;
}

.section.narrow { max-width: 480px; }
.section.mid { max-width: 560px; }

.center { text-align: center; }

.feature-strip {
	display: flex;
	justify-content: center;
	gap: 28px;
	flex-wrap: wrap;
	margin: 28px 0 8px;
}

.chip {
	font-weight: 600;
	color: var(--muted);
}

.form-wrap h1,
.section h1 {
	font-size: 26px;
	margin: 0 0 10px;
}

.intro {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 24px;
}

.field { text-align: left; margin-bottom: 16px; }
.field label {
	display: block;
	font-size: 12.5px;
	font-weight: 700;
	margin-bottom: 6px;
}

.field input,
.field select {
	width: 100%;
	padding: 11px 12px;
	border: 1.5px solid var(--line);
	border-radius: 7px;
	font-size: 13.5px;
	font-family: inherit;
	color: var(--ink);
}

.field-row {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 8px;
}

.field-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.hint {
	font-size: 11.5px;
	color: var(--muted);
	margin-top: 5px;
}

.alert {
	background: #fff4e0;
	border: 1px solid #f0d08a;
	border-radius: 8px;
	padding: 12px 14px;
	font-size: 13px;
	margin-bottom: 18px;
}

.alert.error {
	background: #fff1f1;
	border-color: #f0b4b4;
}

.recap-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--wash);
	border-radius: 8px;
	padding: 14px 18px;
	font-size: 13px;
	margin-bottom: 22px;
}

.recap-bar a { font-weight: 700; }

.plans-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}

.plan-card,
.billing-option {
	border: 1.5px solid var(--line);
	border-radius: 12px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	background: var(--paper);
}

.plan-card.selected,
.billing-option.selected {
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(255,183,3,.25);
	background: #fff8e6;
}

.plan-card h2 { margin: 0 0 12px; font-size: 18px; }
.plan-card ul {
	margin: 0 0 16px;
	padding-left: 18px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.7;
}

.price {
	font-size: 22px;
	font-weight: 800;
	margin: 8px 0 4px;
}

.price-note,
.meta-line {
	font-size: 12px;
	color: var(--muted);
	margin-bottom: 4px;
}

.spacer { flex: 1; }

.billing-option {
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
}

.billing-option h2 { font-size: 16px; margin: 0 0 4px; }
.badge-save {
	display: inline-block;
	background: var(--green);
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 12px;
	margin-left: 8px;
}

.total-line {
	display: flex;
	justify-content: space-between;
	font-weight: 700;
	border-top: 1px solid var(--line);
	padding-top: 16px;
	margin: 8px 0 20px;
}

.checkout-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.form-side { padding: 36px; }
.summary-side {
	padding: 36px;
	background: var(--wash);
}

.summary-row {
	display: flex;
	justify-content: space-between;
	font-size: 13.5px;
	margin-bottom: 10px;
	color: var(--muted);
}

.summary-row.total {
	font-weight: 800;
	color: var(--ink);
	border-top: 1px solid var(--line);
	padding-top: 12px;
	margin-top: 12px;
}

.info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 20px;
	background: var(--wash);
	border-radius: 8px;
	padding: 18px 20px;
	margin: 24px 0;
	text-align: left;
}

.info-grid .label {
	font-size: 11px;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 700;
}

.check-badge {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 800;
	margin: 0 auto 18px;
}

.feature-cols {
	columns: 2;
	column-gap: 40px;
}

.feature-group {
	break-inside: avoid;
	margin-bottom: 22px;
}

.feature-group h2 {
	font-size: 16px;
	margin: 0 0 8px;
}

.feature-group ul {
	margin: 0;
	padding-left: 18px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.65;
}

.pay-methods {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 18px;
}

.pay-methods label {
	border: 1.5px solid var(--line);
	border-radius: 8px;
	padding: 10px 12px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.hidden { display: none; }

@media (max-width: 800px) {
	.site-header { padding: 14px 16px; }
	.plans-grid,
	.checkout-grid,
	.feature-cols,
	.field-grid-2,
	.info-grid,
	.pay-methods { grid-template-columns: 1fr; columns: 1; }
	.hero { padding: 48px 16px; }
	.hero h1 { font-size: 28px; }
}
