@charset "utf-8";

/* ── PRICING PAGE STYLES ── */

.pricing-hero {
	background-image: linear-gradient(180deg, #779eab 0%, #ffffff 70%);
	text-align: center;
	padding: 40px 20px 30px;
}
.pricing-hero h1 {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: bold;
	color: #2b3a4b;
	text-shadow: none;
	margin-bottom: 10px;
}
.pricing-hero p {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	color: #2b3a4b;
	text-shadow: none;
	max-width: 580px;
	margin: 0 auto 24px;
	font-weight: bold;
}
.pricing-section {
	padding: 50px 10px;
	max-width: 960px;
	margin: 0 auto;
}
.pricing-section-alt {
	background-color: #f7f7f8;
}
.pricing-h2 {
	text-align: center;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	color: #333333;
	margin-bottom: 8px;
	text-shadow: -1px 1px 2px rgba(72,72,72,0.25);
}
.pricing-subhead {
	text-align: center;
	color: #555555;
	font-size: 0.97rem;
	margin-bottom: 40px;
}

/* Cards */
.pricing-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	margin-bottom: 40px;
}
.pricing-card {
	background: #ffffff;
	border: 2px solid #d0e4ea;
	border-radius: 10px;
	padding: 30px 24px;
	width: 100%;
	max-width: 285px;
	position: relative;
	box-shadow: rgba(0,0,0,0.08) 0px 5px 15px;
}
.pricing-card.featured {
	border-color: #779eab;
	box-shadow: rgba(119,158,171,0.35) 0px 8px 24px;
}
.pricing-card .card-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: #f9a525;
	color: #ffffff;
	font-weight: bold;
	font-size: 0.72rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 4px 16px;
	border-radius: 20px;
	white-space: nowrap;
	text-shadow: -1px 1px 2px rgba(0,0,0,0.30);
	box-shadow: rgba(50,50,93,0.25) 0px 50px 100px -20px, rgba(0,0,0,0.3) 0px 30px 60px -30px;
}
.pricing-card h3 {
	font-size: 1.1rem;
	font-weight: bold;
	color: #333333;
	margin-bottom: 6px;
	text-align: center;
}
.pricing-card .card-price {
	font-size: 2.6rem;
	font-weight: bold;
	color: #779eab;
	text-align: center;
	line-height: 1.1;
	margin-bottom: 4px;
}
.pricing-card .card-price-note {
	text-align: center;
	font-size: 0.83rem;
	color: #777777;
	margin-bottom: 16px;
}
.pricing-card .card-divider {
	border: none;
	border-top: 1px solid #e0ecf0;
	margin: 16px 0;
}
.pricing-card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
}
.pricing-card ul li {
	font-size: 0.91rem;
	color: #444444;
	padding: 5px 0;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}
.pricing-card ul li::before {
	content: '\2713';
	color: #8bb839;
	font-weight: bold;
	flex-shrink: 0;
	margin-top: 1px;
}

/* Competitor table */
.comp-wrap {
	background: #ffffff;
	border: 1px solid #d0e4ea;
	border-radius: 10px;
	padding: 24px 26px;
	box-shadow: rgba(0,0,0,0.06) 0px 4px 12px;
	margin-top: 10px;
}
.comp-wrap h3 {
	font-size: 1rem;
	font-weight: bold;
	color: #333333;
	margin-bottom: 14px;
}
.comp-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}
.comp-table th {
	text-align: left;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #777777;
	font-weight: bold;
	padding: 6px 10px;
	border-bottom: 2px solid #d0e4ea;
}
.comp-table td {
	padding: 10px 10px;
	border-bottom: 1px solid #eeeeee;
	vertical-align: top;
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table .our-row td { background: #eef4f7; }
.comp-table .our-price { font-weight: bold; color: #779eab; }

/* What's included */
.included-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.included-card {
	background: #ffffff;
	border: 1px solid #b0cdd6;
	border-radius: 8px;
	padding: 22px 18px;
	width: 100%;
	max-width: 280px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	box-shadow: none;
}
.included-card .ic-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
	line-height: 1;
}
.included-card h4 {
	font-size: 0.97rem;
	font-weight: bold;
	color: #333333;
	margin-bottom: 5px;
}
.included-card p {
	font-size: 0.87rem;
	color: #666666;
	line-height: 1.5;
}

/* Guarantee band */
.guarantee-band {
	background-image: linear-gradient(135deg, #779eab 0%, #5c8d9d 100%);
	color: #ffffff;
	text-align: center;
	padding: 50px 20px;
}
.guarantee-band h2 {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: bold;
	margin-bottom: 12px;
	text-shadow: -1px 1px 2px rgba(0,0,0,0.25);
}
.guarantee-band p {
	max-width: 540px;
	margin: 0 auto 28px;
	font-size: 1rem;
	line-height: 1.6;
}

/* Payment row */
.payment-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid #d0e4ea;
}
.payment-row p {
	font-weight: bold;
	font-size: 0.97rem;
	color: #333333;
	margin: 0;
}
.pay-badge {
	background: #f7f7f8;
	border: 1px solid #d0e4ea;
	border-radius: 6px;
	padding: 7px 16px;
	font-weight: bold;
	font-size: 0.87rem;
	color: #333333;
}

/* FAQ section */
.pricing-faq {
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
	padding: 50px 0;
}

@media screen and (max-width: 600px) {
	.pricing-card { max-width: 100%; }
	.included-card { max-width: 100%; }
	.comp-table { font-size: 0.8rem; }
	.comp-table th, .comp-table td { padding: 8px 6px; }
}


