:root {
	--color-primary: #7B2CF2;
	--color-primary-light: #9B5FF5;
	--color-primary-dark: #5a1db8;
	--color-accent: #ffc000;
	--color-accent-hover: #e6ac00;
	--color-text: #141316;
	--color-text-muted: #4c4e49;
	--color-bg: #ffffff;
	--color-bg-alt: #F5F4F5;
	--color-bg-warm: #d5dbce;
	--color-bg-tan: #e8dbcd;
	--color-bg-olive: #8f8861;
	--color-bg-lavender: #DFDDE4;
	--color-bg-dark: #141316;
	--color-border: #e2e8f0;
	--max-width: 1200px;
	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Noto Sans', sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.6;
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

a {
	color: var(--color-primary);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

button {
	cursor: pointer;
	font-family: inherit;
}

.btn {
	display: inline-block;
	padding: 0.875rem 2rem;
	border-radius: 6px;
	font-weight: 600;
	font-size: 1rem;
	border: none;
	transition: background-color 0.2s, transform 0.1s;
	font-family: var(--font-heading);
}

.btn:hover {
	text-decoration: none;
}

.btn:active {
	transform: translateY(1px);
}

.btn-primary {
	background: var(--color-accent);
	color: var(--color-text);
}

.btn-primary:hover {
	background: var(--color-accent-hover);
}

.btn-secondary {
	background: transparent;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
	background: var(--color-primary);
	color: white;
}

/* Header */

header {
	position: sticky;
	top: 0;
	background: white;
	border-bottom: 1px solid var(--color-border);
	z-index: 100;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.5rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-heading);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--color-text);
}

.logo:hover {
	text-decoration: none;
}

.logo-img {
	height: 36px;
	width: auto;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-link {
	font-family: var(--font-heading);
	color: var(--color-text);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s;
	position: relative;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-bg-olive);
	transition: width 0.2s;
}

.nav-link:hover {
	color: var(--color-bg-olive);
	text-decoration: none;
}

.nav-link:hover::after {
	width: 100%;
}

.mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--color-text);
	padding: 0.25rem;
}

/* Footer */

footer {
	background: var(--color-text);
	color: white;
	margin-top: 0;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 3rem 1.5rem 2rem;
	gap: 2rem;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 700;
	color: white;
}

.footer-logo:hover {
	text-decoration: none;
}

.footer-logo-img {
	height: 28px;
	width: auto;
	filter: brightness(0) invert(1);
}

.footer-tagline {
	margin-top: 0.5rem;
	opacity: 0.7;
	font-size: 0.9rem;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
}

.footer-links a:hover {
	color: white;
	text-decoration: none;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-contact a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
}

.footer-contact a:hover {
	color: white;
	text-decoration: none;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1rem 0;
}

.footer-bottom p {
	text-align: center;
	opacity: 0.6;
	font-size: 0.85rem;
}

/* Page Hero (shared by about, contact, testimonials) */

.page-hero {
	padding: 2.5rem 0;
	background: var(--color-bg-olive);
	color: white;
	text-align: center;
}

.page-hero h1 {
	font-size: 2.75rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.page-hero p {
	font-size: 1.15rem;
	opacity: 0.9;
}

/* Home: Hero */

.hero {
	padding: 2.5rem 0;
	background: var(--color-bg-olive);
	color: white;
	text-align: center;
}

.hero-content {
	max-width: 700px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 1.25rem;
}

.hero-subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: var(--color-accent);
	color: var(--color-text);
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	border-radius: 8px;
	text-decoration: none;
	margin-top: 0.5rem;
}

.cta-button:hover {
	background: var(--color-accent-hover);
	text-decoration: none;
}

/* Home: Services */

.services {
	padding: 2rem 0;
}

.services h2 {
	text-align: center;
	font-size: 2.25rem;
	color: var(--color-text);
	margin-bottom: 1.5rem;
}

.services-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1.5rem;
}

.services-list span {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-text);
}

/* Home: Frameworks */

.frameworks {
	padding: 2rem 0;
	background: var(--color-bg-tan);
}

.frameworks h2 {
	text-align: center;
	font-size: 2.25rem;
	color: var(--color-text);
	margin-bottom: 2rem;
}

.frameworks-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.framework-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	font-family: var(--font-heading);
	color: var(--color-text-muted);
	font-size: 0.9rem;
	background: white;
	border: 1px solid var(--color-border);
	width: 140px;
	height: 150px;
}

.framework-badge img {
	height: 80px;
	width: auto;
	max-width: 110px;
	object-fit: contain;
}

/* Home: Why We're Different */

.why-different {
	padding: 3rem 0;
	background: var(--color-bg-alt);
}

.why-different h2 {
	text-align: center;
	font-size: 2.25rem;
	color: var(--color-text);
	margin-bottom: 2rem;
}

.differentiators {
	list-style: none;
	padding: 0;
	max-width: 640px;
	margin: 0 auto;
}

.differentiators li {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--color-text);
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.differentiators li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: var(--color-bg-olive);
	font-weight: 700;
}

.closing-line {
	text-align: center;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--color-text);
	margin-top: 2rem;
}

/* Home: What Happens Next */

.what-next {
	padding: 3rem 0;
}

.what-next h2 {
	text-align: center;
	font-size: 2.25rem;
	color: var(--color-text);
	margin-bottom: 2rem;
}

.steps {
	max-width: 540px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	counter-reset: step;
}

.steps li {
	counter-increment: step;
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--color-text);
	padding: 0.5rem 0;
	padding-left: 2.5rem;
	position: relative;
}

.steps li::before {
	content: counter(step);
	position: absolute;
	left: 0;
	width: 1.75rem;
	height: 1.75rem;
	background: var(--color-bg-olive);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	font-weight: 700;
	top: 0.5rem;
}

.cta-wrap {
	text-align: center;
	margin-top: 2.5rem;
}

/* About */

.about {
	padding: 3rem 0;
	background: var(--color-bg-alt);
}

.about-grid {
	display: flex;
	justify-content: center;
	gap: 3rem;
}

.about-card {
	text-align: center;
}

.about-photo {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
	border: 3px solid var(--color-bg-olive);
}

.about-card h3 {
	font-size: 1.15rem;
}

.about-card h3 a {
	color: var(--color-bg-olive);
	text-decoration: none;
}

.about-card h3 a:hover {
	text-decoration: underline;
}

.about-title {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	margin-top: 0.25rem;
}

.about-bio {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	line-height: 1.6;
	margin-top: 0.5rem;
	max-width: 280px;
	text-align: center;
}

.about-description {
	max-width: 640px;
	margin: 2rem auto 0;
	background: white;
	padding: 2rem;
	border-radius: 12px;
	border-left: 4px solid var(--color-bg-olive);
}

.about-description p {
	color: var(--color-text-muted);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.about-description p:last-child {
	margin-bottom: 0;
}

/* Contact */

.contact {
	padding: 4rem 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.contact-form-wrapper h2,
.contact-info h2 {
	font-size: 1.5rem;
	color: var(--color-text);
	margin-bottom: 1.5rem;
}

.contact form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.form-group label {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--color-text);
}

.form-group input,
.form-group textarea {
	padding: 0.75rem 1rem;
	border: 2px solid var(--color-border);
	border-radius: 8px;
	font-size: 1rem;
	font-family: var(--font-body);
	transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-bg-olive);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.contact form .btn {
	align-self: flex-start;
}

.contact form .btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.success-message {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--color-bg-alt);
	padding: 1.5rem;
	border-radius: 12px;
	color: var(--color-bg-olive);
	font-weight: 600;
}

.contact-info {
	display: flex;
	flex-direction: column;
}

.contact-method {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem;
	border-radius: 12px;
	text-decoration: none;
	color: var(--color-text);
	transition: background-color 0.2s;
	margin-bottom: 0.75rem;
}

.contact-method:hover {
	background: var(--color-bg-alt);
	text-decoration: none;
}

.contact-method-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--color-bg-warm);
	color: var(--color-text);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-method strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 1rem;
	margin-bottom: 0.15rem;
}

.contact-method p {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	margin: 0;
}

/* Testimonials */

.testimonials {
	padding: 2.5rem 0;
	background: var(--color-bg-tan);
}

.testimonials h2 {
	text-align: center;
	font-size: 2.25rem;
	color: var(--color-text);
	margin-bottom: 2rem;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 1.5rem;
}

.testimonial-card {
	background: white;
	padding: 1.5rem;
	border-radius: 12px;
	border-left: 4px solid var(--color-bg-olive);
}

.testimonial-card p {
	color: var(--color-text-muted);
	line-height: 1.7;
	font-style: italic;
	margin-bottom: 1rem;
}

.testimonial-author {
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--color-text);
	font-size: 0.95rem;
}

/* Customers */

.customers {
	padding: 4rem 0;
}

.customers h2 {
	text-align: center;
	font-size: 2.25rem;
	color: var(--color-text);
	margin-bottom: 2rem;
}

.customers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1rem;
	max-width: 900px;
	margin: 0 auto;
}

.customer-card {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1rem;
	background: var(--color-bg-alt);
	border: 2px solid var(--color-border);
	border-radius: 12px;
	text-decoration: none;
}

.customer-card:hover {
	background: var(--color-bg-warm);
	text-decoration: none;
}

.customer-name {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--color-text);
}

/* Responsive */

@media (max-width: 768px) {
	.mobile-toggle {
		display: block;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 1rem 1.5rem;
		border-bottom: 1px solid var(--color-border);
		gap: 1rem;
	}

	.nav-links.open {
		display: flex;
	}

	.footer-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.hero {
		padding: 1.5rem 0;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.services,
	.frameworks,
	.why-different,
	.what-next {
		padding: 2.5rem 0;
	}

	.services h2,
	.frameworks h2,
	.why-different h2,
	.what-next h2 {
		font-size: 1.75rem;
	}

	.page-hero {
		padding: 1.5rem 0;
	}

	.page-hero h1 {
		font-size: 2rem;
	}

	.about {
		padding: 2.5rem 0;
	}

	.about-grid {
		flex-direction: column;
		align-items: center;
	}

	.about-card:nth-child(1) { order: 2; }
	.about-card:nth-child(2) { order: 3; }
	.about-card:nth-child(3) { order: 1; }

	.contact {
		padding: 2.5rem 0;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.customers {
		padding: 2.5rem 0;
	}

	.customers-grid {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
		gap: 1rem;
	}

	.customer-card {
		padding: 1rem 1.25rem;
	}

	.customer-name {
		font-size: 0.95rem;
	}

	.testimonials {
		padding: 1.5rem 0;
	}

	.testimonials h2 {
		font-size: 1.75rem;
	}

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