:root {
	--primary-color: #004aad;
	--secondary-color: #f5a623;
	--text-dark: #1a1a2e;
	--text-gray: #6b7280;
	--bg-light: #f8f9fa;
	--accent-yellow: #ffd700;
	--accent-red: #ff6b6b;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* CTA Hero Section */
.cta-hero-gradient_xyz {
  background: linear-gradient(135deg, #0084ff 0%, #00d4ff 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-hero-heading_xyz {
  color: white;
  margin-bottom: 20px;
}

.cta-hero-text_xyz {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-container_xyz {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
button.btn.btn-cta-white_xyz:hover {
    color: #009aff !important;
}
.btn-cta-white_xyz {
  background-color: white;
  color: #0084ff;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
}

.btn-cta-transparent_xyz {
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
}

.hero-section {
	background: linear-gradient(135deg,#f0f4f8 0,#e8f0f6 100%);
	padding: 60px 20px;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 160px;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.hero-row {
	display: flex;
	align-items: center;
	gap: 40px;
}

.hero-content {
	flex: 1;
	min-width: 0;
}

.hero-title {
	font-size: 42px;
	font-weight: 800 !important;
	line-height: 1.2;
	margin-bottom: 20px;
	letter-spacing: -0.5px;
	background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 17px;
	line-height: 1.6;
	color: var(--text-gray);
	margin-bottom: 30px;
	max-width: 500px;
}

.button-group {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.btn-primary-custom {
	background-color: var(--primary-color);
	color: #fff;
	padding: 14px 32px;
	border: none;
	border-radius: 15px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-primary-custom:hover {
	background-color: #004aad;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(50,168,159,0.3);
	color: #fff;
}

.btn-secondary-custom {
	background-color: transparent;
	color: var(--secondary-color);
	padding: 14px 32px;
	border: 2px solid var(--secondary-color);
	border-radius: 15px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
	background-color: var(--secondary-color);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(245,166,35,0.3);
}

.arrow-icon {
	display: inline-block;
	font-size: 18px;
}

.stats-container {
	display: flex;
	gap: 50px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.stat-item {
	flex: 1;
	min-width: 150px;
}

.stat-number {
	font-size: 36px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.5;
	max-width: 120px;
}

.hero-image-section {
	flex: 1;
	min-width: 0;
	position: relative;
}

.image-wrapper {
	position: relative;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

.consultation-image {
	width: 100%;
	height: 500px;
	border-radius: 20px;
	object-fit: cover;
	display: block;
}

.image-bg-yellow {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fef3e0;
	border-radius: 20px;
	top: -20px;
	left: -20px;
	z-index: -1;
}

.image-bg-cyan {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #9ecdff;
	border-radius: 20px;
	bottom: -15px;
	right: -15px;
	z-index: -1;
}

.eap-what-section {
	background: linear-gradient(180deg,#f8f9fa 0,#fff 100%);
	position: relative;
	overflow: hidden;
}

.eap-what-section::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient( circle, rgba(50,168,159,0.08) 0, transparent 70% );
	border-radius: 50%;
	top: -200px;
	right: -200px;
	z-index: 1;
}

.eap-what-section::after {
	content: "";
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient( circle, rgba(245,166,35,0.06) 0, transparent 70% );
	border-radius: 50%;
	bottom: -150px;
	left: -150px;
	z-index: 1;
}

.eap-what-section .container {
	position: relative;
	z-index: 2;
}

.definition-box-hero {
	background: linear-gradient(135deg, rgb(0 74 173 / 12%) 0, rgba(245, 166, 35, 0.08) 100%);
	border: 2px solid var(--primary-color);
	border-radius: 20px;
	padding: 40px;
	backdrop-filter: blur(10px);
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	box-shadow: 0 8px 32px rgba(50,168,159,0.1);
}

.definition-box-hero:hover {
	border-color: rgba(50,168,159,0.4);
	box-shadow: 0 12px 48px rgba(50,168,159,0.15);
	transform: translateY(-2px);
}

.definition-icon {
	font-size: 40px;
	color: #015fb9;
	animation: float 3s ease-in-out infinite;
}

.definition-text {
	font-size: 18px;
	line-height: 1.8;
	color: #1a1a2e;
	font-weight: 500;
}

.definition-text strong {
	color: #015fb9;
	font-weight: 700;
}

.eap-card-section {
	background: #fff;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
	border: 1px solid rgba(0,0,0,0.05);
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.eap-card-section:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
	border-color: rgba(50,168,159,0.2);
}

.eap-card-section.stats-variant {
	background: linear-gradient(135deg, rgb(0 74 173 / 14%) 0, rgb(50 44 34 / 5%) 100%);
}

.eap-card-header {
	display: flex;
	align-items: center;
	gap: 16px;
	border-bottom: 2px solid rgba(50,168,159,0.1);
}

.eap-card-header i {
	font-size: 28px;
	color: #32a89f;
	background: rgba(50,168,159,0.1);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	flex-shrink: 0;
}

.eap-card-header h3 {
	 
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a2e;
}

.eap-card-body {
	color: #6b7280;
	line-height: 1.8;
}

.eap-card-body p {
	margin-bottom: 16px;
}

.stat-item-modern {
	background: #fff;
	padding: 10px;
	border-radius: 12px;
	border-left: 4px solid #015fb9;
	display: flex;
	gap: 12px;
	align-items: flex-start;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	align-items: center;
}

.stat-item-modern:hover {
	background: linear-gradient( 135deg, rgba(50,168,159,0.05) 0, rgba(245,166,35,0.05) 100% );
	border-left-color: #f5a623;
	padding-left: 20px;
}

.stat-value {
	font-size: 24px;
	font-weight: 800;
	color: #32a89f;
	min-width: 70px;
	\: Poppins, sans-serif;
}

.stat-desc {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.5;
}

.eap-section-divider {
	border-top: 2px solid rgba(50,168,159,0.1);
	border-bottom: 2px solid rgba(50,168,159,0.1);
	text-align: center;
}

.eap-subsection-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: #1a1a2e;
}

.eap-subsection-desc {
	font-size: 17px;
	color: #6b7280;
}

.reason-card-modern {
	background: #fff;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
	border: 1px solid rgba(0,0,0,0.05);
	position: relative;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.reason-card-modern::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #015fb9, #ffe9c5);
	transform: scaleX(0);
	transform-origin: left;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.reason-card-modern:hover {
	transform: translateY(-12px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.reason-card-modern:hover::before {
	transform: scaleX(1);
}

.reason-card-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 28px;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.reason-card-modern:hover .reason-card-icon {
	transform: scale(1.1) rotate(5deg);
}

.reason-card-modern h4 {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a1a2e;
	 
}

.reason-list {
	margin-bottom: auto;
}

.reason-list li {
	font-size: 16px;
	color: #6b7280;
	padding-left: 20px;
	position: relative;
	line-height: 1.6;
	list-style: none;
}

.reason-list li::before {
	content: "--";
	position: absolute;
	left: 0;
	color: #2b5dce;
	font-weight: 700;
}

.reason-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-color), #00000021);
	color: #fff;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

.service-item-modern {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06);
	text-align: center;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	border: 1px solid rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
}

.service-item-modern:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
	border-color: rgba(50,168,159,0.2);
}

.service-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-color), #4fbcb1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	margin: 0 auto 12px;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.service-item-modern:hover .service-icon {
	transform: scale(1.15);
}

.service-item-modern h5 {
	font-size: 17px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 8px;
}

.service-item-modern p {
	font-size: 15px;
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 0;
}

.eap-bottom-line {
	background: linear-gradient(135deg, var(--primary-color) 0, #2a968991 100%);
	border-radius: 20px;
	color: #fff;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(50,168,159,0.3);
}

.eap-bottom-line::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient( circle, rgba(255,255,255,0.15) 0, transparent 70% );
	border-radius: 50%;
}

.eap-bottom-line-content {
	position: relative;
	z-index: 2;
}

.eap-bottom-line h3 {
	 
	font-size: 2rem;
	font-weight: 800;
}

.eap-bottom-line-intro {
	font-size: 17px;
	color: rgba(255,255,255,0.9);
}

.benefit-item {
	background: rgb(255 255 255 / 80%);
	padding: 10px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.1);
}

.benefit-item:hover {
	background: rgba(255,255,255,0.25);
	transform: translateX(4px);
}

.benefit-item i {
	font-size: 20px;
	color: #10b981;
	flex-shrink: 0;
}

.eap-cta-box {
	background: rgb(255 255 255 / 81%);
	border: 2px solid rgba(255,255,255,0.3);
	border-radius: 12px;
	padding: 24px;
	text-align: center;
	backdrop-filter: blur(10px);
}

.eap-cta-box p {
	color: #015fb9;
	font-size: 16px;
}

.eap-cta-box .btn-light {
	background-color: #ffffff;
	color: #015fb9;
	border: none;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	border: 2px solid #a0a0e2;
	border-radius: 30px;
}

.eap-cta-box .btn-light:hover {
	background-color: #f8f9fa;
	color: #2a9689;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(50,168,159,0.3);
}

.business-case-section {
	background: linear-gradient(180deg,#fff 0,#f8f9fa 100%);
	position: relative;
	overflow: hidden;
}

.business-case-section::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient( circle, rgba(50,168,159,0.08) 0, transparent 70% );
	border-radius: 50%;
	top: -200px;
	left: -200px;
	z-index: 1;
}

.business-case-section::after {
	content: "";
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient( circle, rgba(245,166,35,0.06) 0, transparent 70% );
	border-radius: 50%;
	bottom: -150px;
	right: -150px;
	z-index: 1;
}

.business-case-section .container {
	position: relative;
	z-index: 2;
}

.business-intro-text {
	font-size: 18px;
	line-height: 1.8;
	color: #6b7280;
	font-weight: 500;
	max-width: 600px;
	margin: 0 auto;
}

.business-section-block {
	animation: fadeInUp 0.6s ease-out;
}

.business-subsection-title {
	 
	font-size: 1.8rem;
	font-weight: 800;
	color: #1a1a2e;
	display: flex;
	align-items: center;
	gap: 12px;
}

.roi-box {
	background: linear-gradient(135deg, rgb(1 95 185 / 11%) 0, rgba(245, 166, 35, 0.05) 100%);
	border: 2px solid rgb(1 95 185);
	border-radius: 16px;
	padding: 32px;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	backdrop-filter: blur(10px);
}

.roi-box:hover {
	border-color: rgba(50,168,159,0.4);
	box-shadow: 0 8px 24px rgba(50,168,159,0.15);
	transform: translateY(-2px);
}

.roi-box-header {
	padding-bottom: 16px;
	border-bottom: 2px solid rgba(50,168,159,0.1);
}

.roi-box-header h4 {
	 
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0;
}

.roi-box-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
	gap: 24px;
	padding-top: 16px;
}

.roi-item {
	padding: 16px;
	background: rgba(255,255,255,0.6);
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.roi-item:hover {
	background: rgba(255,255,255,1);
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.roi-label {
	font-size: 15px;
	color: #6b7280;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.roi-value {
	font-size: 24px;
	font-weight: 800;
	color: #32a89f;
	 
	margin-bottom: 4px;
}

.roi-desc {
	font-size: 15px;
	color: #9ca3af;
	line-height: 1.4;
}

.roi-item.border-top {
	grid-column: 1/-1;
	background: linear-gradient(135deg, rgb(95 177 255 / 23%) 0, rgba(245, 166, 35, 0.05) 100%);
}

.industry-card {
	background: #fff;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
	border: 1px solid rgba(0,0,0,0.05);
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.industry-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 20px rgba(50,168,159,0.15);
	border-color: rgba(50,168,159,0.2);
}

.industry-header {
	display: flex;
	gap: 16px;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 2px solid rgba(50,168,159,0.1);
}

.industry-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #015fb9, #015fb9);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	flex-shrink: 0;
}

.industry-header h4 {
	 
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0;
}

.industry-body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: auto;
}

.industry-item {
	padding-bottom: 12px;
}

.industry-label {
	display: inline;
	font-weight: 600;
	color: #1a1a2e;
}

.industry-value {
	display: inline;
	color: #6b7280;
	line-height: 1.6;
}

.cost-breakdown-card {
	background: linear-gradient(135deg,#fff5f5 0,#ffe8e8 100%);
	border: 2px solid rgba(239,68,68,0.2);
	border-radius: 16px;
	padding: 28px;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	height: 100%;
}

.cost-breakdown-card:hover {
	border-color: rgba(239,68,68,0.4);
	box-shadow: 0 8px 24px rgba(239,68,68,0.1);
	transform: translateY(-4px);
}

.cost-card-title {
	 
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a2e;
}

.cost-items {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.cost-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(239,68,68,0.1);
}

.cost-item.total-cost {
	margin-top: 8px;
	padding-top: 12px;
	background: linear-gradient( 135deg, rgba(239,68,68,0.1) 0, rgba(245,166,35,0.05) 100% );
	padding-left: 12px;
	padding-right: 12px;
	border-radius: 8px;
	border: none;
}

.cost-label {
	font-size: 16px;
	color: #6b7280;
	font-weight: 500;
}

.cost-amount {
	font-size: 17px;
	font-weight: 800;
	color: #ef4444;
}

.cost-item.total-cost .cost-label {
	color: #1a1a2e;
}

.impact-comparison-card {
	background: linear-gradient(135deg,#f0fdf4 0,#e8f5e9 100%);
	border: 2px solid rgba(16,185,129,0.2);
	border-radius: 16px;
	padding: 28px;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	height: 100%;
}

.impact-comparison-card:hover {
	border-color: rgba(16,185,129,0.4);
	box-shadow: 0 8px 24px rgba(16,185,129,0.1);
	transform: translateY(-4px);
}

.impact-card-title {
	 
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a2e;
}

.impact-card-subtitle {
	font-size: 15px;
	color: #6b7280;
	font-weight: 600;
	text-transform: uppercase;
}

.comparison-item {
	background: rgba(255,255,255,0.8);
	padding: 16px;
	border-radius: 12px;
	border-left: 4px solid;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.comparison-item.without-eap {
	border-left-color: #ef4444;
}

.comparison-item.with-eap {
	border-left-color: #10b981;
}

.comparison-item:hover {
	transform: translateX(4px);
}

.comparison-label {
	font-size: 14px;
	color: #9ca3af;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.comparison-detail {
	font-size: 15px;
	color: #6b7280;
	margin-bottom: 8px;
}

.comparison-value {
	font-size: 22px;
	font-weight: 800;
	/*   */
	margin-bottom: 4px;
}

.comparison-item.without-eap .comparison-value {
	color: #ef4444;
}

.comparison-item.with-eap .comparison-value {
	color: #10b981;
}

.comparison-period {
	font-size: 14px;
	color: #9ca3af;
	font-weight: 500;
}

.comparison-arrow {
	text-align: center;
	padding: 12px 0;
	font-size: 20px;
	color: #32a89f;
	animation: slide-down 1s ease-in-out infinite;
}

.net-savings {
	background: linear-gradient(135deg,#32a89f 0,#2a9689 100%);
	color: #fff;
	text-align: center;
	border-radius: 12px;
}

.savings-label {
	font-size: 14px;
	color: rgba(255,255,255,0.9);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.savings-value {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 4px;
}

.implementation-journey-section {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}

.timeline-line {
	left: 24px;
}

.week-timeline-item {
	padding-left: 80px;
	gap: 16px;
}

.timeline-dot {
	width: 40px;
	height: 40px;
	border-width: 3px;
}

.week-card {
	padding: 24px;
}

.week-title {
	font-size: 1.1rem;
}

.week-list li {
	font-size: 13px;
}

.timeline-stats-section {
	padding: 32px 24px;
}

.stats-title {
	font-size: 1.2rem;
}

.next-steps-box {
	padding: 32px 24px;
}

.next-steps-title {
	font-size: 1.5rem;
}

.next-steps-text {
	font-size: 14px;
}

.next-steps-actions {
	gap: 12px;
}

.next-steps-actions .btn {
	padding: 12px 24px;
	font-size: 14px;
}

.eap-what-section {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}

.eap-card-section {
	margin-bottom: 24px;
}

.definition-box-hero {
	padding: 30px;
}

.reason-card-modern {
	margin-bottom: 24px;
}

.service-item-modern {
	margin-bottom: 16px;
}

.eap-bottom-line {
	padding: 32px 24px !important;
}

.eap-bottom-line h3 {
	font-size: 1.5rem;
}

.who-benefits-section {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}

.personas-grid {
	grid-template-columns: 1fr;
	gap: 20px;
}

.persona-card {
	margin-bottom: 16px;
}

.persona-header {
	padding: 24px;
}

.persona-content {
	padding: 20px 24px;
}

.bottom-line-section {
	padding: 32px 24px;
}

.bottom-line-title {
	font-size: 1.5rem;
}

.bottom-line-text {
	font-size: 16px;
}

.savings-note {
	font-size: 14px;
	color: rgba(255,255,255,0.8);
}

.metrics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
	gap: 20px;
}

.metric-item {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	border: 1px solid rgba(0,0,0,0.05);
	display: flex;
	gap: 16px;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.metric-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 16px rgba(50,168,159,0.12);
	border-color: rgba(50,168,159,0.2);
}

.metric-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #015fb9, #015fb9);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	flex-shrink: 0;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.metric-item:hover .metric-icon {
	transform: scale(1.1);
}

.metric-content h5 {
	font-size: 17px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 4px;
}

.metric-content p {
	font-size: 15px;
	color: #6b7280;
	line-height: 1.5;
	margin: 0;
}

.why-now-section {
	background: linear-gradient(135deg, rgb(79 153 223 / 39%) 0, rgba(245, 166, 35, 0.08) 100%);
	border: 2px solid rgb(78 153 225 / 58%);
	border-radius: 20px;
	padding: 40px;
	margin-top: 40px;
	backdrop-filter: blur(10px);
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.why-now-section:hover {
	border-color: rgba(50,168,159,0.4);
	box-shadow: 0 12px 48px rgba(50,168,159,0.15);
	transform: translateY(-2px);
}

.why-now-title {
	 
	font-size: 1.6rem;
	font-weight: 800;
	color: #1a1a2e;
	display: flex;
	align-items: center;
	gap: 12px;
}

.why-now-text {
	font-size: 17px;
	line-height: 1.8;
	color: #6b7280;
	margin-bottom: 16px;
}

.why-now-text strong {
	color: #015fb9;
	font-weight: 700;
}

.why-now-highlight {
	display: flex;
	gap: 12px;
	padding: 12px;
	background: rgba(255,255,255,0.6);
	border-radius: 8px;
	margin-bottom: 12px;
	font-size: 16px;
	color: #6b7280;
	line-height: 1.6;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.why-now-highlight:hover {
	background: rgba(255,255,255,1);
	transform: translateX(4px);
}

.why-now-highlight i {
	color: #10b981;
	flex-shrink: 0;
	font-size: 18px;
}

.why-now-highlight strong {
	color: #1a1a2e;
}

.who-benefits-section {
	background: linear-gradient(180deg,#f8f9fa 0,#fff 100%);
	position: relative;
	overflow: hidden;
}

.who-benefits-section::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient( circle, rgba(50,168,159,0.08) 0, transparent 70% );
	border-radius: 50%;
	top: -200px;
	right: -200px;
	z-index: 1;
}

.who-benefits-section::after {
	content: "";
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient( circle, rgba(245,166,35,0.06) 0, transparent 70% );
	border-radius: 50%;
	bottom: -150px;
	left: -150px;
	z-index: 1;
}

.who-benefits-section .container {
	position: relative;
	z-index: 2;
}

.benefits-intro-text {
	font-size: 18px;
	line-height: 1.8;
	color: #6b7280;
	font-weight: 500;
	max-width: 600px;
	margin: 0 auto;
}

.personas-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
	gap: 28px;
	margin: 40px 0;
}

.persona-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
	border: 1px solid rgba(0,0,0,0.05);
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
}

.persona-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #015fb9, #ffdda6);
	transform: scaleX(0);
	transform-origin: left;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	z-index: 10;
}

.persona-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 15px 35px rgba(50,168,159,0.15);
	border-color: rgba(50,168,159,0.2);
}

.persona-card:hover::before {
	transform: scaleX(1);
}

.persona-header {
	display: flex;
	gap: 16px;
	align-items: center;
	padding: 28px;
	border-bottom: 1px solid rgba(0,0,0,0.05);
}

.persona-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg,#32a89f,#4fbcb1);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 28px;
	flex-shrink: 0;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.persona-card:hover .persona-icon {
	transform: scale(1.15) rotate(-5deg);
}

.persona-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0;
	line-height: 1.4;
}

.persona-content {
	padding: 10px 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.benefit-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	color: black;
}

.benefit-label {
	font-size: 14px;
	font-weight: 700;
	color: #015fb9;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	min-width: 70px;
	flex-shrink: 0;
	margin-top: 2px;
}

.benefit-text {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.6;
}

.persona-quote {
	background: linear-gradient( 135deg, rgba(50,168,159,0.08) 0, rgba(245,166,35,0.05) 100% );
	padding: 16px;
	border-radius: 12px;
	border-left: 3px solid #32a89f;
	margin: 8px 0;
	font-style: italic;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.persona-quote:hover {
	border-left-color: #f5a623;
	background: linear-gradient( 135deg, rgba(50,168,159,0.12) 0, rgba(245,166,35,0.08) 100% );
}

.persona-quote i {
	color: #32a89f;
	margin-right: 8px;
	font-size: 12px;
	opacity: 0.6;
}

.persona-quote p {
	margin: 0;
	font-size: 13px;
	color: #6b7280;
	line-height: 1.6;
}

.persona-footer {
	padding: 16px 28px;
	background: rgba(50,168,159,0.05);
	border-top: 1px solid rgba(50,168,159,0.1);
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.persona-badge {
	display: inline-block;
	background: linear-gradient(135deg, #015fb9, #4fbcb1);
	color: #fff;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.bottom-line-section {
	background: linear-gradient(135deg, rgb(135 196 255 / 69%) 0, rgba(245, 166, 35, 0.08) 100%);
	border: 2px solid rgb(73 166 255);
	border-radius: 20px;
	padding: 40px;
	backdrop-filter: blur(10px);
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.bottom-line-section:hover {
	border-color: rgba(50,168,159,0.4);
	box-shadow: 0 12px 48px rgba(50,168,159,0.15);
	transform: translateY(-2px);
}

.bottom-line-content {
	text-align: center;
}

.bottom-line-title {
	 
	font-size: 1.8rem;
	font-weight: 800;
	color: #1a1a2e;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 16px;
}

.bottom-line-title i {
	color: #015fb9;
}

.bottom-line-text {
	font-size: 18px;
	line-height: 1.8;
	color: #6b7280;
	max-width: 700px;
	margin: 0 auto 24px;
}

.bottom-line-text strong {
	color: #015fb9;
	font-weight: 700;
}

.bottom-line-highlight {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 16px;
}

.highlight-item {
	background: rgba(255,255,255,0.8);
	padding: 16px;
	border-radius: 12px;
	border-left: 3px solid #015fb9;
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 15px;
	color: #6b7280;
	line-height: 1.6;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.highlight-item:hover {
	background: rgba(255,255,255,1);
	border-left-color: #f5a623;
	transform: translateX(8px);
}

.highlight-item i {
	color: #015fb9;
	font-size: 16px;
	margin-top: 2px;
	flex-shrink: 0;
}

.highlight-item strong {
	color: #1a1a2e;
	font-weight: 700;
}

.persona-card {
	animation: fadeInUp 0.6s ease-out backwards;
}

.persona-card:nth-child(1) {
	animation-delay: 0.1s;
}

.persona-card:nth-child(2) {
	animation-delay: 0.2s;
}

.persona-card:nth-child(3) {
	animation-delay: 0.3s;
}

.persona-card:nth-child(4) {
	animation-delay: 0.4s;
}

.persona-card:nth-child(5) {
	animation-delay: 0.5s;
}

.persona-card:nth-child(6) {
	animation-delay: 0.6s;
}

.confidentiality-section {
	background: linear-gradient(180deg,#fafbfc 0,#f1f5f9 100%);
	position: relative;
	overflow: hidden;
}

.confidentiality-section::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient( circle, rgba(50,168,159,0.08) 0, transparent 70% );
	border-radius: 50%;
	top: -200px;
	right: -200px;
	z-index: 1;
}

.confidentiality-section::after {
	content: "";
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient( circle, rgba(245,166,35,0.06) 0, transparent 70% );
	border-radius: 50%;
	bottom: -150px;
	left: -150px;
	z-index: 1;
}

.confidentiality-section .container {
	position: relative;
	z-index: 2;
}

.confidentiality-intro {
	font-size: 18px;
	line-height: 1.8;
	color: #6b7280;
	font-weight: 500;
	max-width: 700px;
	margin: 0 auto;
}

.confidentiality-intro strong {
	color: #1a1a2e;
	font-weight: 700;
}

.highlight-answer {
	display: block;
	font-size: 24px;
	font-weight: 800;
	color: #015fb9;
	margin-top: 12px;
}

.confidentiality-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
	gap: 28px;
	margin: 60px 0;
}

.confidence-card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
	border: 1px solid rgba(0,0,0,0.05);
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	animation: fadeInUp 0.6s ease-out backwards;
}

.confidence-card:nth-child(1) {
	animation-delay: 0.1s;
}

.confidence-card:nth-child(2) {
	animation-delay: 0.2s;
}

.confidence-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 15px 35px rgb(194 220 255);
	border-color: rgba(50,168,159,0.2);
}

.card-header {
	padding: 28px;
	background: linear-gradient( 135deg, rgba(50,168,159,0.08) 0, rgba(245,166,35,0.05) 100% );
	border-bottom: 1px solid rgba(0,0,0,0.05);
	display: flex;
	align-items: center;
	gap: 16px;
}

.card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg,#32a89f,#4fbcb1);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 28px;
	flex-shrink: 0;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.confidence-card:hover .card-icon {
	transform: scale(1.15) rotate(-5deg);
}

.card-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0;
	line-height: 1.4;
}

.card-body {
	padding: 28px;
}

.card-intro {
	font-size: 16px;
	color: #6b7280;
	line-height: 1.7;
	margin-bottom: 16px;
}

.confidentiality-list {
	list-style: none;
	padding: 0;
	margin: 16px 0;
}

.confidentiality-list li {
	font-size: 16px;
	color: #6b7280;
	line-height: 1.8;
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.confidentiality-list i {
	color: #015fb9;
	font-size: 16px;
	margin-top: 2px;
	flex-shrink: 0;
}

.exception-box {
	background: rgba(245,166,35,0.08);
	border: 1px solid rgba(245,166,35,0.2);
	border-left: 3px solid #f59e0b;
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 14px;
	color: #92400e;
	margin-top: 16px;
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

.exception-box i {
	color: #f59e0b;
	font-size: 14px;
	margin-top: 2px;
	flex-shrink: 0;
}

.no-individual-list {
	list-style: none;
	padding: 0;
	margin: 16px 0;
}

.no-individual-list li {
	display: flex;
	gap: 16px;
	margin-bottom: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(0,0,0,0.05);
}

.no-individual-list li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.list-label {
	font-weight: 700;
	color: #015fb9;
	font-size: 14px;
	min-width: 90px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.list-text {
	color: #6b7280;
	font-size: 15px;
	line-height: 1.6;
}

.section-header {
	margin-bottom: 28px;
}

.section-heading {
	font-size: 1.5rem;
	font-weight: 800;
	color: #1a1a2e;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 0;
}

.section-heading i {
	color: #015fb9;
}

.legal-protection-section {
	background: #fff;
	border-radius: 18px;
	padding: 40px;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
	border: 1px solid rgba(0,0,0,0.05);
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.legal-protection-section:hover {
	box-shadow: 0 12px 24px rgba(50,168,159,0.1);
	border-color: rgba(50,168,159,0.2);
}

.legal-checklist {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.legal-item {
	display: flex;
	gap: 16px;
	padding: 16px;
	background: linear-gradient( 135deg, rgba(50,168,159,0.04) 0, rgba(245,166,35,0.02) 100% );
	border-radius: 12px;
	border-left: 3px solid #015fb9;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.legal-item:hover {
	background: linear-gradient( 135deg, rgba(50,168,159,0.08) 0, rgba(245,166,35,0.04) 100% );
	border-left-color: #f59e0b;
	transform: translateX(4px);
}

.legal-check {
	color: #015fb9;
	font-size: 20px;
	flex-shrink: 0;
	margin-top: 2px;
}

.legal-content {
	flex-grow: 1;
}

.legal-title {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 4px;
}

.legal-desc {
	font-size: 15px;
	color: #6b7280;
	margin: 0;
}

.professionals-section {
	background: linear-gradient(135deg, rgb(170 206 255) 0, rgba(245, 166, 35, 0.08) 100%);
	border: 2px solid rgb(130 189 245);
	border-radius: 18px;
	padding: 40px;
}

.professionals-box {
	background: rgba(255,255,255,0.9);
	border-radius: 14px;
	padding: 24px;
	backdrop-filter: blur(10px);
}

.professionals-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.professionals-list li {
	font-size: 15px;
	color: #6b7280;
	line-height: 1.8;
	margin-bottom: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(0,0,0,0.05);
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.professionals-list li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.professionals-list i {
	color: #015fb9;
	font-size: 16px;
	margin-top: 2px;
	flex-shrink: 0;
}

.professionals-list strong {
	color: #1a1a2e;
	font-weight: 700;
}

.security-section {
	padding: 0;
}

.security-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
	gap: 20px;
}

.security-item {
	background: #fff;
	border-radius: 16px;
	padding: 28px 20px;
	text-align: center;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
	border: 1px solid rgba(0,0,0,0.05);
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	animation: fadeInUp 0.6s ease-out backwards;
}

.security-item:nth-child(1) {
	animation-delay: 0.1s;
}

.security-item:nth-child(2) {
	animation-delay: 0.2s;
}

.security-item:nth-child(3) {
	animation-delay: 0.3s;
}

.security-item:nth-child(4) {
	animation-delay: 0.4s;
}

.security-item:nth-child(5) {
	animation-delay: 0.5s;
}

.security-item:nth-child(6) {
	animation-delay: 0.6s;
}

.security-item:hover {
	transform: translateY(-12px);
	box-shadow: 0 12px 28px rgba(50,168,159,0.15);
	border-color: rgba(50,168,159,0.2);
}

.security-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg,#32a89f,#4fbcb1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	margin: 0 auto 12px;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.security-item:hover .security-icon {
	transform: scale(1.2) rotate(-5deg);
}

.security-title {
	font-size: 14px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 6px;
}

.security-desc {
	font-size: 13px;
	color: #6b7280;
	margin: 0;
	line-height: 1.3;
}

.data-control-section {
	background: #fff;
	border-radius: 18px;
	padding: 40px;
	box-shadow: 0 4px 6px -1px rgb(175 216 255);
	border: 1px solid rgba(0,0,0,0.05);
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.data-control-section:hover {
	box-shadow: 0 12px 24px rgba(50,168,159,0.1);
	border-color: rgba(50,168,159,0.2);
}

.control-box {
	background: linear-gradient(135deg, rgb(198 223 255) 0, rgba(245, 166, 35, 0.02) 100%);
	border-radius: 14px;
	padding: 24px;
}

.control-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.control-list li {
	font-size: 15px;
	color: #6b7280;
	line-height: 1.8;
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.control-list li:last-child {
	margin-bottom: 0;
}

.control-list i {
	color: #015fb9;
	font-size: 16px;
	margin-top: 2px;
	flex-shrink: 0;
}

.trust-section {
	padding: 0;
}

.trust-box {
	background: linear-gradient(135deg, #74b5f4 0, #e5d3b5 100%);
	border-radius: 20px;
	padding: 48px;
	color: #fff;
	box-shadow: 0 20px 50px rgb(224 240 255);
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.trust-box:hover {
	transform: translateY(-4px);
	box-shadow: 0 25px 60px rgba(50,168,159,0.4);
}

.trust-header {
	margin-bottom: 24px;
}

.trust-title {
	font-size: 1.6rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 0;
}

.trust-title i {
	font-size: 28px;
}

.trust-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
}

.trust-list li {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 14px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.trust-list li:last-child {
	margin-bottom: 0;
}

.trust-list i {
	color: #fbbf24;
	font-size: 18px;
	margin-top: 2px;
	flex-shrink: 0;
}

.trust-closing {
	background: rgba(255,255,255,0.15);
	border-radius: 12px;
	padding: 20px;
	border-left: 3px solid #fbbf24;
	font-size: 14px;
	line-height: 1.7;
}

.trust-closing p {
	margin: 0;
}

.trust-closing strong {
	color: #fbbf24;
	font-weight: 700;
}

.implementation-journey-section {
	background: linear-gradient(180deg,#fff 0,#f8f9fa 100%);
	position: relative;
	overflow: hidden;
}

.implementation-journey-section::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient( circle, rgba(50,168,159,0.08) 0, transparent 70% );
	border-radius: 50%;
	top: -200px;
	left: -200px;
	z-index: 1;
}

.implementation-journey-section::after {
	content: "";
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient( circle, rgba(245,166,35,0.06) 0, transparent 70% );
	border-radius: 50%;
	bottom: -150px;
	right: -150px;
	z-index: 1;
}

.implementation-journey-section .container {
	position: relative;
	z-index: 2;
}

.journey-intro-text {
	font-size: 18px;
	line-height: 1.8;
	color: #6b7280;
	font-weight: 500;
	max-width: 650px;
	margin: 0 auto;
}

.journey-intro-text strong {
	color: #015fb9;
	font-weight: 700;
}

.journey-timeline-wrapper {
	position: relative;
	padding: 40px 0;
	margin: 60px 0;
}

.timeline-line {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg,#32a89f 0,#f5a623 100%);
	border-radius: 2px;
	z-index: 0;
}

.week-timeline-item {
	margin-bottom: 60px;
	position: relative;
	display: flex;
	gap: 40px;
	align-items: flex-start;
	animation: fadeInUp 0.6s ease-out backwards;
}

.week-timeline-item:nth-child(odd) {
	flex-direction: row;
}

.week-timeline-item:nth-child(even) {
	flex-direction: row-reverse;
}

.week-timeline-item:nth-child(1) {
	animation-delay: 0.1s;
}

.week-timeline-item:nth-child(2) {
	animation-delay: 0.2s;
}

.week-timeline-item:nth-child(3) {
	animation-delay: 0.3s;
}

.week-timeline-item:nth-child(4) {
	animation-delay: 0.4s;
}

.week-timeline-item:nth-child(5) {
	animation-delay: 0.5s;
}

.week-timeline-item:nth-child(6) {
	animation-delay: 0.6s;
}

.timeline-content-left, .timeline-content-right {
	flex: 1;
	min-width: 0;
}

.timeline-dot {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg,#32a89f,#4fbcb1);
	border: 4px solid #fff;
	box-shadow: 0 0 0 2px #f8f9fa, 0 4px 12px rgba(50,168,159,0.3);
	flex-shrink: 0;
	z-index: 10;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.week-timeline-item:hover .timeline-dot {
	transform: scale(1.2);
	box-shadow: 0 0 0 2px #f8f9fa, 0 8px 20px rgba(50,168,159,0.4);
}

.week-card {
	background: #fff;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
	border: 1px solid rgba(0,0,0,0.05);
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.week-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgb(197 226 255);
	border-color: rgba(50,168,159,0.2);
}

.week-card.highlight-card {
	background: linear-gradient( 135deg, rgba(50,168,159,0.08) 0, rgba(245,166,35,0.05) 100% );
	border: 2px solid rgba(50,168,159,0.2);
}

.week-card.highlight-card:hover {
	border-color: rgba(50,168,159,0.4);
	box-shadow: 0 12px 32px rgba(50,168,159,0.2);
}

.week-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #015fb9, #015fb9);
	color: #fff;
	padding: 8px 14px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	width: fit-content;
	margin-bottom: 16px;
}

.week-badge i {
	font-size: 14px;
}

.week-title {
	font-size: 1.3rem;
	font-weight: 800;
	color: #1a1a2e;
	margin-bottom: 16px;
	line-height: 1.3;
}

.week-list {
	list-style: none;
	padding: 0;
	margin: 16px 0;
	flex-grow: 1;
}

.week-list li {
	font-size: 15px;
	color: #6b7280;
	line-height: 1.8;
	margin-bottom: 12px;
	padding-left: 0;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.week-list li i {
	color: #015fb9;
	font-size: 14px;
	margin-top: 2px;
	flex-shrink: 0;
}

.deliverable-tag {
	background: linear-gradient(135deg, rgb(201 229 255) 0, rgba(245, 166, 35, 0.05) 100%);
	border: 1px solid rgb(110 182 252);
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 15px;
	color: #6b7280;
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.deliverable-tag:hover {
	background: linear-gradient( 135deg, rgba(50,168,159,0.15) 0, rgba(245,166,35,0.08) 100% );
	border-color: rgba(50,168,159,0.3);
}

.deliverable-tag i {
	color: #015fb9;
	font-size: 14px;
}

.deliverable-tag strong {
	color: #015fb9;
	font-weight: 700;
}

.timeline-stats-section {
	background: linear-gradient(135deg, rgb(201 224 255) 0, rgba(245, 166, 35, 0.08) 100%);
	border: 2px solid rgb(167 207 246);
	border-radius: 20px;
	padding: 40px;
	backdrop-filter: blur(10px);
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.timeline-stats-section:hover {
	border-color: rgb(193 225 255);
	box-shadow: 0 12px 48px rgb(201 229 255);
	transform: translateY(-2px);
}

.stats-header {
	text-align: center;
}

.stats-title {
	font-size: 1.4rem;
	font-weight: 800;
	color: #1a1a2e;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0;
}

.stats-title i {
	color: #015fb9;
}

.stat-card {
	background: rgba(255,255,255,0.8);
	border-radius: 14px;
	padding: 24px;
	border: 1px solid rgba(50,168,159,0.1);
	display: flex;
	gap: 16px;
	align-items: flex-start;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.stat-card:hover {
	background: rgba(255,255,255,1);
	border-color: rgba(50,168,159,0.3);
	transform: translateY(-4px);
	box-shadow: 0 8px 16px rgba(50,168,159,0.1);
}

.stat-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #015fb9, #015fb9);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	flex-shrink: 0;
}

.stat-content {
	flex-grow: 1;
}

.stat-label {
	font-size: 14px;
	color: #9ca3af;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin-bottom: 4px;
}

.stat-value {
	font-size: 28px;
	font-weight: 800;
	color: #015fb9;
	margin-bottom: 4px;
}

.stat-desc {
	font-size: 16px;
	color: #6b7280;
	line-height: 1.5;
	margin: 0;
}

.next-steps-section {
	margin-top: 60px;
}

.next-steps-box {
	background: linear-gradient(135deg, #f4f4f4 0, #b6d6ff 100%);
	border-radius: 20px;
	padding: 48px;
	color: #fff;
	text-align: center;
	box-shadow: 0 20px 50px rgb(166 189 220);
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
	border: 2px solid #a8d5ff;
}

.next-steps-box:hover {
	transform: translateY(-4px);
	box-shadow: 0 25px 60px rgb(156 198 255);
}

.next-steps-title {
	font-size: 1.8rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 12px;
}

.next-steps-title i {
	font-size: 28px;
}

.next-steps-text {
	font-size: 16px;
	line-height: 1.8;
	color: rgb(1 95 185);
	margin-bottom: 28px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.next-steps-text strong {
	color: var(--bs-success);
	font-weight: 700;
}

.next-steps-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.next-steps-actions .btn {
	border-radius: 50px;
	padding: 14px 32px;
	font-weight: 700;
	transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.next-steps-actions .btn-primary {
	background: #fff;
	color: #015fb9;
	border: none;
}

.next-steps-actions .btn-primary:hover {
	background: #f0fdf4;
	color: #2a9689;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.next-steps-actions .btn-outline-primary {
	background: 0 0;
	color: #015fb9;
	border: 2px solid #fff;
}

.next-steps-actions .btn-outline-primary:hover {
	background: rgb(1 95 185);
	color: #fff;
	border-color: #fff;
	transform: translateY(-2px);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes slide-down {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(6px);
	}
}


@media (max-width: 991.98px) {
	.confidentiality-cards {
		grid-template-columns: 1fr;
	}

	.security-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.roi-box-content {
		grid-template-columns: repeat(2,1fr);
	}

	.business-subsection-title {
		font-size: 1.5rem;
	}

	.personas-grid {
		grid-template-columns: repeat(2,1fr);
		gap: 24px;
	}

	.timeline-line {
		left: 30px;
		transform: translateX(-50%);
	}

	.week-timeline-item {
		flex-direction: column !important;
		gap: 13px;
		padding-left: 100px;
	}

	.timeline-dot {
		position: absolute;
		left: 0;
		top: 0;
	}

	.timeline-content-left, .timeline-content-right {
		flex: 1;
	}
}

@media (max-width: 992px) {
	.hero-section {
		padding: 40px 20px;
		min-height: auto;
	}

	.hero-row {
		flex-direction: column;
		gap: 30px;
		text-align: left;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-description {
		font-size: 15px;
	}

	.stats-container {
		gap: 30px;
		margin-top: 30px;
	}

	.stat-number {
		font-size: 28px;
	}

	.image-wrapper {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.hero-section {
		padding: 30px 15px;
	}

	.hero-title {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.hero-description {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.button-group {
		flex-direction: column;
		margin-bottom: 30px;
	}

	.btn-primary-custom, .btn-secondary-custom {
		width: 100%;
		justify-content: center;
		padding: 12px 24px;
		font-size: 15px;
	}

	.stats-container {
		flex-direction: column;
		gap: 20px;
		margin-top: 20px;
	}

	.stat-item {
		flex: none;
	}

	.stat-number {
		font-size: 24px;
	}

	.stat-label {
		max-width: 100%;
	}

	.hero-content {
		text-align: left;
		margin-top: 80px;
		margin: 80px 0px 20px 0px;
	}

	.image-wrapper {
		max-width: 100%;
	}
}

@media (max-width: 767.98px) {
	.confidentiality-section {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}

	.highlight-answer {
		font-size: 20px;
	}

	.confidentiality-cards {
		margin: 40px 0;
		gap: 20px;
	}

	.confidence-card {
		border-radius: 16px;
	}

	.card-header {
		padding: 24px;
	}

	.card-body {
		padding: 24px;
	}

	.card-title {
		font-size: 1.1rem;
	}

	.section-heading {
		font-size: 1.3rem;
	}

	.data-control-section, .legal-protection-section {
		padding: 32px 24px;
	}

	.security-grid {
		grid-template-columns: repeat(2,1fr);
		gap: 16px;
	}

	.security-item {
		padding: 20px 16px;
	}

	.professionals-section {
		padding: 32px 24px;
	}

	.trust-box {
		padding: 32px 24px;
	}

	.trust-title {
		font-size: 1.4rem;
	}

	.business-case-section {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}

	.roi-box {
		padding: 24px;
	}

	.roi-box-content {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.roi-item.border-top {
		grid-column: 1;
	}

	.cost-breakdown-card, .impact-comparison-card {
		padding: 24px;
	}

	.metrics-grid {
		grid-template-columns: 1fr;
	}

	.why-now-section {
		padding: 32px 24px;
	}

	.business-subsection-title {
		font-size: 1.3rem;
	}
}
@media (max-width: 575.98px) {
	.who-benefits-section {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.section-title {
		font-size: 1.2rem !important;
	}

	.benefits-intro-text {
		font-size: 16px;
	}

	.personas-grid {
		gap: 16px;
		grid-template-columns: repeat(1, 1fr) !important;
	}

	.persona-card {
		margin-bottom: 12px;
	}

	.persona-header {
		padding: 20px;
		gap: 12px;
	}

	.persona-icon {
		width: 50px;
		height: 50px;
		font-size: 24px;
	}

	.persona-title {
		font-size: 1rem;
	}

	.persona-content {
		padding: 16px 20px;
		gap: 12px;
	}

	.benefit-label {
		font-size: 12px;
		min-width: 60px;
	}

	.benefit-text {
		font-size: 13px;
	}

	.persona-quote {
		padding: 12px;
		margin: 4px 0;
	}

	.persona-quote p {
		font-size: 12px;
	}

	.persona-footer {
		padding: 12px 20px;
	}

	.persona-badge {
		font-size: 11px;
		padding: 4px 10px;
	}

	.bottom-line-section {
		padding: 24px 16px;
	}

	.bottom-line-title {
		font-size: 1.3rem;
		gap: 8px;
	}

	.bottom-line-text {
		font-size: 14px;
		margin-bottom: 16px;
	}

	.highlight-item {
		font-size: 12px;
		padding: 12px;
	}

	.implementation-journey-section {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.journey-intro-text {
		font-size: 16px;
	}

	.journey-timeline-wrapper {
		padding: 30px 0;
		margin: 40px 0;
	}

	.timeline-line {
		left: 20px;
	}

	.week-timeline-item {
		margin-bottom: 48px;
		padding-left: 70px;
		gap: 12px;
	}

	.timeline-dot {
		width: 35px;
		height: 35px;
		border-width: 2px;
	}

	.week-badge {
		font-size: 11px;
		padding: 6px 10px;
		gap: 6px;
	}

	.week-badge i {
		font-size: 12px;
	}

	.week-title {
		font-size: 1rem;
		margin-bottom: 12px;
	}

	.week-list li {
		font-size: 12px;
		margin-bottom: 10px;
		gap: 6px;
	}

	.week-list li i {
		font-size: 12px;
	}

	.deliverable-tag {
		font-size: 12px;
		padding: 10px 12px;
	}

	.timeline-stats-section {
		padding: 24px 16px;
	}

	.stat-card {
		padding: 20px;
		gap: 12px;
	}

	.stat-icon {
		width: 45px;
		height: 45px;
		font-size: 20px;
	}

	.stat-value {
		font-size: 24px;
	}

	.next-steps-box {
		padding: 24px 16px;
		border-radius: 16px;
	}

	.next-steps-title {
		font-size: 1.3rem;
		gap: 8px;
	}

	.next-steps-title i {
		font-size: 24px;
	}

	.next-steps-text {
		font-size: 13px;
		margin-bottom: 20px;
	}

	.next-steps-actions {
		flex-direction: column;
		gap: 12px;
	}

	.next-steps-actions .btn {
		width: 100%;
		padding: 12px 20px;
		font-size: 13px;
	}

	.eap-what-section {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.eap-subsection-title {
		font-size: 1.2rem;
	}

	.definition-text {
		font-size: 16px;
	}

	.eap-card-section {
		padding: 20px;
	}

	.reason-card-modern h4 {
		font-size: 0.9rem;
	}

	.eap-bottom-line {
		border-radius: 16px;
		padding: 24px 16px !important;
	}

	.eap-cta-box {
		padding: 16px;
	}

	.benefit-item {
		font-size: 12px;
		padding: 12px;
	}

	.confidentiality-section {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.confidentiality-intro {
		font-size: 16px;
	}

	.highlight-answer {
		font-size: 18px;
		margin-top: 8px;
	}

	.confidentiality-cards {
		grid-template-columns: 1fr;
		margin: 30px 0;
		gap: 16px;
	}

	.card-header {
		padding: 20px;
		gap: 12px;
	}

	.card-icon {
		width: 50px;
		height: 50px;
		font-size: 24px;
	}

	.card-title {
		font-size: 1rem;
	}

	.card-body {
		padding: 20px;
	}

	.card-intro {
		font-size: 13px;
	}

	.confidentiality-list li, .no-individual-list li {
		font-size: 13px;
	}

	.section-heading {
		font-size: 1.2rem;
		gap: 8px;
	}

	.data-control-section, .legal-protection-section {
		padding: 24px 16px;
	}

	.legal-checklist {
		gap: 12px;
	}

	.legal-item {
		padding: 12px;
	}

	.legal-title {
		font-size: 13px;
	}

	.legal-desc {
		font-size: 12px;
	}

	.professionals-section {
		padding: 24px 16px;
	}

	.professionals-box {
		padding: 16px;
	}

	.professionals-list li {
		font-size: 13px;
	}

	.security-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.security-item {
		padding: 16px 12px;
	}

	.security-icon {
		width: 45px;
		height: 45px;
		font-size: 20px;
		margin-bottom: 10px;
	}

	.security-title {
		font-size: 13px;
	}

	.security-desc {
		font-size: 11px;
	}

	.control-list li {
		font-size: 13px;
	}

	.trust-box {
		padding: 24px 16px;
		border-radius: 16px;
	}

	.trust-title {
		font-size: 1.2rem;
		gap: 8px;
	}

	.trust-title i {
		font-size: 24px;
	}

	.trust-list li {
		font-size: 13px;
		gap: 10px;
	}

	.trust-list i {
		font-size: 16px;
	}

	.trust-closing {
		padding: 16px;
		font-size: 12px;
	}

	.business-case-section {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.business-intro-text {
		font-size: 16px;
	}

	.business-subsection-title {
		font-size: 1.2rem !important;
		gap: 8px;
	}

	.roi-item {
		padding: 12px;
	}

	.roi-value {
		font-size: 20px;
	}

	.industry-card {
		padding: 20px;
	}

	.cost-breakdown-card, .impact-comparison-card {
		padding: 20px;
	}

	.comparison-value {
		font-size: 18px;
	}

	.why-now-section {
		padding: 24px 16px;
	}

	.why-now-title {
		font-size: 1.3rem;
	}

	.why-now-text {
		font-size: 14px;
	}

	.why-now-highlight {
		font-size: 12px;
		padding: 10px;
	}
}
@media (max-width: 480px) {
	.hero-section {
		padding: 20px 12px;
		min-height: auto;
		text-align: left !important;
	}

	.hero-title {
		font-size: 27px !important;
		margin-bottom: 12px;
		line-height: 1.3;
	}

	.hero-description {
		font-size: 13px;
		margin-bottom: 15px;
		line-height: 26px;
	}

	.button-group {
		gap: 10px;
		margin-bottom: 20px;
		margin-top: 20px;
	}

	.btn-primary-custom, .btn-secondary-custom {
		padding: 10px 20px;
		font-size: 14px;
	}

	.stats-container {
		gap: 0px;
		margin-top: 15px;
		margin: 10px;
	}

	.stat-number {
		font-size: 20px;
	}

	.stat-label {
		font-size: 12px;
	}

	.image-bg-cyan, .image-bg-yellow {
		top: -10px;
		left: -10px;
		bottom: -10px;
		right: -10px;
	}
  .roi-box-contentSpecificity:{
        grid-template-columns: repeat(1, 1fr);
    }
.week-timeline-item {
        flex-direction: column !important;
        gap: 13px;
        padding-left: 45px;
    }
  .roi-box-contentspecificity{
    grid-template-columns: repeat(1, 1fr);
  }
  .week-timeline-item {
    flex-direction: column !important;
    gap: 13px;
    padding-left: 45px;
  }
  .industry-header h4 {
    font-size: 0.8rem;
  }
  .business-subsection-title {
    font-size: 1.1rem !important;
    gap: 8px;
  }
  .btn-group-lg > .btn,
  .btn-lg {
    padding: 10px 10px !important;
    font-size: 0.85rem;
    border-radius: 0.4rem;
  }
}


