@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* ==========================================================================
   Accounting Engagement Kit — Widget Styles (Pixel-Perfect Reference Design)
   ========================================================================== */

.aek-widget {
	/* Theme Color Custom Properties */
	--theme-color-text_link: #b5179e;
	--theme-color-text_hover: #b5179e;

	/* Color Tokens */
	--aek-bg: #FFFFFF;
	--aek-bg-alt: #F8FAFC;
	--aek-card-bg: #FFFFFF;
	--aek-border: #E2E8F0;
	--aek-border-dark: #0F172A;
	--aek-heading: #0F172A;
	--aek-body: #334155;
	--aek-muted: #64748B;

	/* Brand Color Palette (Magenta Theme Primary, Orange, Green, Dark Blue) */
	--aek-blue: var(--theme-color-text_link, #b5179e);
	--aek-blue-light: #FDF4FF;
	--aek-blue-border: #F5D0FE;

	--aek-orange: var(--theme-color-text_link, #b5179e);
	--aek-orange-light: #FDF4FF;
	--aek-orange-border: #F5D0FE;

	--aek-green: var(--theme-color-text_link, #b5179e);
	--aek-green-light: #FDF4FF;
	--aek-green-border: #F5D0FE;

	--aek-darkblue: #1E3A8A;
	--aek-darkblue-light: #FDF4FF;

	--aek-accent: var(--theme-color-text_link, #b5179e);
	--aek-radius: 16px;
	--aek-container: 1200px;
	--aek-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
	--aek-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);

	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	color: var(--aek-body);
	background: #FFFFFF;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	width: 100%;
	box-sizing: border-box;
}

.aek-widget *,
.aek-widget *::before,
.aek-widget *::after,
.aek-widget h1,
.aek-widget h2,
.aek-widget h3,
.aek-widget h4,
.aek-widget p,
.aek-widget span,
.aek-widget a,
.aek-widget li,
.aek-widget button {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	box-sizing: border-box;
}

.aek-container {
	max-width: var(--aek-container);
	width: 100%;
	margin: 0 auto;
	padding: 0 32px;
}

.aek-section {
	padding: 32px 0;
	width: 100%;
	background: transparent;
}

.aek-section-heading {
	font-size: 24px !important;
	font-weight: 800;
	color: var(--aek-heading);
	text-align: center;
	margin-bottom: 18px;
	line-height: 1.3;
	letter-spacing: -0.5px;
}

/* Checklists - Base Styling */
.aek-check-list,
.aek-check-list-wrapper ul {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.aek-check-list li,
.aek-check-list-wrapper li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
	font-size: 14px;
	color: var(--aek-body);
	line-height: 1.5;
}

.aek-check-list li::before,
.aek-check-list-wrapper li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563EB'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

/* Specific Checkmark Colors */
.aek-check-blue li::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563EB'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}
.aek-check-orange li::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F97316'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}
.aek-check-green li::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2316A34A'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

/* Animations */
.aek-animate {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.aek-animate.aek-visible {
	opacity: 1;
	transform: translateY(0);
}

.aek-animate.aek-delay-1 { transition-delay: 0.1s; }
.aek-animate.aek-delay-2 { transition-delay: 0.2s; }
.aek-animate.aek-delay-3 { transition-delay: 0.3s; }

/* Fail-safe: Ensure hero content is immediately visible on page load */
.aek-hero-content {
	opacity: 1 !important;
	transform: none !important;
}

/* ==========================================================================
   #1 Hero Section
   ========================================================================== */

.aek-hero {
	padding: 20px 0 28px;
	background: transparent;
	width: 100%;
	overflow: hidden;
}

.aek-hero-grid {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 48px !important;
	width: 100% !important;
}

.aek-hero-content {
	flex: 1 1 50% !important;
	max-width: 50% !important;
	min-width: 0 !important;
}

.aek-hero-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--aek-orange);
	margin-bottom: 12px;
}

.aek-hero-heading {
	font-size: 32px !important;
	font-weight: 800;
	line-height: 1.25;
	color: var(--aek-heading);
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}

.aek-hero-description {
	font-size: 15px;
	color: var(--aek-body);
	line-height: 1.6;
}

.aek-hero-media {
	position: relative;
	flex: 1 1 50% !important;
	max-width: 50% !important;
	min-width: 0 !important;
}

.aek-hero-media::before {
	content: '';
	position: absolute;
	top: -6px;
	bottom: -6px;
	left: -6px;
	right: -6px;
	border-radius: 126px 24px 24px 24px;
	border: 2px solid var(--aek-orange, #b5179e);
	pointer-events: none;
	z-index: 0;
}

.aek-hero-image-wrapper {
	position: relative;
	width: 100%;
	border-radius: 120px 20px 20px 20px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
	z-index: 1;
}

.aek-hero-image-wrapper img {
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 340px;
	display: block;
	object-fit: cover;
}

/* Hero Badge Cards Overlay (Reference Design matching) */
.aek-hero-badges {
	position: absolute;
	top: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 2;
}

.aek-hero-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(226, 232, 240, 0.8);
	padding: 8px 14px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	font-size: 12px;
	font-weight: 700;
	color: var(--aek-heading);
}

.aek-hero-badge .aek-badge-icon {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: var(--aek-blue-light);
	display: flex;
	align-items: center;
	justify-content: center;
}

.aek-hero-badge .aek-badge-icon svg {
	width: 14px;
	height: 14px;
	fill: var(--aek-blue);
}



/* ==========================================================================
   #2 Support Frequency
   ========================================================================== */

.aek-frequency {
	background: #F8FAFC;
	width: 100%;
}

.aek-freq-cards {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	gap: 24px !important;
	margin-bottom: 36px !important;
	width: 100% !important;
}

.aek-freq-card {
	flex: 1 1 33.333% !important;
	max-width: 33.333% !important;
	background: #FFFFFF;
	border: 1.5px solid var(--aek-border);
	border-radius: var(--aek-radius);
	padding: 36px 24px;
	text-align: center;
	min-width: 0 !important;
	transition: all 0.3s ease;
	box-shadow: var(--aek-shadow-sm);
}

.aek-freq-card:hover {
	border-color: var(--card-border-hover, var(--aek-blue));
	transform: translateY(-4px);
	box-shadow: var(--aek-shadow-md);
}

/* Themes for Frequency Cards */
.aek-freq-card.aek-theme-blue {
	--card-border-hover: var(--aek-blue);
}
.aek-freq-card.aek-theme-blue .aek-card-icon {
	background: var(--aek-blue-light);
}
.aek-freq-card.aek-theme-blue .aek-card-icon svg {
	fill: var(--aek-blue);
}

.aek-freq-card.aek-theme-orange {
	--card-border-hover: var(--aek-orange);
}
.aek-freq-card.aek-theme-orange .aek-card-icon {
	background: var(--aek-orange-light);
}
.aek-freq-card.aek-theme-orange .aek-card-icon svg {
	fill: var(--aek-orange);
}

.aek-freq-card.aek-theme-green {
	--card-border-hover: var(--aek-green);
}
.aek-freq-card.aek-theme-green .aek-card-icon {
	background: var(--aek-green-light);
}
.aek-freq-card.aek-theme-green .aek-card-icon svg {
	fill: var(--aek-green);
}

.aek-freq-card .aek-card-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
}

.aek-freq-card .aek-card-icon svg {
	width: 28px;
	height: 28px;
}

.aek-freq-card .aek-card-title {
	font-size: 19px;
	font-weight: 700;
	color: var(--aek-heading);
	margin-bottom: 8px;
}

.aek-freq-card .aek-card-desc {
	font-size: 13.5px;
	color: var(--aek-muted);
	margin: 0;
	line-height: 1.5;
}

/* 4th Card - Dedicated Accountant */
.aek-recommendation {
	text-align: center;
	margin-top: 24px;
}

.aek-recommend-card {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	background: var(--aek-green-light, #FDF4FF);
	border: 1.5px solid var(--aek-green-border, #F5D0FE);
	border-radius: 50px;
	padding: 16px 40px;
	max-width: 100%;
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
	transition: all 0.3s ease;
}

.aek-recommend-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10);
}

.aek-recommend-card .aek-card-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.aek-recommend-card .aek-card-icon svg {
	width: 22px;
	height: 22px;
	fill: var(--aek-green, #b5179e);
}

.aek-recommend-info { text-align: left; }

.aek-recommend-info .aek-card-title {
	font-size: 17px;
	font-weight: 800;
	color: var(--aek-heading);
	margin: 0 0 2px;
}

.aek-recommend-info .aek-card-desc {
	font-size: 13.5px;
	color: var(--aek-muted);
	margin: 0;
}

/* ==========================================================================
   #3 Support Models
   ========================================================================== */

.aek-models {
	background: #FFFFFF;
	width: 100%;
}

.aek-models-cards {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	gap: 24px !important;
	width: 100% !important;
}

.aek-model-card {
	flex: 1 1 33.333% !important;
	max-width: 33.333% !important;
	background: #FFFFFF;
	border: 1.5px solid var(--aek-border);
	border-radius: var(--aek-radius);
	padding: 38px 28px 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	min-width: 0 !important;
	transition: all 0.3s ease;
	box-shadow: var(--aek-shadow-sm);
}

.aek-model-card:hover {
	border-color: var(--card-border-hover, var(--aek-blue));
	box-shadow: var(--aek-shadow-md);
	transform: translateY(-4px);
}

/* Model Theme Styles */
.aek-model-card.aek-theme-blue {
	--card-accent: var(--aek-blue);
	--card-border-hover: var(--aek-blue);
}
.aek-model-card.aek-theme-blue .aek-card-icon {
	background: var(--aek-blue-light);
}
.aek-model-card.aek-theme-blue .aek-card-icon svg {
	fill: var(--aek-blue);
}

.aek-model-card.aek-theme-orange {
	--card-accent: var(--aek-orange);
	--card-border-hover: var(--aek-orange);
}
.aek-model-card.aek-theme-orange .aek-card-icon {
	background: var(--aek-orange-light);
}
.aek-model-card.aek-theme-orange .aek-card-icon svg {
	fill: var(--aek-orange);
}

.aek-model-card.aek-theme-green {
	--card-accent: var(--aek-green);
	--card-border-hover: var(--aek-green);
}
.aek-model-card.aek-theme-green .aek-card-icon {
	background: var(--aek-green-light);
}
.aek-model-card.aek-theme-green .aek-card-icon svg {
	fill: var(--aek-green);
}

.aek-card-header {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.aek-model-card .aek-card-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.aek-model-card .aek-card-icon svg {
	width: 32px;
	height: 32px;
}

.aek-model-card .aek-card-title {
	font-size: 21px;
	font-weight: 800;
	color: var(--aek-heading);
	margin-bottom: 8px;
}

.aek-model-card .aek-card-desc {
	font-size: 13.5px;
	color: var(--aek-muted);
	line-height: 1.5;
	margin-bottom: 26px;
}

.aek-model-card .aek-check-list,
.aek-model-card .aek-check-list-wrapper {
	text-align: left;
	margin: 0 auto 28px;
	display: inline-block;
	width: 100%;
}

.aek-model-explore-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 800;
	color: var(--card-accent, var(--aek-blue));
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.aek-model-explore-link:hover {
	opacity: 0.85;
}

.aek-model-explore-link .aek-orange-arrow,
.aek-model-explore-link .aek-link-arrow {
	color: var(--card-accent, var(--aek-blue));
	font-weight: 800;
	font-size: 16px;
	transition: transform 0.2s ease;
}

.aek-model-explore-link:hover .aek-link-arrow {
	transform: translateX(4px);
}

/* ==========================================================================
   #4 Pay As You Go Banner
   ========================================================================== */

.aek-banner {
	background: #FFFFFF;
	padding: 50px 0;
}

.aek-banner-grid {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	gap: 36px !important;
	width: 100% !important;
}

.aek-banner-image-wrapper {
	position: relative;
	flex: 0 0 38% !important;
	max-width: 38% !important;
	border-radius: var(--aek-radius);
	overflow: hidden;
	min-width: 0 !important;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.aek-banner-image-wrapper img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}

.aek-banner-file-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--aek-blue);
	color: #FFFFFF;
	padding: 12px;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
}

.aek-banner-file-badge svg {
	width: 24px;
	height: 24px;
	fill: #FFFFFF;
}

.aek-banner-content {
	flex: 1 1 auto !important;
	min-width: 0 !important;
}

.aek-banner-content .aek-banner-heading {
	font-size: 26px;
	font-weight: 800;
	color: var(--aek-heading);
	margin-bottom: 8px;
}

.aek-banner-content .aek-banner-subtitle {
	font-size: 14px;
	color: var(--aek-muted);
	margin-bottom: 20px;
}

.aek-banner-cta-floating {
	flex: 0 0 180px !important;
	max-width: 180px !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
}

.aek-cta-icon-circle {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--aek-blue-light);
	border: 1.5px solid var(--aek-blue-border);
	display: flex;
	align-items: center;
	justify-content: center;
}

.aek-cta-icon-circle svg {
	width: 28px;
	height: 28px;
	fill: var(--aek-blue);
}

.aek-cta-floating-link {
	font-size: 13px;
	font-weight: 800;
	color: var(--aek-blue);
	text-decoration: none;
	line-height: 1.4;
	transition: opacity 0.2s ease;
}

.aek-cta-floating-link:hover {
	opacity: 0.8;
}

/* ==========================================================================
   #5 Monthly Capacity
   ========================================================================== */

.aek-capacity-card-container {
	background: #FFFFFF;
	border: 1.5px solid var(--aek-border);
	border-radius: var(--aek-radius);
	padding: 40px;
	width: 100%;
	box-shadow: var(--aek-shadow-sm);
}

.aek-capacity-grid {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	gap: 40px !important;
	width: 100% !important;
}

.aek-capacity-main-left {
	flex: 1 1 55% !important;
	max-width: 55% !important;
	min-width: 0 !important;
}

.aek-capacity-icon-box {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--aek-orange-light);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.aek-capacity-icon-box svg {
	width: 26px;
	height: 26px;
	fill: var(--aek-orange);
}

.aek-capacity-title-link {
	text-decoration: none;
	display: block;
}

.aek-capacity-title-link:hover .aek-capacity-heading {
	color: var(--aek-orange);
}

.aek-capacity-heading {
	font-size: 24px;
	font-weight: 800;
	color: var(--aek-orange);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color 0.2s ease;
}

.aek-capacity-heading .aek-link-arrow {
	font-size: 20px;
}

.aek-capacity-subtitle {
	font-size: 13.5px;
	color: var(--aek-muted);
	margin-bottom: 20px;
}

.aek-capacity-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--aek-orange);
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	margin-top: 8px;
}

.aek-capacity-right {
	flex: 1 1 45% !important;
	max-width: 45% !important;
	min-width: 0 !important;
}

.aek-capacity-options-card {
	background: #F8FAFC;
	border: 1.5px solid var(--aek-border);
	border-radius: 16px;
	padding: 24px;
	width: 100%;
}

.aek-capacity-options-title {
	font-size: 13px;
	font-weight: 800;
	color: var(--aek-heading);
	text-align: center;
	margin-bottom: 18px;
}

.aek-capacity-options {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	gap: 12px !important;
	width: 100% !important;
}

.aek-hour-card {
	flex: 1 1 25% !important;
	max-width: 25% !important;
	background: #FFFFFF;
	border: 1.5px solid var(--aek-border);
	border-radius: 12px;
	padding: 16px 8px;
	text-align: center;
	min-width: 0 !important;
	transition: all 0.2s ease;
}

.aek-hour-card.aek-hour-active,
.aek-hour-card:hover {
	border-color: var(--aek-orange);
	background: var(--aek-orange-light);
}

.aek-hour-value {
	display: block;
	font-size: 20px;
	font-weight: 800;
	color: var(--aek-heading);
}

.aek-hour-card.aek-hour-active .aek-hour-value {
	color: var(--aek-orange);
}

.aek-hour-label {
	display: block;
	font-size: 11px;
	color: var(--aek-muted);
	font-weight: 600;
}

/* Orange Plus Addon Notice */
.aek-capacity-add-on {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #FFFFFF;
	border: 1px dashed var(--aek-orange-border);
	padding: 12px 16px;
	border-radius: 12px;
	margin-top: 16px;
	font-size: 12.5px;
	color: var(--aek-body);
}

.aek-plus-badge {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--aek-orange);
	color: #FFFFFF;
	font-weight: 800;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* ==========================================================================
   #6 Dedicated Accountant
   ========================================================================== */

.aek-dedicated {
	background: #FFFFFF;
}

.aek-dedicated-grid {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	gap: 36px !important;
	width: 100% !important;
}

/* Left side Pills list matching Reference Design Image 1 */
.aek-dedicated-left-pills {
	flex: 0 0 280px !important;
	max-width: 280px !important;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.aek-dedicated-pill {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #F8FAFC;
	border: 1px solid var(--aek-border);
	padding: 14px 18px;
	border-radius: 12px;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--aek-heading);
	transition: all 0.2s ease;
}

.aek-dedicated-pill:hover {
	background: var(--aek-green-light);
	border-color: var(--aek-green-border);
	color: var(--aek-green);
}

.aek-dedicated-pill .aek-pill-icon {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.aek-dedicated-pill .aek-pill-icon svg {
	width: 16px;
	height: 16px;
	fill: var(--aek-green);
}

.aek-dedicated-main {
	flex: 1 1 auto !important;
	min-width: 0 !important;
}

.aek-dedicated-heading {
	font-size: 26px;
	font-weight: 800;
	color: var(--aek-heading);
	margin-bottom: 8px;
}

.aek-dedicated-subtitle {
	font-size: 13.5px;
	color: var(--aek-muted);
	margin-bottom: 20px;
}

/* Right Callout Card */
.aek-dedicated-callout {
	flex: 0 0 240px !important;
	max-width: 240px !important;
	background: var(--aek-green-light);
	border: 1.5px solid var(--aek-green-border);
	border-radius: var(--aek-radius);
	padding: 24px;
	text-align: center;
}

.aek-dedicated-callout .aek-callout-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}

.aek-dedicated-callout .aek-callout-icon svg {
	width: 28px;
	height: 28px;
	fill: var(--aek-green);
}

.aek-dedicated-callout a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13.5px;
	font-weight: 800;
	color: var(--aek-green);
	text-decoration: none;
}

/* ==========================================================================
   #7 Comparison Table (Pixel Perfect Color Coded Header & Clean Grid)
   ========================================================================== */

.aek-table-wrapper {
	overflow-x: auto;
	border-radius: 16px;
	border: 1.5px solid var(--aek-border);
	width: 100%;
	background: #FFFFFF;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
	-webkit-overflow-scrolling: touch;
}

.aek-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 750px;
	table-layout: fixed;
}

.aek-table th,
.aek-table td {
	padding: 16px 20px;
	text-align: center;
	font-size: 13.5px;
	border-bottom: 1px solid #E2E8F0;
	border-right: 1px solid #E2E8F0;
	color: var(--aek-body);
	vertical-align: middle;
	line-height: 1.5;
}

.aek-table tr:last-child td {
	border-bottom: none;
}

.aek-table th:last-child,
.aek-table td:last-child {
	border-right: none;
}

.aek-table th {
	width: 25%;
}

.aek-table th:first-child,
.aek-table td:first-child {
	text-align: left;
	width: 25%;
}

.aek-table thead th {
	background: #F8FAFC;
	font-weight: 800;
	font-size: 13px;
	padding: 18px 20px;
	text-transform: uppercase;
	border-bottom: 2px solid var(--aek-border);
}

/* Themed Header Columns matching Reference Design */
.aek-table thead th.aek-th-feature {
	color: var(--aek-muted);
	font-size: 12px;
	letter-spacing: 0.5px;
}

.aek-table thead th.aek-th-blue {
	color: var(--aek-blue);
}

.aek-table thead th.aek-th-orange {
	color: var(--aek-orange);
}

.aek-table thead th.aek-th-green {
	color: var(--aek-green);
}

.aek-th-header-cell {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.aek-th-header-cell svg {
	width: 18px;
	height: 18px;
}

.aek-th-blue svg { fill: var(--aek-blue); }
.aek-th-orange svg { fill: var(--aek-orange); }
.aek-th-green svg { fill: var(--aek-green); }

.aek-table tbody tr:nth-child(even) {
	background-color: #F8FAFC;
}

.aek-table tbody tr:hover {
	background-color: #F1F5F9;
}

.aek-td-feature {
	font-weight: 700;
	color: var(--aek-heading);
}

/* ==========================================================================
   #8 Process Stepper / Timeline
   ========================================================================== */

.aek-timeline-steps {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: flex-start !important;
	justify-content: space-between !important;
	width: 100% !important;
	position: relative;
}

.aek-timeline-step {
	flex: 1 1 22% !important;
	text-align: center;
	padding: 0 10px;
	min-width: 0 !important;
}

/* Color Themes for Stepper Icons */
.aek-timeline-step.aek-step-1 .aek-timeline-icon {
	background: var(--aek-blue-light);
}
.aek-timeline-step.aek-step-1 .aek-timeline-icon svg {
	fill: var(--aek-blue);
}

.aek-timeline-step.aek-step-2 .aek-timeline-icon {
	background: var(--aek-orange-light);
}
.aek-timeline-step.aek-step-2 .aek-timeline-icon svg {
	fill: var(--aek-orange);
}

.aek-timeline-step.aek-step-3 .aek-timeline-icon {
	background: var(--aek-green-light);
}
.aek-timeline-step.aek-step-3 .aek-timeline-icon svg {
	fill: var(--aek-green);
}

.aek-timeline-step.aek-step-4 .aek-timeline-icon {
	background: var(--aek-darkblue-light);
}
.aek-timeline-step.aek-step-4 .aek-timeline-icon svg {
	fill: var(--aek-darkblue);
}

.aek-timeline-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.aek-timeline-icon svg { width: 26px; height: 26px; }

.aek-timeline-step-title {
	font-size: 16px;
	font-weight: 800;
	color: var(--aek-heading);
	margin-bottom: 6px;
}

.aek-timeline-step-desc {
	font-size: 12.5px;
	color: var(--aek-muted);
	line-height: 1.45;
}

.aek-timeline-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 14px;
	flex-shrink: 0;
}

.aek-timeline-arrow svg { width: 24px; height: 24px; fill: #CBD5E1; }

/* ==========================================================================
   #9 Finance Support Workflow (Grid + Central Chart Flow Badge)
   ========================================================================== */

.aek-workflow {
	background: #F8FAFC;
	padding: 70px 0;
}

.aek-workflow .aek-section-heading {
	color: var(--aek-blue);
}

.aek-workflow-image-container {
	max-width: 900px;
	margin: 0 auto;
	width: 100%;
}

.aek-workflow-image-wrapper {
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
	border: 1.5px solid var(--aek-border);
	background: #FFFFFF;
}

.aek-workflow-image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* ==========================================================================
   #10 CTA Band
   ========================================================================== */

.aek-cta {
	padding: 60px 0;
	text-align: center;
	background: linear-gradient(135deg, #d946ef 0%, #b5179e 50%, #86198f 100%) !important;
	width: 100%;
}

.aek-cta-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.aek-cta-heading {
	font-size: 26px !important;
	font-weight: 800 !important;
	color: #FFFFFF !important;
	margin: 0 0 14px;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.aek-cta-subtext {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.92) !important;
	max-width: 680px;
	margin: 0 auto 28px;
	line-height: 1.6;
}

.aek-cta-btn {
	display: inline-block;
	padding: 14px 36px;
	background: #FFFFFF !important;
	color: #0F172A !important;
	font-size: 15px;
	font-weight: 700;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aek-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
