/* Pricing page layout */

:root {
	--primary: #4285F4;
	--secondary: #9C27B0;
	--google-blue: #4285F4;
	--google-red: #ed3120;
	--google-yellow: #F4B400;
	--google-green: #0F9D58;
	--google-purple: #9C27B0;
	--google-pink: #E91E63;
	--google-orange: #FF9800;
	--google-teal: #009688;
	--google-indigo: #3F51B5;
	--google-violet: #673AB7;
	--google-grey: #607D8B;
}

.pricing-page {
	max-width: 1180px;
	margin: 0 auto;
	padding: 100px 24px 80px;
	color: #0b1224;
	font-family: 'Inter', 'Poppins', 'Segoe UI', sans-serif;
}

.hero-band {
	padding: 48px 0 70px;
	text-align: center;
	border-bottom: 3px solid var(--primary);
}

.hero-band h1 {
	margin: 6px 0 10px;
	font-size: clamp(32px, 5vw, 46px);
	line-height: 1.08;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	font-weight: 800;
    font-size: 60px;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 12px;
	color: #1d4ed8;
	margin: 0 0 8px;
}

.lede {
	max-width: 760px;
	color: #475569;
	font-size: 17px;
    font-weight: 500;
	line-height: 1.6;
	margin: 0 auto;
}

.section-header {
	margin-bottom: 40px;
	text-align: center;
}

.section-header h2 {
	margin: 4px 0 10px;
	font-size: clamp(26px, 3.4vw, 34px);
	line-height: 1.15;
	color: var(--primary);
	font-weight: 800;
}

.free-plan {
	padding: 65px 0 65px;
	border-bottom: 3px solid var(--primary);
}

.free-tabs {
	display: flex;
	gap: 0;
	margin-bottom: 24px;
	justify-content: center;
	background: #fff;
	border: none;
	border-radius: 50px;
	padding: 4px;
    padding-right: 8px;
	width: fit-content;
	position: relative;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
}

.free-tabs::before {
	content: '';
	position: absolute;
	background: var(--google-blue);
	border-radius: 50px;
	top: 4px;
	left: 4px;
	height: calc(100% - 8px);
	width: calc(33.333% - 4px);
	transition: transform 0.3s ease, background 0.3s ease;
	z-index: 0;
}

.free-tabs[data-active="website"]::before {
	transform: translateX(calc(100% + 8px));
	background: var(--google-green);
}

.free-tabs[data-active="customers"]::before {
	transform: translateX(calc(200% + 4px));
	background: var(--google-purple);
}

.tab-btn {
	padding: 9px 18px;
	background: transparent;
	border: none;
	color: #64748b;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: color 0.3s ease;
	position: relative;
	z-index: 1;
	flex: 1;
	white-space: nowrap;
}

.tab-btn:hover {
	color: #475569;
}

.tab-btn.active {
	color: #fff;
}

.free-layout {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 32px;
	align-items: start;
}

.free-content {
	position: relative;
	min-height: 240px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.free-column {
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
	width: 100%;
}

.free-column.active {
	display: block;
	opacity: 1;
}

.free-video {
	border: 2px dashed #7fb4ff;
    border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0b62d6;
	font-weight: 700;
}

.free-column h3 {
	margin: 0 0 20px;
	font-size: 18px;
	font-weight: 700;
	width: 100%;
	padding: 8px 16px;
	border-radius: 20px;
	text-align: center;
	color: #fff;
}

.free-column[data-content="booking"] h3 {
	background: var(--google-blue);
}

.free-column[data-content="website"] h3 {
	background: var(--google-green);
}

.free-column[data-content="customers"] h3 {
	background: var(--google-purple);
}


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

.lined-list li {
	padding: 12px 0;
	border-bottom: 1px solid #e5e7eb;
	color: #0b1224;
	line-height: 1.5;
	font-size: 15px;
}

.fee-note {
	margin-top: 16px;
	font-size: 14px;
	color: #0b1224;
}

.plans-table {
	padding: 65px 0 65px;
	border-bottom: 3px solid var(--primary);
}

.table-wrapper {
	overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.feature-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	min-width: 760px;
}

.feature-table th,
.feature-table td {
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid #e2e8f0;
}

.feature-table thead th {
	background: var(--primary);
	color: #fff;
	font-weight: 700;
	position: sticky;
	top: 0;
	z-index: 1;
}

.feature-table tbody tr:nth-child(odd) {
    background: #fafafa;
}

.feature-table tbody tr:nth-child(even) {
    background: #ffffff;
}

.feature-table td:first-child {
	font-weight: 600;
	color: #0f172a;
}


.payments-section {
	padding: 65px 0 0;
}

.payments-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
	margin-top: 8px;
}

.band {
	padding: 16px 14px 14px;
	border: 1px solid #B2EBF2;
	border-left: 4px solid var(--google-teal);
	border-radius: 8px;
	background: #E0F7FA;
}

.band h3 {
	margin: 0 0 10px;
	font-size: 18px;
	color: var(--google-teal);
	font-weight: 700;
}

.fee-strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
	margin: 22px 0 8px;
	    padding: 14px 16px;
	    border: 1px solid #B2DFDB;
	    border-radius: 10px;
	    background: #E0F2F1;
}
.media-section,
.media-grid,
.video-frame,
.image-grid,
.image-tile {
	display: none;
}

@media (max-width: 900px) {
	.pricing-page {
		padding: 72px 18px 60px;
	}

	.free-grid {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	}

	.free-layout {
		grid-template-columns: 1fr;
	}

	.table-wrapper {
		border-radius: 8px;
	}
}

@media (max-width: 600px) {
	.hero-band {
		border-left-width: 4px;
		padding-left: 14px;
	}

	.feature-table th,
	.feature-table td {
		padding: 12px 12px;
	}
}
