:root {
	--pf-primary: #0E4A78;
	--pf-accent: #00D6A0;
	--pf-gold: #FFD166;
	--pf-muted: #6C757D;
	--pf-bg: #F6FBFF;
	--max-width: 1200px;
}

html,
body {
	height: 100%;
}

body {
	font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
	background: var(--pf-bg);
	color: #07122a;
	-webkit-font-smoothing: antialiased;
	margin: 0
}

.container-max {
	max-width: var(--max-width);
}

/* reveal animation */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .66s cubic-bezier(.22, .9, .37, 1), transform .66s cubic-bezier(.22, .9, .37, 1);
}

.reveal.inview {
	opacity: 1;
	transform: none
}

/* HERO — cleaner, centered copy, big visual */
.about-hero {
	padding: 84px 0 48px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 520px;
	gap: 36px;
	align-items: center
}

@media(max-width:991px) {
	.hero-grid {
		grid-template-columns: 1fr
	}
}

.hero-copy h1 {
	font-size: 2.6rem;
	line-height: 1.3;
	margin: 0 0 14px
}

.hero-copy p.lead {
	color: var(--pf-muted);
	font-size: 1.05rem;
	margin-bottom: 18px
}

.hero-cta .btn {
	border-radius: 10px;
	padding: .7rem 1.2rem;
	font-weight: 700
}

.hero-figure {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.hero-figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.hero-figure .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(14, 74, 120, 0.08), rgba(0, 0, 0, 0.0));
}

/* stats row — pill style */
.stats-row {
	display: flex;
	gap: 12px;
	margin-top: 20px;
	flex-wrap: wrap
}

.stat-pill {
	background: #fff;
	padding: 12px 16px;
	border-radius: 12px;
	box-shadow: 0 14px 36px rgba(10, 61, 98, 0.04);
	min-width: 160px
}

.stat-pill .num {
	font-weight: 800;
	color: var(--pf-primary);
	font-size: 1.15rem
}

.stat-pill .label {
	color: var(--pf-muted);
	font-size: .85rem
}

/* SOLUTIONS grid */
.about-services .service-card {
	background: #fff;
	border-radius: 14px;
	padding: 24px;
	border: 1px solid #e5ecf5;
	transition: all .25s ease;
	position: relative;
}

.about-services .service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(14, 74, 120, .08);
}

.about-services .service-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: rgba(14, 74, 120, .08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}


/* TIMELINE — horizontal on desktop, vertical on mobile */
.timeline-wrap {
	margin-top: 28px
}

.timeline {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	padding-bottom: 10px
}

.timeline::-webkit-scrollbar {
	height: 8px
}

.timeline-item {
	min-width: 260px;
	background: #fff;
	padding: 18px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(10, 61, 98, 0.04)
}

.timeline-item .year {
	display: block;
	font-weight: 800;
	color: var(--pf-primary);
	margin-bottom: 8px
}

@media(max-width:767px) {
	.timeline {
		flex-direction: column
	}

	.timeline-item {
		min-width: auto
	}
}

/* LEADERSHIP — nicer cards */
.leaders {

}

.leader {
	background: #fff;
	padding: 18px;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(10, 61, 98, 0.04);
	text-align: center
}

.leader img {
	width: 100%;
	height: 300px;
	border-radius: 12px;
	object-fit: contain;
	margin-bottom: 12px;
	/*
	filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.35s ease;
	*/
}
/*
.leader img:hover {
  filter: grayscale(0%);
  transform: scale(1.03);
}
*/

.leader .role {
	color: var(--pf-muted);
	font-size: .95rem
}

/* COMPARE table */
.compare-table thead th {
	background: linear-gradient(180deg, #fbfdff, #ffffff);
	color: var(--pf-primary);
	border-bottom: 0
}

/* VIDEO thumbnail */
.video-thumb {
	position: relative;
	display: inline-block;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(10, 61, 98, 0.06)
}

.video-thumb img {
	display: block;
	width: 100%;
	height: auto
}

.video-play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 30px rgba(10, 61, 98, 0.08)
}

/* CTA */
.about-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 22px;
	border-radius: 12px;
	background: linear-gradient(90deg, rgba(14, 74, 120, 0.03), rgba(0, 214, 160, 0.02));
	box-shadow: 0 12px 30px rgba(10, 61, 98, 0.06);
}

@media(max-width:767px) {
	.about-cta {
		flex-direction: column;
		text-align: center
	}
}

/* a11y focus visible */
a:focus {
	outline: 3px solid rgba(14, 74, 120, 0.12);
	outline-offset: 3px
}

//Services

/* Cards */
.feature-card {
  background: white;
  border-radius: 12px;
  padding: 1.4rem;
  box-shadow: 0 6px 20px rgba(14, 74, 120, 0.06)
}

/* Stats */
.stat {
  background: linear-gradient(180deg, rgba(255, 209, 102, 0.12), rgba(255, 209, 102, 0.04));
  padding: 1rem;
  border-radius: 10px
}

/* Approach steps */
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--pf-primary);
  color: white;
  font-weight: 600
}

/* Testimonial */
.quote {
  font-size: 1.05rem;
  color: var(--pf-primary)
}

//Payments
.btn-pf-primary {
	background: var(--pf-primary);
	border: 0;
	color: #fff
}

.btn-pf-accent {
	background: var(--pf-accent);
	border: 0;
	color: #063545
}

.feature-card {
	background: white;
	border-radius: 12px;
	padding: 1.4rem;
	box-shadow: 0 6px 20px rgba(14, 74, 120, 0.06)
}

.rail-list li {
	margin-bottom: .45rem
}

.api-box {
	background: linear-gradient(180deg, rgba(0, 214, 160, 0.05), rgba(14, 74, 120, 0.02));
	padding: 1rem;
	border-radius: 10px
}

.stat {
	background: linear-gradient(180deg, rgba(255, 209, 102, 0.12), rgba(255, 209, 102, 0.04));
	padding: 1rem;
	border-radius: 10px
}

.img-hero {
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(14, 74, 120, 0.06)
}

@media (max-width:575px) {
	.hero {
		padding: 3rem 0
	}
}
