*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--blue: #2D3A8C;
	--pink: #D4367A;
	--purple: #7B5EA7;
	--blue-light: #E8EBF8;
	--pink-light: #FAE8F1;
	--purple-light: #F0EEFE;
	--text: #1A1A2E;
	--muted: #5A5A72;
	--subtle: #9090A8;
	--surface: #F7F7FA;
	--border: rgba(45, 58, 140, 0.12);
	--white: #ffffff;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	color: var(--text);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	padding: 0 48px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo img {
	height: 30px;
	width: auto;
	display: block;
}

.nav-cta {
	display: flex;
	align-items: center;
	gap: 24px;
}

.nav-cta a {
	font-size: 14px;
	color: var(--muted);
	text-decoration: none;
	transition: color 0.2s;
}

.nav-cta a:hover {
	color: var(--blue);
}

.nav-cta .btn-nav {
	font-size: 14px;
	font-weight: 500;
	color: var(--blue);
	border: 1px solid var(--blue);
	border-radius: 6px;
	padding: 7px 18px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.nav-cta .btn-nav:hover {
	background: var(--blue);
	color: white;
}

/* ── LAYOUT ── */
.container {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 48px;
}

section {
	padding: 96px 0;
}

.divider {
	border: none;
	border-top: 1px solid var(--border);
	margin: 0;
}

/* ── HERO ── */
.hero {
	padding: 112px 0 96px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -200px;
	width: 600px;
	height: 600px;
	/* background: radial-gradient(circle, rgba(212, 54, 122, 0.06) 0%, transparent 70%); */
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -100px;
	width: 480px;
	height: 480px;
	/* background: radial-gradient(circle, rgba(45, 58, 140, 0.05) 0%, transparent 70%); */
	pointer-events: none;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pink);
	margin-bottom: 32px;
	opacity: 0;
	animation: fadeUp 0.6s 0.1s ease forwards;
}

/* .hero-eyebrow::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 1px;
	background: var(--pink);
} */

/* ── ANIMATED HEADLINE ── */
.hero-headline {
	/* font-family: 'DM Serif Display', serif; */
	font-size: clamp(40px, 5.5vw, 64px);
	font-weight: 500;
	line-height: 1.12;
	color: var(--blue);
	margin-bottom: 8px;
	letter-spacing: -0.01em;
	opacity: 0;
	animation: fadeUp 0.7s 0.2s ease forwards;
}

.hero-headline .static-part {
	color: var(--blue);
}

.hero-headline .arr {
	display: inline-block;
	color: var(--purple);
	margin: 0 2px 0 6px;
	/* font-family: 'DM Sans', sans-serif; */
	/* font-size: 0.72em; */
	/* vertical-align: middle; */
	position: relative;
	/* margin-bottom: -0.1em; */
}
.hero-headline .arr img {
	width: 0.7em;
}

/* Animated word container */
.word-cycle {
	display: inline-block;
	position: relative;
	color: var(--pink);
	font-style: italic;
	min-width: 200px;
	/* vertical-align: middle; */
}

.word-cycle .word {
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 0;
	white-space: nowrap;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.word-cycle .word.active {
	opacity: 1;
	transform: translateY(0);
	position: relative;
}

.hero-tagline {
	font-size: 28px;
	font-weight: 500;
	color: var(--blue);
	line-height: 1.2;
	margin-bottom: 16px;
	opacity: 0;
	animation: fadeUp 0.7s 0.5s ease forwards;
	text-wrap: balance;
}

.hero-sub {
	font-size: 18px;
	color: var(--muted);
	line-height: 1.6;
	max-width: 580px;
	opacity: 0;
	animation: fadeUp 0.7s 0.65s ease forwards;
}

.hero-trust {
	display: flex;
	gap: 32px;
	margin-top: 48px;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeUp 0.7s 0.8s ease forwards;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 14px;
	color: var(--muted);
}

.trust-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	flex-shrink: 0;
}

.trust-dot.b {
	background: var(--blue);
}

.trust-dot.p {
	background: var(--pink);
}

.trust-dot.v {
	background: var(--purple);
}

/* ── SERVICES ── */
.section-label {
	font-size: 23px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--subtle);
	margin-bottom: 20px;
}

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 28px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(45, 58, 140, 0.08);
}

.card-icon {
	width: 100%;
	height: 80px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.card-icon.b {
	background: var(--blue-light);
}

.card-icon.p {
	background: var(--pink-light);
}

.card-icon.v {
	background: var(--purple-light);
}

.card h3 {
	font-size: 20px;
	font-weight: 500;
	color: var(--text);
	margin-bottom: 10px;
	letter-spacing: -0.01em;
}

.card p {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.6;
}

/* ── ABOUT ── */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}

.about-text h2 {
	/* font-family: 'DM Serif Display', serif; */
	font-size: 34px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--text);
	margin-bottom: 20px;
	letter-spacing: -0.01em;
}

.about-text p {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.6;
}

.about-text p+p {
	margin-top: 16px;
}

.linkedin-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	font-size: 14px;
	font-weight: 500;
	color: var(--blue);
	border: 1px solid rgba(45, 58, 140, 0.3);
	border-radius: 8px;
	padding: 9px 18px;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s;
}

.linkedin-btn:hover {
	background: var(--blue-light);
	border-color: var(--blue);
}

.about-right {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.stat-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 28px;
}

.stat-row {
	display: flex;
	gap: 0;
}

.stat {
	flex: 1;
}

.stat+.stat {
	padding-left: 24px;
	border-left: 1px solid var(--border);
}

.stat-num {
	/* font-family: 'DM Serif Display', serif; */
	font-size: 48px;
	font-weight: 400;
	color: var(--blue);
	line-height: 1;
	margin-bottom: 6px;
}

.stat-num.p {
	color: var(--pink);
}

.stat-label {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.4;
}

.quote-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-left: 3px solid var(--blue);
	border-radius: 0 14px 14px 0;
	padding: 24px 28px;
}

.quote-card p {
	/* font-family: 'DM Serif Display', serif; */
	font-size: 16px;
	font-style: italic;
	font-weight: 600;
	color: var(--text);
	line-height: 1.65;
}

.quote-card cite {
	display: block;
	margin-top: 14px;
	font-size: 13px;
	font-weight: 500;
	color: var(--muted);
	font-style: normal;
	/* font-family: 'DM Sans', sans-serif; */
}

/* ── CONTACT ── */
.contact-section {
	background: linear-gradient(135deg, #1A1F5E 0%, #2D3A8C 50%, #4A2060 100%);
	border-radius: 20px;
	padding: 56px 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.contact-left h2 {
	/* font-family: 'DM Serif Display', serif; */
	font-size: 32px;
	font-weight: 500;
	color: white;
	margin-bottom: 10px;
}

.contact-left p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.65);
	max-width: 340px;
	line-height: 1.65;
}

.contact-items {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.contact-badge {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-item a {
	font-size: 15px;
	font-weight: 500;
	color: white;
	text-decoration: none;
	transition: color 0.2s;
}

.contact-item a:hover {
	color: rgba(255, 255, 255, 0.75);
}

/* ── FOOTER ── */
footer {
	padding: 40px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--border);
}

.footer-copy {
	font-size: 14px;
	color: var(--subtle);
}

.footer-logo img {
	height: 24px;
	width: auto;
	/* opacity: 0.7; */
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(16px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
	nav {
		padding: 0 24px;
	}

	.nav-cta .btn-nav {
		display: none;
	}

	.container {
		padding: 0 24px;
	}

	section {
		padding: 64px 0;
	}

	.hero {
		padding: 72px 0 64px;
	}

	.hero-headline {
		font-size: 50px;
	}

	.trust-item {
		font-size: 18px;
	}

	.cards {
		grid-template-columns: 1fr;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.contact-section {
		padding: 40px 32px;
		flex-direction: column;
		align-items: flex-start;
	}

	footer {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.word-cycle {
		min-width: 160px;
	}
}