/* Hero subheading */
.hero-subheading {
	text-align: center;
	font-size: 1rem;
	color: #555;
	margin-top: -10px;
	margin-bottom: 30px;
}

/* ── Widen grid ── */
.pricing-grid {
	max-width: 1060px !important;
	padding: 50px 20px !important;
}

/* Pricing labels above card titles */
.pricing-label {
	font-size: .65rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #888;
	margin-bottom: 4px;
	margin-top: 0;
}

/* Pricing description */
.pricing-description {
	font-size: .9rem;
	color: #555;
	margin-bottom: 20px;
	margin-top: 4px;
}

/* Price display with large main number */
.price .price-main {
	font-size: 2.2rem;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: -.02em;
}

.price .price-range {
	font-size: 1rem;
	font-weight: 400;
	color: #666;
}

/* ── Price option boxes (Launch card) ──
   Use negative margins to "bleed" out beyond the card padding
   so the 3 boxes get the full card width.                     */
.price-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
/* Pull left/right to use full card width despite padding */
	margin: 12px -12px 24px;
	box-sizing: border-box;
}

.price-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 10px 4px;
	background: #f9f7f5;
	box-sizing: border-box;
	min-width: 0;
	text-align: center;
}

.price-amount {
	font-weight: 600;
	font-size: .95rem;
	color: #1a1a1a;
	display: block;
	white-space: nowrap;
}

.price-pages {
	font-size: .68rem;
	color: #888;
	display: block;
	margin-top: 4px;
	white-space: nowrap;
}

/* Price note styling */
.price-note {
	font-size: .8rem;
	color: #666;
	margin-top: 6px;
	margin-bottom: 20px;
	line-height: 1.5;
}

.price-note-italic {
	font-size: .8rem;
	color: #888;
	font-style: italic;
	margin-top: 16px;
	margin-bottom: 0;
}

/* Feature list with checkmarks */
.pricing-item ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-item ul li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 8px;
	font-size: .9rem;
	color: #444;
}

.pricing-item ul li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	color: #b8860b;
	font-weight: bold;
}

/* Add-ons section */
.addons-section {
	background: #f2efe9;
	border-radius: 16px;
	padding: 36px 40px;
	margin-top: 40px;
	margin-bottom: 20px;
	box-sizing: border-box;
}

.addons-label {
	font-size: .65rem;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: #888;
	margin-bottom: 24px;
	margin-top: 0;
	font-weight: 500;
}

.addon-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	border-bottom: 1px solid #ddd8cf;
	gap: 16px;
}

.addon-item:last-child {
	border-bottom: none;
}

.addon-info {
	flex: 1;
	min-width: 0;
}

.addon-name {
	font-size: 1rem;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 2px;
	padding: 0;
}

.addon-description {
	font-size: .85rem;
	color: #888;
	margin: 0;
	padding: 0;
}

.addon-price {
	font-size: 1rem;
	font-weight: 500;
	color: #1a1a1a;
	white-space: nowrap;
	margin: 0;
	padding: 0;
	flex-shrink: 0;
}

.addon-price-bold {
	font-weight: 700;
}

/* Footer note */
.footer-note {
	text-align: center;
	font-size: .85rem;
	color: #666;
	margin-top: 24px;
}

/* ── Mobile: single column ── */
@media (max-width: 700px) {
	.pricing-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 20px !important;
		padding: 30px 16px !important;
		max-width: 100% !important;
	}
	
	.pricing-item {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
	
	/* On mobile with full-width cards, negative margin no longer needed */
	.price-options {
		margin-left: 0;
		margin-right: 0;
	}
	
	.addons-section {
		padding: 24px 20px !important;
	}
}