/* Pricing page template */

.pricing-page {
	background-color: #ffffff;
	color: #0a1a32;
	overflow: visible;
}

.pricing-page section .container .inner {
    margin: 0 auto;
}

/* Section 1 — Hero */
.pricing-hero {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 0 0 40px 40px;
	padding: 13rem 0 6rem;
	position: relative;
	text-align: center;
	z-index: 1;
}

.pricing-hero .container .inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 960px;
}

.pricing-hero-title {
	color: #0a1a32;
	font-family: Inter!important;
	font-size: 64px;
	font-weight: 700;
	line-height: 1.08;
	margin: 0;
}

.pricing-hero-subtitle {
	color: #0a1a32;
	font-family: Inter!important;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.45;
	margin: 1.25rem 0 0;
}

.pricing-hero--bg-light_cyan {
	background-color: #dceff8;
	background-image: linear-gradient(1deg, #B0E6FA 0%, #d4eef9 28%, #e8f6fc 45%, #f2fafd 72%, #ffffff 100%);
}

.pricing-hero--bg-dark_blue {
	background-color: #050e11;
	background-image: linear-gradient(180deg, #050e11 0%, #0e2445 50%, #1d4990 100%);
}

.pricing-hero--bg-dark_blue .pricing-hero-title,
.pricing-hero--bg-dark_blue .pricing-hero-subtitle {
	color: #ffffff;
}

.pricing-hero--bg-cyan_navy {
	background-color: #0a1a32;
	background-image: linear-gradient(180deg, #0a1a32 0%, #0a1a32 25%, #063b63 50%, #027fb0 75%, #00aeef 100%);
}

.pricing-hero--bg-cyan_navy .pricing-hero-title,
.pricing-hero--bg-cyan_navy .pricing-hero-subtitle {
	color: #ffffff;
}

/* Section 2 — Intro card */
.pricing-intro {
	background-color: #ffffff;
	padding: 3rem 2rem;
}

.pricing-intro-inner {
	background-color: #f5f7fa;
	border: 1px solid #d9d9d9;
	border-radius: 16px;
	padding: 2.5rem 3.5rem;
	text-align: center;
}

.pricing-intro-eyebrow {
	background: none;
	border-radius: 0;
	color: #4a5568;
	font-family: Inter!important;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.2;
	margin: 0 0 1.5rem;
	padding: 0;
	text-transform: uppercase;
}

.pricing-intro-title {
	color: #0a1a32;
	font-family: Inter!important;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.2;
	margin: 2rem 10rem;
}

.pricing-intro-subtitle {
	color: #374151;
	font-family: Inter!important;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
	margin: 0 auto 2.5rem;
	max-width: 820px;
}

.pricing-intro-cta {
	background: #ffffff;
	border: 2px solid #0a1a32;
	border-radius: 12px;
	color: #0a1a32;
	display: inline-block;
	font-family: Inter!important;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1;
	padding: 0.9rem 1.5rem;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.pricing-intro-cta:hover {
	border-color: #00aeef;
	color: #00aeef;
}

/* Divider */
.pricing-or-sec {
	background-color: #ffffff;
	padding: 0 2rem 3rem 2rem;
}

.pricing-or {
	align-items: center;
	display: flex;
	gap: 1.5rem;
}

.pricing-or-line {
	background-color: #d1d5db;
	flex: 1 1 auto;
	height: 1px;
}

.pricing-or-txt {
	color: #0a1a32;
	flex: 0 0 auto;
	font-family: Inter!important;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.2;
	margin: 0;
	text-transform: uppercase;
	white-space: nowrap;
}

/* Pricing plans */
.pricing-plans {
	background-color: #ffffff;
	padding: 0 2rem 4rem;
}

.plans-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr 1fr 1.4fr;
	grid-template-rows: repeat(7, auto);
}

.plan {
	background-color: #d9f3fd;
	border-radius: 12px;
	box-sizing: border-box;
	display: grid;
	grid-row: span 7;
	grid-template-rows: subgrid;
	padding: 2rem 1.75rem;
	text-align: left;
}

.plan--mid {
	background-color: #e6f7fd;
}

.plan--wide {
	background: linear-gradient(180deg, #cceffb 0%, #aeeccf 50%, #81e8ab 100%);
}

.plan-t {
	color: #0a1a32;
	font-family: Inter!important;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
}

.plan-d {
	color: #0a1a32;
	font-family: Inter!important;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.45;
	margin: 0 0 1.5rem;
}

.plan-btn-wrap {
	justify-self: start;
}

.plan-btn {
	background: #ffffff;
	border: 2px solid #0a1a32;
	border-radius: 12px;
	color: #0a1a32;
	display: inline-block;
	font-family: Inter!important;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1;
	padding: 0.9rem 1.5rem;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color 0.2s ease, color 0.2s ease;
	width: auto;
}

.plan-btn:hover {
	border-color: #00aeef;
	color: #00aeef;
}

.plan-div {
	background-color: #b8d4e8;
	height: 1px;
	margin: 1rem 0;
	width: 100%;
}

.plan-sec-t {
	color: #0a1a32;
	font-family: Inter!important;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.2;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.plan-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.plan-list > li {
	color: #0a1a32;
	font-family: Inter!important;
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
}

.plan-list > li:last-child {
	margin-bottom: 0;
}

.plan-list > li::before {
	color: #0a1a32;
	content: "✓";
	font-size: 15px;
	font-weight: 400;
	left: 0;
	line-height: 1.5;
	position: absolute;
	top: 0;
}

.plan-sub {
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0;
}

.plan-sub li {
	color: #0a1a32;
	font-family: Inter!important;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.45;
	margin-bottom: 0.35rem;
	padding-left: 1rem;
	position: relative;
}

.plan-sub li:last-child {
	margin-bottom: 0;
}

.plan-sub li::before {
	background-color: #0a1a32;
	border-radius: 50%;
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	top: 0.55em;
	width: 5px;
}

.plans-note {
	background-color: #b0e6fa;
	border-radius: 12px;
	color: #000;
	font-family: Inter!important;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.45;
	margin: 1.5rem 0 0;
	padding: 0.5rem 2rem;
	text-align: center;
}

/* AI Agents */
.pricing-ai {
	background-color: #ffffff;
	padding: 4rem 2rem;
	text-align: center;
}

.ai-h {
	color: #2d5496;
	font-family: Inter!important;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 0.75rem;
}

.ai-sub {
	color: #0a1a32;
	font-family: Inter!important;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4;
	margin: 0 0 3rem;
}

.ai-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(5, auto);
	text-align: left;
}

.ai-card {
	background-color: #bee9f7;
	border-radius: 12px;
	box-sizing: border-box;
	display: grid;
	grid-row: span 5;
	grid-template-rows: subgrid;
	padding: 2rem;
}

.ai-t {
	color: #0a1a32;
	font-family: Inter!important;
	font-size: 26px;
	font-weight: 500;
	line-height: 1.25;
	margin: 0 0 1rem;
}

.ai-d {
	color: #0a1a32;
	font-family: Inter!important;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0 0 1.25rem;
}

.pricing-intro-title p,
.pricing-intro-subtitle p,
.pricing-intro-eyebrow p,
.ai-h p,
.ai-sub p,
.ai-t p,
.ai-d p,
.ai-foot p {
	margin: 0;
}

.ai-ul {
	color: #0a1a32;
	font-family: Inter!important;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	margin: 0 0 1.5rem;
	padding-left: 0;
}

.ai-ul > ul {
	list-style: disc;
	margin: 0;
	padding-left: 1.25rem;
}

.ai-ul > ul li {
	margin-bottom: 0.35rem;
}

.ai-ul > ul li:last-child {
	margin-bottom: 0;
}

.ai-ul ul {
	list-style: disc;
	margin: 0;
	padding-left: 1.25rem;
}

.ai-ul li {
	margin-bottom: 0.35rem;
}

.ai-ul li:last-child {
	margin-bottom: 0;
}

.ai-btn {
	background: #ffffff;
	border: 2px solid #0a1a32;
	border-radius: 12px;
	color: #0a1a32;
	display: inline-block;
	font-family: Inter!important;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1;
	margin-top: 0.5rem;
	padding: 0.9rem 1.5rem;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.ai-btn:hover {
	border-color: #00aeef;
	color: #00aeef;
}

.ai-foot {
	color: #6b7280;
	font-family: Inter!important;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	margin: 1rem 0 0;
}

.pricing-blocks {
	background-color: #ffffff;
}

@media (max-width: 900px) {
	.pricing-hero {
		border-radius: 0 0 32px 32px;
		padding: 12rem 0 4.5rem;
	}

	.pricing-hero-title {
		font-size: 42px;
	}

	.pricing-hero-subtitle {
		font-size: 18px;
	}

	.pricing-intro {
		padding: 4rem 2rem 0;
	}

	.pricing-intro-inner {
		border-radius: 24px;
		padding: 3.5rem 1.5rem;
	}

	.pricing-intro-title {
		font-size: 32px;
		margin: 2rem 5rem;
	}

	.pricing-intro-subtitle {
		font-size: 16px;
		line-height: 24px;
		margin: 1rem auto 2.5rem;
	}

	.pricing-or-sec {
		padding: 2rem;
	}

	.pricing-or {
		gap: 1rem;
	}

	.pricing-or-txt {
		font-size: 15px;
		white-space: normal;
	}

	.plans-grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.plan {
		display: flex;
		flex-direction: column;
		grid-row: auto;
		grid-template-rows: none;
	}

	.plan-btn-wrap {
		text-align: start;
	}

	.plan-btn {
		display: inline-block;
		width: auto;
	}

	.plan-t {
		font-size: 24px;
	}

	.plan-d {
		font-size: 16px;
		margin: 1rem 0 3rem;
	}

	.plan-div {
		margin: 2rem 0;
	}

	.plans-note {
		font-size: 16px;
		padding: 1.25rem 1.5rem;
	}

	.ai-h {
		font-size: 36px;
	}

	.ai-sub {
		font-size: 18px;
		margin-bottom: 2rem;
	}

	.ai-grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.ai-card {
		display: flex;
		flex-direction: column;
		grid-row: auto;
		grid-template-rows: none;
	}
}

@media (max-width: 640px) {
	.pricing-hero {
		padding: 11rem 2rem 4rem;
	}

	.pricing-hero-title {
		font-size: 26px;
	}

	.pricing-hero-subtitle {
		margin: 1rem 0 0;
	}

	.pricing-intro {
		padding: 4rem 2rem 0;
	}

	.pricing-intro-inner {
		padding: 2.5rem 1.25rem;
	}

	.pricing-intro-title {
		font-size: 26px;
		margin: 0 auto;
	}

	.pricing-or-txt {
		font-size: 13px;
	}

	.plan {
		padding: 1.75rem 1.5rem;
	}

	.ai-h {
		font-size: 30px;
	}

	.pricing-ai {
		padding: 3rem 2rem;
	}

	.ai-card {
		padding: 1.75rem 1.5rem;
	}
}
