/* ==========================================================================
   BookWellNow vs Amelia - Minimalist SaaS Comparison Styles (Cal.com inspired)
   ========================================================================== */

/* Variables */
:root {
	--cal-bg: #FFFFFF;
	--cal-text-primary: #061E29;
	/* Based on BookWellNow --dark */
	--cal-text-secondary: #64748B;
	--cal-border: #E2E8F0;
	--cal-border-hover: #CBD5E1;
	--cal-accent-bg: rgba(87, 0, 180, 0.03);
	/* Subtle violet background */
	--cal-check: #16a34a;
	/* Green */
	--cal-cross: #dc2626;
	/* Red */
	--cal-radius: 12px;
	--cal-radius-md: 8px;
	--cal-radius-lg: 16px;
	--cal-radius-xl: 24px;
	--cal-radius-full: 9999px;
	--cal-brand-primary: #5700B4;
	--cal-brand-primary-hover: #7A33D4;
	--cal-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Base Wrapper */
.cal-style-wrapper {
	font-family: var(--cal-font);
	background-color: var(--cal-bg);
	color: var(--cal-text-primary);
	line-height: 1.5;
	padding-bottom: 120px;
	-webkit-font-smoothing: antialiased;
}

/* Typography & Layout */
.cal-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 4rem;
}

.cal-container-narrow {
	max-width: 768px;
	margin: 0 auto;
	padding: 0 24px;
}

.cal-hero {
	padding: 120px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* Hero Layout */
.hero-container {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 64px;
}

.hero-content {
	flex: 1;
	text-align: left;
}

.hero-visual-v2 {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-ctas-v2 {
	margin-top: 40px;
	display: flex;
	gap: 16px;
}

.hero-bg-glow {
	position: absolute;
	top: -20%;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 500px;
	background: radial-gradient(circle, rgba(87, 0, 180, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.cal-badge {
	display: inline-flex;
	align-items: center;
	background: #FFFFFF;
	color: var(--cal-brand-primary);
	padding: 6px 16px;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 32px;
	border: 1px solid rgba(87, 0, 180, 0.2);
	box-shadow: 0 4px 15px rgba(87, 0, 180, 0.08);
}

.pulse-dot {
	width: 8px;
	height: 8px;
	background: var(--cal-brand-primary);
	border-radius: 50%;
	display: inline-block;
	margin-right: 8px;
	box-shadow: 0 0 0 0 rgba(87, 0, 180, 0.4);
	animation: pulse-ring 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-ring {
	0% {
		box-shadow: 0 0 0 0 rgba(87, 0, 180, 0.4);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(87, 0, 180, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(87, 0, 180, 0);
	}
}

.cal-title {
	font-size: 4.5rem;
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.1;
	margin-bottom: 24px;
	color: var(--cal-text-primary);
}

.cal-data-yes {
	color: var(--cal-check);
	font-weight: 600;
}

.cal-data-yes svg {
	width: 20px;
	height: 20px;
	stroke: var(--cal-check);
	vertical-align: middle;
	margin-right: 8px;
}

.cal-data-no {
	color: var(--cal-cross);
}

.cal-data-no svg {
	width: 20px;
	height: 20px;
	stroke: var(--cal-cross);
	vertical-align: middle;
	margin-right: 8px;
}

.text-gradient {
	color: var(--cal-brand-primary);
}

.cal-subtitle {
	font-size: 1.25rem;
	color: var(--cal-text-secondary);
	max-width: 650px;
	margin: 0 auto;
	font-weight: 400;
	line-height: 1.6;
}

.shadow-glow {
	box-shadow: 0 10px 25px -5px rgba(87, 0, 180, 0.4);
	transform: translateY(0);
	transition: all 0.3s ease;
}

.shadow-glow:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px -5px rgba(87, 0, 180, 0.5);
}

/* ==========================================================================
   SHARED COMPONENTS — Section Chips, Icon Backgrounds
   ========================================================================== */

/* Section Label Chip */
.section-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(87, 0, 180, 0.06);
	color: var(--cal-brand-primary);
	padding: 8px 20px;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
	border: 1px solid rgba(87, 0, 180, 0.12);
}

.chip-dot {
	width: 6px;
	height: 6px;
	background: var(--cal-brand-primary);
	border-radius: 50%;
	display: inline-block;
	animation: pulse-ring 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

/* Feature Icon Backgrounds (Pricing Cards) */
.feature-icon-bg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	min-width: 32px;
	min-height: 32px;
	border-radius: 50%;
	margin-right: 14px;
	flex-shrink: 0;
}

.feature-icon-bg svg {
	width: 14px;
	height: 14px;
	margin: 0 !important;
	display: block;
}

.icon-bg-red {
	background: rgba(220, 38, 38, 0.12);
	color: var(--cal-cross);
	border: 1px solid rgba(220, 38, 38, 0.15);
}

.icon-bg-red svg {
	stroke: var(--cal-cross);
}

.icon-bg-green {
	background: rgba(22, 163, 74, 0.12);
	color: var(--cal-check);
	border: 1px solid rgba(22, 163, 74, 0.15);
}

.icon-bg-green svg {
	stroke: var(--cal-check);
}

.highlight-card .icon-bg-green {
	background: rgba(74, 222, 128, 0.2);
}

.highlight-card .icon-bg-green svg {
	stroke: #4ade80;
}

/* Table Icon Backgrounds */
.table-icon-bg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	margin-right: 10px;
	flex-shrink: 0;
	vertical-align: middle;
}

.table-icon-bg svg {
	width: 16px;
	height: 16px;
	margin: 0;
}

.table-icon-red {
	background: rgba(220, 38, 38, 0.08);
}

.table-icon-red svg {
	stroke: var(--cal-cross);
}

.table-icon-green {
	background: rgba(22, 163, 74, 0.08);
}

.table-icon-green svg {
	stroke: var(--cal-check);
}

.table-icon-amber {
	background: rgba(245, 158, 11, 0.1);
}

.table-icon-amber svg {
	stroke: #d97706;
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */

@keyframes shimmer-sweep {
	0% {
		transform: translateX(-100%) rotate(15deg);
	}

	100% {
		transform: translateX(200%) rotate(15deg);
	}
}

@keyframes glow-pulse {

	0%,
	100% {
		box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
	}

	50% {
		box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
	}
}

@keyframes float-gentle {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}
}

@keyframes float-drift {

	0%,
	100% {
		transform: translate(0, 0);
	}

	33% {
		transform: translate(8px, -10px);
	}

	66% {
		transform: translate(-6px, -5px);
	}
}

/* ==========================================================================
   1. PRICING COMPARE SECTION (Redesigned Modern Premium SaaS Style)
   ========================================================================== */

.cal-pricing-compare {
	padding: 110px 0 120px;
	background: linear-gradient(180deg, #FAFAFD 0%, #F5F3FF 50%, #FAFAFD 100%);
	position: relative;
	overflow: hidden;
}

.pricing-bg-glow {
	position: absolute;
	top: 5%;
	left: 50%;
	transform: translateX(-50%);
	width: 1000px;
	height: 650px;
	background: radial-gradient(ellipse at center, rgba(87, 0, 180, 0.08) 0%, rgba(124, 58, 237, 0.03) 45%, rgba(255, 255, 255, 0) 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	filter: blur(40px);
}

.pricing-header {
	text-align: center;
	margin-bottom: 64px;
	position: relative;
	z-index: 1;
}

.pricing-title {
	font-size: 2.85rem;
	font-weight: 850;
	color: var(--cal-text-primary);
	margin-bottom: 18px;
	letter-spacing: -0.03em;
	line-height: 1.18;
}

.pricing-subtitle {
	font-size: 1.15rem;
	color: var(--cal-text-secondary);
	max-width: 620px;
	margin: 0 auto;
	line-height: 1.7;
}

.pricing-cards-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 36px;
	max-width: 920px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	align-items: center;
}

.pricing-card {
	background: #FFFFFF;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 28px;
	padding: 48px 40px;
	position: relative;
	box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.04), 0 4px 12px -2px rgba(0, 0, 0, 0.02);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	overflow: visible;
}

.pricing-card.competitor-card {
	background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
	border: 1px solid #E2E8F0;
}

.pricing-card.competitor-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
	border-color: #CBD5E1;
}

/* Competitor Watermark X */
.competitor-watermark {
	position: absolute;
	bottom: -15px;
	right: -15px;
	opacity: 0.035;
	pointer-events: none;
	z-index: 0;
}

.competitor-watermark svg {
	width: 220px;
	height: 220px;
	stroke: var(--cal-cross);
}

/* BookWellNow Highlight Champion Card */
.highlight-card {
	background: linear-gradient(145deg, #5700b4 0%, #3b007f 100%);
	border: none;
	box-shadow: 0 25px 60px -12px rgba(87, 0, 180, 0.45), 0 10px 24px -6px rgba(87, 0, 180, 0.3);
	transform: scale(1.04);
	z-index: 2;
	padding-top: 52px;
	overflow: visible;
}

.highlight-card:hover {
	transform: scale(1.04) translateY(-8px);
	box-shadow: 0 35px 70px -12px rgba(87, 0, 180, 0.55), 0 14px 28px -6px rgba(87, 0, 180, 0.35);
}

/* Shimmer Border */
.shimmer-border {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 28px;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
}

.shimmer-border::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 40px;
	height: 200%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: shimmer-sweep 4s infinite ease-in-out;
}

.popular-badge {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
	color: #451A03;
	padding: 9px 24px;
	border-radius: 8px;
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45), 0 0 12px rgba(251, 191, 36, 0.3);
	z-index: 10;
	white-space: nowrap;
	border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.cal-pricing-card-head {
	display: block !important;
	text-align: center;
	margin: 0 0 32px 0;
	padding: 0 0 28px 0;
	border-bottom: 1px solid var(--cal-border);
	position: relative;
	z-index: 1;
}

.highlight-card .cal-pricing-card-head {
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.cal-pricing-card-head h3 {
	display: block !important;
	font-size: 1.3rem;
	color: var(--cal-text-secondary);
	margin: 0 0 14px 0 !important;
	font-weight: 700;
	width: 100%;
}

.highlight-card .cal-pricing-card-head h3 {
	color: #F1F5F9;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.price {
	display: flex !important;
	align-items: baseline;
	justify-content: center;
	font-size: 4.25rem;
	font-weight: 850;
	color: var(--cal-text-primary);
	line-height: 1;
	margin: 0 0 10px 0 !important;
	letter-spacing: -0.04em;
}

.highlight-card .price {
	color: #FFFFFF;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.price span {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--cal-text-secondary);
	margin-right: 2px;
}

.highlight-card .price span {
	color: rgba(255, 255, 255, 0.85);
}

.price span:last-child {
	font-size: 1rem;
	font-weight: 500;
	margin-left: 4px;
	color: var(--cal-text-secondary);
}

.highlight-card .price span:last-child {
	color: rgba(255, 255, 255, 0.75);
}

.price-desc {
	display: block !important;
	font-size: 0.96rem;
	color: var(--cal-text-secondary);
	margin: 0 !important;
	line-height: 1.5;
}

.highlight-card .price-desc {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin: 0 0 36px 0;
	flex-grow: 1;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pricing-features li {
	display: flex;
	align-items: center;
	margin: 0;
	font-size: 1.02rem;
	color: var(--cal-text-primary);
	font-weight: 600;
	line-height: 1.4;
}

.highlight-card .pricing-features li {
	color: #FFFFFF;
}

.feature-icon-bg {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 14px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.icon-bg-red {
	background: rgba(239, 68, 68, 0.12);
	color: #EF4444;
}

.icon-bg-red svg {
	width: 15px;
	height: 15px;
	stroke: #EF4444;
}

.icon-bg-green {
	background: rgba(16, 185, 129, 0.15);
	color: #10B981;
}

.highlight-card .icon-bg-green {
	background: rgba(255, 255, 255, 0.2);
	color: #4ADE80;
}

.icon-bg-green svg {
	width: 16px;
	height: 16px;
	stroke: #10B981;
}

.highlight-card .icon-bg-green svg {
	stroke: #4ADE80;
}

.pricing-features li.negative-feature {
	color: #64748B;
	font-weight: 500;
}

.full-width {
	width: 100%;
}

.btn-white {
	background: #FFFFFF;
	color: var(--cal-brand-primary);
	border: 1px solid #FFFFFF;
	position: relative;
	z-index: 1;
	padding: 16px 28px;
	font-size: 1.05rem;
	font-weight: 800;
	border-radius: 8px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-white:hover {
	background: #FFFFFF;
	color: var(--cal-brand-primary);
	box-shadow: 0 14px 35px rgba(255, 255, 255, 0.35);
	transform: translateY(-2px);
}

.btn-glow svg {
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glow:hover svg {
	transform: translateX(6px);
}

/* ==========================================================================
   2. COMPARISON TABLE SECTION (Redesigned Modern Premium SaaS Style)
   ========================================================================== */

.cal-table-section {
	padding: 70px 0 0;
	background: #FFFFFF;
	position: relative;
}

.table-section-intro {
	text-align: center;
	margin-bottom: 56px;
}

.table-section-title {
	font-size: 2.85rem;
	font-weight: 850;
	color: var(--cal-text-primary);
	margin-bottom: 18px;
	letter-spacing: -0.03em;
	line-height: 1.18;
}

.table-section-desc {
	font-size: 1.15rem;
	color: var(--cal-text-secondary);
	max-width: 620px;
	margin: 0 auto;
	line-height: 1.7;
}

.cal-table-wrapper {
	background: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.06), 0 10px 25px -5px rgba(87, 0, 180, 0.04);
	position: relative;
}

/* Gradient Top Border */
.table-gradient-border {
	height: 5px;
	background: linear-gradient(90deg, #5700B4 0%, #7C3AED 50%, #5700B4 100%);
	background-size: 200% 100%;
	animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {

	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

.table-scroll-container {
	position: relative;
}

/* Table Styles */
.cal-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	text-align: left;
}

.cal-table th,
.cal-table td {
	padding: 22px 32px;
	border-bottom: 1px solid #F1F5F9;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cal-table tbody tr:last-child td {
	border-bottom: none;
}

/* Zebra Striping */
.cal-table tbody tr:nth-child(odd) td {
	background-color: #FFFFFF;
}

.cal-table tbody tr:nth-child(even) td {
	background-color: #F8FAFC;
}

.cal-table tbody tr:nth-child(odd) .cal-data-bwn {
	background-color: #F8F5FC;
}

.cal-table tbody tr:nth-child(even) .cal-data-bwn {
	background-color: #F1EAFA;
}

/* Row Hover Physics (Desktop Only to prevent touch hover locks) */
@media (hover: hover) {
	.cal-table tbody tr:hover td {
		background-color: #F1F5F9;
	}

	.cal-table tbody tr:hover .cal-data-bwn {
		background-color: #E9DEFA;
	}

	.cal-table tbody tr:hover .cal-feature-name {
		color: var(--cal-brand-primary);
		background-color: #F1F5F9;
	}
}

.cal-table tbody tr {
	position: relative;
}

/* Column Formatting */
.cal-col-feature {
	width: 35%;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: var(--cal-text-secondary);
	background: #F8FAFC;
}

/* Sticky Feature Column for seamless mobile/tablet horizontal scrolling */
.cal-table .cal-col-feature,
.cal-table td.cal-feature-name {
	position: sticky;
	left: 0;
	z-index: 5;
	border-right: 1px solid #E2E8F0;
	box-shadow: 2px 0 6px rgba(0, 0, 0, 0.03);
}

.cal-table tbody tr:nth-child(odd) td.cal-feature-name {
	background-color: #FFFFFF;
}

.cal-table tbody tr:nth-child(even) td.cal-feature-name {
	background-color: #F8FAFC;
}

.cal-table thead .cal-col-feature {
	z-index: 6;
	background-color: #F8FAFC;
}

.cal-col-competitor {
	width: 30%;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--cal-text-primary);
	border-left: 1px solid #E2E8F0;
	background: #F8FAFC;
}

.cal-col-bwn {
	width: 35%;
	border-left: 1px solid rgba(87, 0, 180, 0.15);
	background: rgba(87, 0, 180, 0.03);
	padding: 0 !important;
	position: relative;
}

/* Header Cells */
.cal-table thead th {
	background: #F8FAFC;
	border-bottom: 2px solid #E2E8F0;
}

.cal-table thead .cal-col-bwn {
	border-bottom: none;
	background: transparent;
}

.cal-bwn-header {
	padding: 24px 32px;
	background: linear-gradient(135deg, #5700B4 0%, #3D007F 100%);
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: 850;
	text-align: left;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	box-shadow: 0 6px 20px rgba(87, 0, 180, 0.25);
	position: relative;
}

.winner-badge {
	background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
	color: #451A03;
	font-size: 0.75rem;
	font-weight: 850;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 8px;
	letter-spacing: 0.07em;
	box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
	animation: glow-pulse 3s ease-in-out infinite;
}

/* Data Cells */
.cal-feature-name {
	font-size: 1.05rem;
	font-weight: 650;
	color: var(--cal-text-primary);
	transition: color 0.25s ease;
}

.cal-data-competitor {
	font-size: 1.02rem;
	color: var(--cal-text-secondary);
	border-left: 1px solid #F1F5F9;
	font-weight: 500;
}

.cal-data-bwn {
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--cal-brand-primary);
	border-left: 1px solid rgba(87, 0, 180, 0.12);
	background-color: #F8F5FC;
}

.cal-subtext {
	font-size: 0.82rem;
	font-weight: 400;
	color: var(--cal-text-secondary);
	margin-left: 6px;
	display: inline-block;
}

/* Icon Badges */
.table-icon-bg {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	vertical-align: middle;
	flex-shrink: 0;
}

.table-icon-green {
	background: rgba(16, 185, 129, 0.15);
	color: #10B981;
}

.table-icon-red {
	background: rgba(239, 68, 68, 0.12);
	color: #EF4444;
}

.table-icon-amber {
	background: rgba(245, 158, 11, 0.15);
	color: #D97706;
}

/* SVG Icons */
.icon-check,
.icon-cross,
.icon-minus {
	width: 16px;
	height: 16px;
	margin: 0;
}

.table-icon-green .icon-check {
	stroke: #10B981;
}

.table-icon-red .icon-cross {
	stroke: #EF4444;
}

.table-icon-amber .icon-minus {
	stroke: #D97706;
}

.table-cta-block {
	margin-top: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

/* Mobile Scroll Hint */
.table-scroll-hint {
	display: none;
}

/* CTA Block below table */
.table-cta-block {
	margin-top: 56px;
	padding: 40px;
	background: rgba(87, 0, 180, 0.03);
	border-radius: 20px;
	border: 1px solid rgba(87, 0, 180, 0.08);
}

.table-cta-block .btn-primary-v2 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.table-cta-block .btn-primary-v2 svg {
	transition: transform 0.3s ease;
}

.table-cta-block .btn-primary-v2:hover svg {
	transform: translateX(4px);
}

/* Buttons */
.cal-cta-container-hero {
	margin-top: 48px;
	display: flex;
	gap: 16px;
	justify-content: start;
}

.cal-cta-container {
	margin-top: 48px;
	display: flex;
	gap: 16px;
	justify-content: center;
}

.cal-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--cal-brand-primary);
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cal-btn-primary:hover {
	background: var(--cal-brand-primary-hover);
	color: #fff;
	transform: translateY(-2px);
}

.cal-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: var(--cal-text-primary);
	font-size: 1.125rem;
	font-weight: 600;
	padding: 1.25rem 3.5rem;
	border-radius: 8px;
	text-decoration: none;
	border: 1px solid var(--cal-border);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cal-btn-secondary:hover {
	border-color: var(--cal-brand-primary);
	color: var(--cal-brand-primary);
	transform: translateY(-2px);
}

/* Hero Split Layout */
.hero-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 60px;
}

.hero-text-content {
	text-align: left;
}

.text-left {
	text-align: left !important;
	margin-left: 0 !important;
}

.hero-image-content {
	position: relative;
	perspective: 1000px;
}

.hero-featured-image {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	display: block;
}

/* Extra Content */
.cal-extra-content {
	padding: 0;
	font-size: 1.125rem;
	color: var(--cal-text-secondary);
}

/* ==========================================================================
   3. PLATFORM FIT BANNER SECTION
   ========================================================================== */

.cal-platform-fit {
	padding: 100px 0;
	background: #ffffff;
}

.fit-banner {
	background: linear-gradient(135deg, var(--cal-brand-primary) 0%, #3b0086 100%);
	border-radius: 32px;
	padding: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 64px;
	box-shadow: 0 25px 60px -10px rgba(87, 0, 180, 0.3);
	color: #ffffff;
	position: relative;
	overflow: hidden;
}

.fit-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
	border-radius: 50%;
	pointer-events: none;
}

/* Dot Pattern Overlay */
.fit-banner-dots {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 24px 24px;
	pointer-events: none;
	z-index: 0;
}

/* Floating Shapes */
.fit-float-shape {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.fit-shape-1 {
	width: 80px;
	height: 80px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	top: 15%;
	right: 10%;
	animation: float-gentle 6s ease-in-out infinite;
}

.fit-shape-2 {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.06);
	bottom: 20%;
	left: 8%;
	animation: float-drift 8s ease-in-out infinite;
}

.fit-shape-3 {
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.1);
	top: 30%;
	left: 45%;
	animation: float-gentle 5s ease-in-out infinite 1s;
}

.fit-banner-content {
	flex: 1;
	max-width: 480px;
	z-index: 1;
}

.fit-banner-content h2 {
	font-size: 2.5rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 20px;
	line-height: 1.2;
}

.fit-highlight {
	position: relative;
	display: inline-block;
}

.fit-highlight::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 8px;
	background: rgba(255, 215, 0, 0.35);
	border-radius: 4px;
	z-index: -1;
}

.fit-banner-content p {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin-bottom: 32px;
}

/* Banner CTA */
.fit-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	color: var(--cal-brand-primary);
	padding: 16px 32px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.fit-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
	color: var(--cal-brand-primary);
}

.fit-cta-btn svg {
	transition: transform 0.3s ease;
}

.fit-cta-btn:hover svg {
	transform: translateX(4px);
}

/* Glass Cards */
.fit-banner-cards {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
	z-index: 1;
}

.fit-glass-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: 24px 28px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	display: grid !important;
	grid-template-columns: 44px 1fr !important;
	column-gap: 16px !important;
	row-gap: 4px !important;
	align-items: start !important;
}

.fit-glass-card:hover {
	transform: translateY(-4px) translateX(4px);
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.25);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.fit-card-icon {
	grid-column: 1 !important;
	grid-row: 1 / span 2 !important;
	width: 44px !important;
	height: 44px !important;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.fit-card-icon svg {
	width: 22px;
	height: 22px;
	stroke: #38bdf8;
}

.fit-glass-card strong {
	grid-column: 2 !important;
	grid-row: 1 !important;
	display: block !important;
	font-weight: 700;
	font-size: 1.05rem;
	margin-bottom: 2px !important;
	color: #ffffff;
}

.fit-glass-card p {
	grid-column: 2 !important;
	grid-row: 2 !important;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.5;
	margin: 0 !important;
}

/* ==========================================================================
   4. BETTER CHOICE SECTION (Modern Vertical Editorial Timeline Layout)
   ========================================================================== */

.cal-better-choice {
	padding: 120px 0;
	background: var(--cal-bg);
	position: relative;
	overflow: hidden;
}

.choice-bg-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		radial-gradient(ellipse at 50% 0%, rgba(87, 0, 180, 0.05) 0%, transparent 70%),
		radial-gradient(rgba(87, 0, 180, 0.03) 1px, transparent 1px);
	background-size: 100% 100%, 36px 36px;
	pointer-events: none;
	z-index: 0;
}

.choice-header {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
	z-index: 1;
}

.choice-title {
	font-size: 3rem;
	font-weight: 850;
	color: var(--cal-text-primary);
	margin-bottom: 18px;
	letter-spacing: -0.035em;
	line-height: 1.15;
}

.choice-subtitle {
	font-size: 1.18rem;
	color: var(--cal-text-secondary);
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.7;
}

/* Timeline Container (Card-less Editorial Timeline) */
.choice-timeline-wrapper {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding-left: 32px;
}

/* Vertical Timeline Spine */
.choice-timeline-wrapper::before {
	content: '';
	position: absolute;
	top: 24px;
	bottom: 24px;
	left: 64px;
	width: 2px;
	background: linear-gradient(180deg, #5700B4 0%, #7C3AED 50%, rgba(87, 0, 180, 0.1) 100%);
}

.choice-timeline-item {
	display: flex;
	gap: 40px;
	position: relative;
	padding-bottom: 64px;
	align-items: flex-start;
}

.choice-timeline-item:last-child {
	padding-bottom: 0;
}

/* Timeline Node Badge & Icon */
.timeline-node {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: relative;
	z-index: 2;
}

.timeline-number {
	font-size: 0.75rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	color: var(--cal-brand-primary);
	background: #FFFFFF;
	box-shadow: 0 0 0 4px #FFFFFF, 0 4px 12px rgba(87, 0, 180, 0.12);
	padding: 3px 10px;
	border-radius: 8px;
	border: 1px solid rgba(87, 0, 180, 0.25);
	position: relative;
	z-index: 3;
}

.timeline-icon-wrap {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #FFFFFF;
	border: 2px solid rgba(87, 0, 180, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cal-brand-primary);
	box-shadow: 0 10px 25px rgba(87, 0, 180, 0.12), 0 0 0 6px #FFFFFF;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	z-index: 3;
}

/* Timeline Icon Wrap Hover Effect Removed as requested */

.timeline-icon-wrap svg {
	width: 28px;
	height: 28px;
	transition: stroke 0.35s ease;
}

/* Timeline Content */
.timeline-content {
	flex: 1;
	padding-top: 14px;
	border-bottom: 1px dashed rgba(226, 232, 240, 0.8);
	padding-bottom: 48px;
}

.choice-timeline-item:last-child .timeline-content {
	border-bottom: none;
	padding-bottom: 0;
}

.timeline-content h3 {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--cal-text-primary);
	margin-bottom: 12px;
	letter-spacing: -0.02em;
	transition: color 0.3s ease;
}

.choice-timeline-item:hover .timeline-content h3 {
	color: var(--cal-brand-primary);
}

.timeline-content p {
	font-size: 1.08rem;
	color: var(--cal-text-secondary);
	line-height: 1.7;
	margin-bottom: 20px;
	max-width: 640px;
}

.choice-learn-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	font-weight: 750;
	color: var(--cal-brand-primary);
	text-decoration: none;
	transition: all 0.3s ease;
}

.choice-learn-more svg {
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.choice-timeline-item:hover .choice-learn-more svg {
	transform: translateX(6px);
}

.choice-learn-more:hover {
	color: var(--cal-brand-primary-hover);
}

/* ==========================================================================
   5. SWITCH STEPS SECTION (Connected Process Flow with Curved Line)
   ========================================================================== */

.cal-switch-section {
	padding: 0 0 100px;
	background: linear-gradient(180deg, #FFFFFF 0%, #F8F7FF 100%);
	position: relative;
	overflow: hidden;
}

.switch-header {
	text-align: center;
	margin-bottom: 80px;
}

.switch-title {
	font-size: 2.85rem;
	font-weight: 850;
	color: var(--cal-text-primary);
	margin-bottom: 16px;
	letter-spacing: -0.03em;
	line-height: 1.18;
}

.switch-subtitle {
	font-size: 1.15rem;
	color: var(--cal-text-secondary);
	max-width: 620px;
	margin: 0 auto;
	line-height: 1.7;
}

.switch-process-wrapper {
	position: relative;
	max-width: 1100px;
	margin: 0 auto 80px;
}

/* SVG Curved Line connecting steps */
.process-curved-svg {
	position: absolute;
	top: 36px;
	left: 5%;
	width: 90%;
	height: 100px;
	pointer-events: none;
	z-index: 1;
}

.process-flow {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	z-index: 2;
	gap: 32px;
}

.flow-step-item {
	flex: 1;
	text-align: center;
	position: relative;
	padding: 0 12px;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-step-item:hover {
	transform: translateY(-6px);
}

/* Watermark Step Number */
.flow-step-watermark {
	position: absolute;
	top: 38px;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 5.5rem;
	font-weight: 900;
	color: var(--cal-brand-primary);
	opacity: 0.14;
	letter-spacing: -0.05em;
	pointer-events: none;
	user-select: none;
	z-index: 0;
	line-height: 1;
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.flow-step-item:hover .flow-step-watermark {
	opacity: 0.25;
	transform: translate(-50%, -50%) scale(1.05);
}

.flow-step-node {
	position: relative;
	display: inline-block;
	margin-bottom: 28px;
}

.flow-step-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
	color: #451A03;
	font-size: 0.8rem;
	font-weight: 850;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(217, 119, 6, 0.35);
	z-index: 3;
}

.flow-icon-box {
	width: 76px;
	height: 76px;
	border-radius: 24px;
	background: #FFFFFF;
	border: 1px solid rgba(87, 0, 180, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cal-brand-primary);
	box-shadow: 0 12px 30px -5px rgba(87, 0, 180, 0.12);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Flow Step Icon Box Hover Effect Removed as requested */

.flow-icon-box svg {
	width: 32px;
	height: 32px;
}

.flow-step-text h3 {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--cal-text-primary);
	margin-bottom: 12px;
	letter-spacing: -0.015em;
}

.flow-step-text p {
	font-size: 0.98rem;
	color: var(--cal-text-secondary);
	line-height: 1.65;
	max-width: 300px;
	margin: 0 auto;
}

.switch-cta {
	text-align: center;
}

.switch-cta .btn-primary-v2 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.switch-cta .btn-primary-v2 svg {
	transition: transform 0.3s ease;
}

.switch-cta .btn-primary-v2:hover svg {
	transform: translateX(4px);
}

.switch-cta-note {
	margin-top: 16px;
	font-size: 0.85rem;
	color: var(--cal-text-secondary);
	font-weight: 500;
	letter-spacing: 0.02em;
}

/* ==========================================================================
   6. USERS ALSO COMPARE SECTION (Split Section Layout — Card-less)
   ========================================================================== */

/* ==========================================================================
   6. USERS ALSO COMPARE SECTION (Ultra-Attractive Modern SaaS Cards)
   ========================================================================== */

.cal-also-compare {
	padding: 70px 0 80px;
	background: linear-gradient(180deg, #FAFAFD 0%, #F4EEFF 100%);
	position: relative;
	overflow: hidden;
}

.also-compare-split {
	display: block;
}

.split-intro {
	text-align: center;
	max-width: 650px;
	margin: 0 auto 52px;
	position: static;
	padding-right: 0;
}

.also-compare-title {
	font-size: 2.85rem;
	font-weight: 850;
	color: var(--cal-text-primary);
	margin: 16px 0;
	letter-spacing: -0.035em;
	line-height: 1.15;
}

.also-compare-subtitle {
	font-size: 1.12rem;
	color: var(--cal-text-secondary);
	line-height: 1.65;
}

/* 3-Column Card Grid */
.split-rows {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	align-items: stretch;
}

.compare-row {
	background: #FFFFFF;
	border: 1px solid rgba(87, 0, 180, 0.12);
	--row-color: var(--cal-brand-primary);
	box-shadow: inset 0 4px 0 var(--row-color), 0 10px 30px -5px rgba(87, 0, 180, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
	border-radius: var(--cal-radius-xl);
	padding: 36px 30px;
	text-decoration: none;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
	will-change: transform, box-shadow;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	margin-bottom: 0;
}

.compare-row:nth-child(1) {
	--row-color: #5700B4;
}

.compare-row:nth-child(2) {
	--row-color: #7C3AED;
}

.compare-row:nth-child(3) {
	--row-color: #059669;
}

.compare-row:hover {
	transform: translateY(-8px);
	border-color: rgba(87, 0, 180, 0.3);
	box-shadow: inset 0 4px 0 var(--row-color), 0 25px 60px -10px rgba(87, 0, 180, 0.2);
}

.compare-row-main {
	padding-right: 0;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.compare-row-header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 18px;
}

.compare-row-badge {
	display: inline-flex;
	align-items: center;
	padding: 5px 14px;
	background: rgba(87, 0, 180, 0.08);
	color: var(--cal-brand-primary);
	border-radius: var(--cal-radius-full);
	font-size: 0.75rem;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	border: 1px solid rgba(87, 0, 180, 0.15);
}

.compare-row-title {
	font-size: 1.4rem;
	font-weight: 850;
	color: var(--cal-text-primary);
	margin: 0;
	line-height: 1.28;
	transition: color 0.35s ease;
}

.compare-row:hover .compare-row-title {
	color: var(--cal-brand-primary);
}

.compare-row-desc {
	font-size: 0.96rem;
	color: var(--cal-text-secondary);
	line-height: 1.6;
	margin-bottom: 24px;
	flex-grow: 1;
}

.compare-row-tags {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 32px;
	padding-top: 24px;
	border-top: 1px dashed rgba(226, 232, 240, 0.9);
}

.compare-tag {
	font-size: 0.88rem;
	font-weight: 650;
	color: #1E293B;
	background: rgba(22, 163, 74, 0.1);
	border: 1px solid transparent;
	padding: 6px 14px;
	border-radius: var(--cal-radius-full);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
}

.compare-tag-check {
	color: var(--cal-check);
	font-weight: 900;
	font-size: 0.95rem;
}

.compare-row-arrow {
	width: 100%;
	height: auto;
	padding: 14px 20px;
	border-radius: 8px;
	background: rgba(87, 0, 180, 0.03);
	border: 1.5px solid rgba(87, 0, 180, 0.2);
	box-shadow: 0 2px 8px rgba(87, 0, 180, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #5700B4;
	font-weight: 600;
	font-size: 0.94rem;
	white-space: nowrap;
	gap: 10px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.compare-row-arrow::before {
	content: 'Explore Comparison';
	white-space: nowrap;
}

.compare-row-arrow svg {
	width: 18px;
	height: 18px;
	stroke: #5700B4;
	transition: transform 0.3s ease;
}

.compare-row:hover .compare-row-arrow,
.compare-row-arrow:hover {
	background: #5700B4;
	color: #FFFFFF;
	border-color: #5700B4;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(87, 0, 180, 0.2);
}

.compare-row:hover .compare-row-arrow svg,
.compare-row-arrow:hover svg {
	stroke: #FFFFFF;
	transform: translateX(4px);
}

/* ==========================================================================
   FAQ SECTION (Preserved — no changes)
   ========================================================================== */

.cal-faq-section {
	padding: 80px 0;
	background: #ffffff;
}

.faq-header {
	text-align: center;
	margin-bottom: 56px;
}

.faq-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--cal-text-primary);
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.faq-subtitle {
	font-size: 1.125rem;
	color: var(--cal-text-secondary);
	max-width: 650px;
	margin: 0 auto;
}

.faq-grid {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background: #ffffff;
	border: 1px solid var(--cal-border);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item[open] {
	border-color: var(--cal-brand-primary);
	box-shadow: 0 10px 25px -5px rgba(87, 0, 180, 0.1);
}

.faq-question {
	padding: 24px 32px;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--cal-text-primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	user-select: none;
}

.faq-question::-webkit-details-marker {
	display: none;
}

.faq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: var(--cal-text-secondary);
	transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-icon {
	transform: rotate(180deg);
	color: var(--cal-brand-primary);
}

.faq-item[open] .faq-question {
	color: var(--cal-brand-primary);
}

.faq-answer {
	padding: 0 32px 32px;
	font-size: 1.05rem;
	color: var(--cal-text-secondary);
	line-height: 1.7;
	border-top: 1px solid transparent;
}

.faq-item[open] .faq-answer {
	border-top-color: var(--cal-border);
	padding-top: 24px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 992px) {
	.cal-container {
		padding: 0 2rem;
	}

	/* Hero Responsive Tablet */
	.cal-hero {
		padding: 80px 0 48px;
	}

	.hero-container {
		flex-direction: column !important;
		text-align: center !important;
		gap: 36px !important;
	}

	.hero-content {
		text-align: center !important;
		width: 100% !important;
		max-width: 720px !important;
		margin: 0 auto !important;
	}

	.cal-title,
	.hero-content .cal-title,
	.cal-title.text-left {
		text-align: center !important;
		font-size: 3.25rem !important;
		line-height: 1.15 !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.cal-subtitle,
	.hero-content .cal-subtitle,
	.cal-subtitle.text-left {
		text-align: center !important;
		margin: 0 auto !important;
		max-width: 580px !important;
	}

	.hero-ctas-v2,
	.cal-cta-container-hero {
		justify-content: center !important;
		margin-top: 32px !important;
	}

	.hero-visual-v2 {
		width: 100% !important;
		max-width: 650px !important;
		margin: 0 auto !important;
	}

	.hero-featured-image {
		width: 100% !important;
		height: auto !important;
		max-width: 100% !important;
		display: block !important;
		margin: 0 auto !important;
		transform: none;
	}

	.hero-split {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.hero-text-content {
		text-align: center;
	}

	.text-left {
		text-align: center !important;
		margin: 0 auto !important;
	}

	.hero-split .cal-cta-container {
		justify-content: center !important;
	}

	/* Banner Tablet */
	.fit-banner {
		flex-direction: column;
		gap: 40px;
		padding: 56px 40px;
	}

	.fit-banner-content {
		max-width: 100%;
		text-align: center;
	}

	.fit-cta-btn {
		margin: 0 auto;
	}

	.fit-banner::before {
		top: -20%;
		right: -50%;
	}

	/* Pricing Tablet */
	.pricing-cards-wrapper {
		grid-template-columns: 1fr;
		max-width: 500px;
	}

	.highlight-card {
		transform: none;
	}

	.highlight-card:hover {
		transform: translateY(-6px);
	}

	/* Better Choice Tablet */
	.choice-grid {
		grid-template-columns: 1fr;
		max-width: 650px;
		margin: 0 auto;
		gap: 24px;
	}

	.choice-card:last-child,
	.choice-card:nth-child(1) {
		grid-column: auto;
		max-width: 100%;
		justify-self: stretch;
	}

	/* Switch Steps Tablet */
	.switch-steps {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
	}

	.switch-step:not(:last-child)::after {
		width: 32px;
		right: -16px;
	}

	/* Also Compare Tablet */
	.split-rows {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 24px !important;
	}
}

@media (max-width: 768px) {

	/* Global Spacing */
	.cal-hero {
		padding: 56px 0 32px;
	}

	.hero-content .cal-title,
	.cal-title.text-left {
		font-size: 2.35rem !important;
	}

	.hero-content .cal-subtitle,
	.cal-subtitle.text-left {
		font-size: 1.05rem !important;
	}

	.cal-pricing-compare,
	.cal-better-choice,
	.cal-faq-section,
	.cal-platform-fit,
	.cal-table-section,
	.cal-switch-section,
	.cal-also-compare {
		padding: 56px 0;
	}

	.cal-container {
		padding: 0 1.5rem;
	}

	/* Typography */
	.cal-title {
		font-size: 2.5rem;
		line-height: 1.2;
	}

	.pricing-title,
	.table-section-title,
	.choice-title,
	.faq-title,
	.switch-title,
	.also-compare-title {
		font-size: 2rem;
	}

	.cal-subtitle,
	.pricing-subtitle,
	.table-section-desc,
	.choice-subtitle,
	.faq-subtitle {
		font-size: 1.05rem;
	}

	/* Table */
	.cal-table-wrapper {
		border-radius: 20px;
	}

	.table-scroll-container {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		border-radius: inherit;
	}

	.cal-table {
		min-width: 620px;
	}

	.cal-table th,
	.cal-table td {
		padding: 14px 12px;
	}

	.table-scroll-hint {
		display: none !important;
	}

	.cal-col-feature {
		width: 36%;
		min-width: 130px;
		font-size: 0.78rem;
	}

	.cal-col-competitor {
		width: 32%;
		min-width: 110px;
		font-size: 0.95rem;
	}

	.cal-col-bwn {
		width: 33%;
		min-width: 145px;
	}

	.cal-bwn-header {
		padding: 16px 14px;
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
		font-size: 1.05rem;
	}

	.winner-badge {
		font-size: 0.68rem;
		padding: 3px 10px;
	}

	.cal-feature-name {
		font-size: 0.95rem;
	}

	.cal-data-competitor,
	.cal-data-bwn {
		font-size: 0.92rem;
	}

	.cal-subtext {
		display: block;
		margin-left: 0;
		margin-top: 3px;
		font-size: 0.76rem;
		opacity: 0.88;
	}

	.table-icon-bg {
		width: 24px;
		height: 24px;
		margin-right: 8px;
	}

	.icon-check,
	.icon-cross,
	.icon-minus {
		width: 14px;
		height: 14px;
	}

	/* Buttons */
	.cal-cta-container {
		flex-direction: column;
		width: 100%;
		gap: 16px;
	}

	.cal-btn-primary {
		width: 100%;
		justify-content: center;
	}

	/* Table CTA Block */
	.table-cta-block {
		padding: 28px 24px;
		flex-direction: column;
		align-items: stretch;
	}

	/* Section 1: Timeline Responsive */
	.choice-timeline-wrapper {
		padding-left: 0;
	}

	.choice-timeline-wrapper::before {
		left: 28px;
	}

	.choice-timeline-item {
		gap: 24px;
	}

	.timeline-icon-wrap {
		width: 56px;
		height: 56px;
	}

	.timeline-icon-wrap svg {
		width: 24px;
		height: 24px;
	}

	.timeline-content h3 {
		font-size: 1.35rem;
	}

	.timeline-content p {
		font-size: 1rem;
	}

	/* Section 2: Process Flow Responsive */
	.process-curved-svg {
		display: none;
	}

	.process-flow {
		flex-direction: column;
		gap: 48px;
		max-width: 100%;
		width: 100%;
		align-items: center;
		margin: 0 auto;
	}

	.flow-step-watermark {
		font-size: 4.5rem !important;
		top: 38px !important;
		left: 50% !important;
		transform: translate(-50%, -50%) !important;
	}

	/* Section 3: Split Compare Responsive */
	.also-compare-split {
		display: block !important;
	}

	.split-intro {
		position: static !important;
		text-align: center !important;
		margin-bottom: 32px !important;
	}

	.split-rows {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
	}

	.compare-row {
		padding: 24px 20px !important;
	}

	.compare-row-arrow {
		width: 100% !important;
		height: auto !important;
		padding: 12px 16px !important;
		font-size: 0.88rem !important;
		white-space: nowrap !important;
	}

	.compare-row-arrow::before {
		white-space: nowrap !important;
	}

	.compare-row-arrow svg {
		width: 16px !important;
		height: 16px !important;
		flex-shrink: 0 !important;
	}
}

@media (max-width: 480px) {

	/* Global Spacing */
	.cal-hero {
		padding: 40px 0 24px;
	}

	.hero-content .cal-title,
	.cal-title.text-left {
		font-size: 1.85rem !important;
		margin-bottom: 16px !important;
	}

	.hero-content .cal-subtitle,
	.cal-subtitle.text-left {
		font-size: 0.95rem !important;
	}

	.hero-ctas-v2 {
		width: 100% !important;
	}

	.hero-ctas-v2 .btn,
	.hero-ctas-v2 a {
		width: 100% !important;
		justify-content: center !important;
	}

	.cal-pricing-compare,
	.cal-better-choice,
	.cal-faq-section,
	.cal-platform-fit,
	.cal-table-section,
	.cal-switch-section,
	.cal-also-compare {
		padding: 40px 0;
	}

	.cal-container {
		padding: 0 1rem;
	}

	/* Typography */
	.cal-title {
		font-size: 2rem;
	}

	.pricing-title,
	.table-section-title,
	.choice-title,
	.faq-title,
	.switch-title,
	.also-compare-title {
		font-size: 1.75rem;
	}

	.cal-subtitle {
		font-size: 1rem;
		line-height: 1.5;
	}

	.cal-badge {
		font-size: 0.8rem;
		padding: 4px 12px;
	}

	.hero-featured-image {
		width: 100%;
	}

	/* Section Chips */
	.section-chip {
		font-size: 0.7rem;
		padding: 6px 14px;
	}

	/* Banner */
	.fit-banner {
		padding: 32px 20px;
	}

	.fit-banner-content h2 {
		font-size: 1.65rem;
	}

	.fit-cta-btn {
		padding: 14px 24px;
		font-size: 0.95rem;
	}

	/* Cards */
	.choice-card {
		padding: 32px 24px 28px;
	}

	.choice-card-number {
		font-size: 2.5rem;
	}

	/* Pricing */
	.pricing-card {
		padding: 28px 20px;
	}

	.price {
		font-size: 3rem;
	}

	.competitor-watermark svg {
		width: 140px;
		height: 140px;
	}

	/* Table Mobile */
	.cal-table-wrapper {
		border-radius: 18px;
	}

	.table-scroll-container {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		border-radius: inherit;
	}

	.cal-table {
		min-width: 560px;
	}

	.cal-table th,
	.cal-table td {
		padding: 14px 12px;
	}

	.cal-col-feature {
		min-width: 150px;
		font-size: 0.78rem;
		letter-spacing: 0.05em;
	}

	.cal-col-competitor {
		min-width: 140px;
		font-size: 0.95rem;
	}

	.cal-col-bwn {
		min-width: 160px;
	}

	.cal-bwn-header {
		padding: 14px 12px;
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
		font-size: 0.98rem;
		line-height: 1.25;
	}

	.winner-badge {
		font-size: 0.65rem;
		padding: 3px 8px;
		letter-spacing: 0.04em;
	}

	.cal-feature-name {
		font-size: 0.9rem;
		line-height: 1.3;
		font-weight: 650;
	}

	.cal-data-competitor,
	.cal-data-bwn {
		font-size: 0.9rem;
		line-height: 1.35;
	}

	.cal-subtext {
		display: block;
		margin-left: 0;
		margin-top: 2px;
		font-size: 0.75rem;
	}

	.table-icon-bg {
		width: 22px;
		height: 22px;
		margin-right: 6px;
	}

	.icon-check,
	.icon-cross,
	.icon-minus {
		width: 13px;
		height: 13px;
	}
}
