@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Space+Grotesk:wght@400;500;600&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css");
@import url("https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css");
@import url("https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css");

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

:root {
	/*PRIMARY COLORS*/
	--teal: #2f9ea0;
	--orange: #ff8a3d;
	--purple: #a079cb;
	--amber: #e3b156;
	--blue: #4c8cbc;
	/*SECONDARY COLORS*/
	--ocean: #48c9b0;
	--coral: #fb837d;
	--yellow: #dbc082;
	--peach: #fa9361;
	--sky: #7fcbdb;
	/* NEUTRAL COLORS */
	--ink: #101116;
	--sand: #f4f1ea;
	--cream: #fffaf2;
	--slate: #334155;
	--mint: #dff3f2;
	/* Utility colors */
	--shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
	--glow: 0 0 0 0 12px rgba(0, 0, 0, 1);
	--line: rgba(226, 217, 204, 0.7);
	/* Palette colors for project themes and icons */
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 150px;
}

body {
	font-family: "Space Grotesk", Arial, sans-serif;
	line-height: 1.6;
	color: var(--ink);
	background: var(--sand);
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
}

nav {
	position: fixed;
	width: 100%;
	background: rgba(255, 250, 242, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(226, 217, 204, 0.6);
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
	z-index: 1000;
	padding: 1rem 2rem;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.logo img {
	height: 48px;
	width: auto;
}

.nav-links {
	display: flex;
	gap: 1.75rem;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	color: var(--slate);
	font-weight: 600;
	letter-spacing: 0.01em;
	transition: color 0.2s ease;
}

.nav-links a:hover {
	color: var(--orange);
	text-decoration: underline;
}

.nav-toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.nav-toggle-label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	padding: 0.5rem;
}

.nav-toggle-label span {
	width: 28px;
	height: 3px;
	background: var(--ink);
	border-radius: 999px;
	transition: transform 0.2s ease;
}

.hero {
	background:
		linear-gradient(120deg, rgba(15, 29, 45, 0.9), rgba(15, 29, 45, 0.65)),
		url("/images/hero-images/hero-landing.png") center/cover no-repeat;
	background-attachment: fixed;
	color: var(--cream);
	min-height: 100vh;
	min-height: 100svh;
	padding: 160px 2rem 110px;
	text-align: center;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 3.6rem;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 2.5rem;
	color: rgba(255, 250, 242, 0.92);
}

.cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--orange);
	color: var(--ink);
	padding: 0.95rem 2.6rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.05rem;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.cta-button:hover {
	transform: scale(1.05);
	border-color: black;
	background: #ffa15d;
}

.cta-button.secondary {
	background: transparent;
	color: var(--cream);
	border: 2px solid rgba(255, 250, 242, 0.7);
	margin-left: 1rem;
	box-shadow: none;
}

.cta-button.secondary:hover {
	background: rgba(255, 250, 242, 0.16);
}

section {
	padding: 96px 2rem;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.section-header h2 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 2.7rem;
	margin-bottom: 1rem;
	color: var(--ink);
}

.section-header p {
	font-size: 1.15rem;
	color: var(--slate);
	max-width: 720px;
	margin: 0 auto;
}

.services-section {
	background: linear-gradient(180deg, var(--cream), var(--sand));
}

.about-preview {
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
}

.service-card {
	background: var(--cream);
	border-radius: 24px;
	padding: 2.3rem;
	box-shadow: var(--shadow);
	border: 1px solid rgba(226, 217, 204, 0.7);
	text-align: left;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
	border-color: rgba(255, 138, 61, 0.35);
}

.service-icon {
	width: 72px;
	height: 72px;
	margin-bottom: 1.5rem;
	border-radius: 20px;
	background: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.service-icon i {
	font-size: 2.4rem;
}

.service-card h3 {
	font-size: 1.45rem;
	margin-bottom: 0.75rem;
	color: var(--ink);
}

.service-card p {
	color: var(--slate);
	margin-bottom: 1.5rem;
}

.learn-more {
	color: white;
	background: #000000;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.6rem 1.4rem;
	border-radius: 999px;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
}

.learn-more:hover {
	transform: translateY(-2px);
}

.service-card:nth-child(1) .learn-more:hover {
	background: #ff851b;
}

.service-card:nth-child(2) .learn-more:hover {
	background: #48c9b0;
}

.service-card:nth-child(3) .learn-more:hover {
	background: #a079cb;
}

.service-card:nth-child(4) .learn-more:hover {
	background: #f1948a;
}

.service-card:nth-child(5) .learn-more:hover {
	background: #7fcbdb;
}

.service-card:nth-child(6) .learn-more:hover {
	background: #e3b156;
}

.ai-tools-section {
	background: linear-gradient(120deg, #162739, #123640);
	color: var(--cream);
}

.ai-tools-feature {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 26px;
	padding: 4rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 30px 70px rgba(15, 23, 42, 0.4);
}

.ai-feature-content {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 3.5rem;
	align-items: center;
}

.ai-feature-visual img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.ai-feature-text h2 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 3rem;
	margin-bottom: 1.4rem;
}

.ai-feature-text p {
	color: rgba(255, 250, 242, 0.9);
}

.ai-feature-list {
	list-style: none;
	margin: 2rem 0;
}

.ai-feature-list li {
	padding: 0.7rem 0;
	padding-left: 1.8rem;
	position: relative;
}

.ai-feature-list li:before {
	content: "→";
	position: absolute;
	left: 0;
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--orange);
}

.services.section {
	background: #0f1d2d;
	color: var(--cream);
}

.services .section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.services .section-title h2 {
	font-family: "Fraunces", "Times New Roman", serif;
	color: var(--cream);
}

.services .section-title p {
	color: rgba(255, 250, 242, 0.78);
}

.services .row {
	display: flex;
	flex-wrap: wrap;
	margin: -14px;
}

.services .gy-4 > [class*="col-"] {
	padding: 14px;
}

.services .col-lg-4,
.services .col-md-6 {
	flex: 0 0 100%;
	max-width: 100%;
}

.service-item {
	background: rgba(255, 255, 255, 0.96);
	border-radius: 20px;
	padding: 2.1rem;
	box-shadow: var(--shadow);
	border: 1px solid rgba(226, 217, 204, 0.2);
	min-height: 100%;
}

.service-item .icon {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.service-item .icon i {
	font-size: 2rem;
}

.service-item h3 {
	font-size: 1.35rem;
	margin-bottom: 0.75rem;
	color: var(--ink);
}

.service-item p {
	color: var(--slate);
}

.why-section {
	background: var(--cream);
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2.5rem;
	margin-top: 2.5rem;
}

.why-item {
	background: var(--sand);
	border-radius: 20px;
	padding: 2rem;
	text-align: left;
	border: 1px solid rgba(226, 217, 204, 0.8);
}

.why-item h3 {
	font-size: 1.6rem;
	margin-bottom: 0.75rem;
	color: var(--navy);
}

.why-icon {
	margin-bottom: 1rem;
}

.why-icon i {
	font-size: 2.6rem;
	color: var(--teal);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.about-preview {
	background:
		linear-gradient(135deg, rgba(15, 29, 45, 0.86), rgba(15, 29, 45, 0.62)),
		url("images/tdc-hero-shapes-half.png") center/cover no-repeat;
	background-attachment: fixed;
	color: var(--cream);
}

.about-content {
	max-width: 720px;
	margin: 0 auto;
	padding: 4rem 2rem;
}

.about-preview h2 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 3.2rem;
	color: var(--cream);
}

.about-text {
	margin-bottom: 1.5rem;
	color: rgba(255, 250, 242, 0.85);
	font-size: 1.1rem;
}

.testimonials-section {
	background:
		linear-gradient(180deg, rgba(15, 29, 45, 0.8), rgba(15, 29, 45, 0.7)),
		url("images/tdc-hero-shapes-full.png") center/cover no-repeat;
	background-attachment: fixed;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	color: var(--cream);
}

.testimonials-section .section-header h2 {
	color: var(--cream);
}

.testimonials-section .section-header p {
	color: rgba(255, 250, 242, 0.85);
}

.testimonial-carousel {
	--tiles-per-view: 4;
	--tile-gap: 1.5rem;
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	margin-top: 3rem;
}

.carousel-viewport {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	background: transparent;
	border: none;
	box-shadow: none;
}

.carousel-viewport::-webkit-scrollbar {
	display: none;
}

.carousel-track {
	display: flex;
	gap: var(--tile-gap);
}

.testimonial-tile {
	flex: 0 0
		calc(
			(100% - (var(--tile-gap) * (var(--tiles-per-view) - 1))) /
				var(--tiles-per-view)
		);
	background: var(--cream);
	padding: 2.1rem 2.2rem;
	border-radius: 18px;
	border: 1px solid rgba(226, 217, 204, 0.7);
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	scroll-snap-align: start;
}

.testimonial-quote {
	font-size: 1.15rem;
	color: var(--slate);
	line-height: 1.6;
}

.testimonial-source {
	margin-top: 0.5rem;
	font-weight: 600;
	color: var(--navy);
}

.carousel-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(226, 217, 204, 0.8);
	background: var(--cream);
	color: var(--navy);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
}

.carousel-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
	background: #fff1e4;
}

.carousel-btn i {
	font-size: 1.4rem;
}

@media (max-width: 1200px) {
	.testimonial-carousel {
		--tiles-per-view: 3;
	}
}

@media (max-width: 768px) {
	.testimonial-carousel {
		--tiles-per-view: 2;
	}
}

@media (max-width: 520px) {
	.testimonial-carousel {
		grid-template-columns: 1fr;
		--tiles-per-view: 1;
	}

	.carousel-btn {
		display: none;
	}
}

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

.testimonial-card {
	background: var(--cream);
	padding: 2rem;
	border-radius: 18px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(226, 217, 204, 0.7);
}

.testimonial-text {
	font-style: italic;
	color: var(--slate);
	margin-bottom: 1.5rem;
	font-size: 1.05rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--teal);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cream);
	font-weight: 600;
}

.author-info h4 {
	margin-bottom: 0.2rem;
}

.author-info p {
	font-size: 0.9rem;
	color: var(--slate);
}

/* ===== MEET THE TEAM SECTION ===== */
.meet-team-section {
	padding: 6rem 0;
	background: linear-gradient(135deg, var(--cream), var(--sand));
}

.team-member-detail {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
	align-items: start;
	margin-top: 3rem;
}

.team-member-visual {
	width: 100%;
	position: sticky;
	top: 120px;
}

.team-photo {
	width: 100%;
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
	object-fit: cover;
	aspect-ratio: 3/4;
}

.team-member-text h3 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 2.2rem;
	color: var(--ink);
	margin-bottom: 0.5rem;
}

.team-role {
	font-size: 1.1rem;
	color: var(--teal);
	font-weight: 600;
	margin-bottom: 2rem;
}

.team-bio {
	font-size: 1.05rem;
	color: var(--slate);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.team-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 2.5rem;
}

.skill-tag {
	background: var(--teal);
	color: var(--white);
	padding: 0.6rem 1.2rem;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 500;
	border: 1px solid black;
}

/* ===== CV / EXPERIENCE SECTION ===== */
.cv-section {
	padding: 6rem 0;
	background: var(--cream);
}

.cv-timeline {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem 3rem;
}

.cv-item {
	position: relative;
	padding-left: 3rem;
	margin-bottom: 0;
}

.cv-line-connector {
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(
		180deg,
		var(--teal) 0%,
		rgba(47, 158, 160, 0.2) 100%
	);
}

.cv-line-connector::before {
	content: "";
	position: absolute;
	left: -6px;
	top: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--teal);
	border: 3px solid var(--cream);
	box-shadow: 0 0 0 2px var(--teal);
}

.cv-content h3 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 1.6rem;
	color: var(--ink);
	margin-bottom: 0.5rem;
}

.cv-company {
	font-size: 1.1rem;
	color: var(--teal);
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.cv-date {
	font-size: 0.95rem;
	color: var(--slate);
	margin-bottom: 1rem;
	font-style: italic;
}

.cv-description {
	font-size: 1.05rem;
	color: var(--slate);
	line-height: 1.7;
}

.cv-credentials {
	margin-top: 4rem;
	padding: 2.5rem;
	background: var(--sand);
	border-radius: 24px;
	border: 1px solid var(--line);
}

.cv-credentials h4 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 1.8rem;
	color: var(--ink);
	margin-bottom: 1.5rem;
	text-align: center;
}

.credentials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.2rem;
}

.credential-badge {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	padding: 1rem;
	background: var(--cream);
	border-radius: 12px;
	border: 1px solid rgba(47, 158, 160, 0.15);
}

.credential-badge i {
	font-size: 1.3rem;
	color: var(--palette-coral);
	margin-top: 0.2rem;
}

.credential-text {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.credential-text span {
	font-size: 0.95rem;
	color: var(--slate);
	font-weight: 500;
}

.credential-text strong {
	font-size: 0.95rem;
	color: var(--navy);
	font-weight: 600;
}

.credential-text .credential-date {
	font-size: 0.85rem;
	color: var(--teal);
	font-weight: 400;
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-intro {
	padding: 72px 2rem 0;
	background: linear-gradient(180deg, var(--cream), var(--sand));
}

.portfolio-project {
	padding: 72px 2rem;
	background: var(--sand);
}

.portfolio-project.alt-bg {
	background: var(--cream);
}

.project-card {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
	align-items: center;
}

.project-card.reverse {
	grid-template-columns: 1.2fr 1fr;
}

.project-card.reverse .project-visual {
	order: 2;
}

.project-card.reverse .project-info {
	order: 1;
}

.project-visual {
	width: 100%;
}

.project-mockup {
	aspect-ratio: 4/3;
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
	position: relative;
	overflow: hidden;
}

.project-mockup::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.12;
	pointer-events: none;
}

.mockup-icon {
	width: 100px;
	height: 100px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(8px);
}

.mockup-icon i {
	font-size: 3rem;
	color: #ffffff;
}

.project-logo-text {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 1.6rem;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	padding: 0 2rem;
}

/* Project theme colors */
.dora-theme {
	background: linear-gradient(135deg, #c96b8b, #e8a0b8, #f2c4d4);
}

.framers-theme {
	background: linear-gradient(135deg, #2c3e50, #4a6741, #6b8f62);
}

.wcep-theme {
	background: linear-gradient(135deg, #1a3a5c, #2980b9, #5dade2);
}

.drumplings-theme {
	background: linear-gradient(135deg, #e8653a, #f39c12, #f5b041);
}

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

.project-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 1.2rem;
}

.project-tag {
	background: var(--mint);
	color: var(--navy);
	padding: 0.4rem 1rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	border: 1px solid rgba(47, 158, 160, 0.2);
}

.project-info h2 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 2.4rem;
	color: var(--ink);
	margin-bottom: 0.5rem;
}

.project-subtitle {
	font-size: 1.15rem;
	color: var(--teal);
	font-weight: 600;
	margin-bottom: 1.2rem;
}

.project-description {
	font-size: 1.05rem;
	color: var(--slate);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.project-deliverables {
	list-style: none;
	margin-bottom: 2rem;
}

.project-deliverables li {
	padding: 0.5rem 0;
	color: var(--slate);
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.project-deliverables li i {
	color: var(--teal);
	font-size: 1.1rem;
	flex-shrink: 0;
}

.project-link {
	align-self: flex-start;
	gap: 0.5rem;
}

.project-link i {
	font-size: 1rem;
	transition: transform 0.2s ease;
}

.project-link:hover i {
	transform: translateX(4px);
}

@keyframes pulse {
	0%,
	100% {
		opacity: 0.6;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.1);
	}
}

/* ===== AI TOOLS PAGE — DARK THEME ===== */
.ai-page {
	background: #080e18;
}

.ai-page nav {
	background: rgba(8, 14, 24, 0.92);
	border-bottom: 1px solid rgba(47, 158, 160, 0.1);
}

.ai-page .nav-links a {
	color: rgba(255, 250, 242, 0.7);
}

.ai-page .nav-links a:hover {
	color: var(--teal);
}

.ai-page .nav-toggle-label span {
	background: var(--cream);
}

@media (max-width: 900px) {
	.ai-page .nav-links {
		background: rgba(8, 14, 24, 0.98);
		border: 1px solid rgba(47, 158, 160, 0.1);
	}
}

/* AI Hero */
.ai-hero {
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 160px 2rem 110px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(
		160deg,
		#080e18 0%,
		#0c1a2e 40%,
		#0f2230 70%,
		#0a1520 100%
	);
}

.ai-hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse at 20% 50%,
			rgba(47, 158, 160, 0.12) 0%,
			transparent 50%
		),
		radial-gradient(
			ellipse at 80% 20%,
			rgba(255, 138, 61, 0.08) 0%,
			transparent 40%
		),
		radial-gradient(
			ellipse at 50% 80%,
			rgba(47, 158, 160, 0.06) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.ai-hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.ai-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: rgba(47, 158, 160, 0.12);
	border: 1px solid rgba(47, 158, 160, 0.25);
	color: var(--teal);
	padding: 0.5rem 1.4rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 2rem;
}

.ai-hero-badge i {
	font-size: 1rem;
}

.ai-hero h1 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 4rem;
	color: var(--cream);
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.ai-hero p {
	font-size: 1.25rem;
	color: rgba(255, 250, 242, 0.7);
	line-height: 1.7;
	margin-bottom: 2.5rem;
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
}

.ai-hero-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.ai-cta-primary {
	background: var(--teal) !important;
	color: #ffffff !important;
	border: 2px solid var(--teal);
}

.ai-cta-primary:hover {
	background: #3ab8ba !important;
	border-color: #3ab8ba;
	transform: translateY(-2px);
}

.ai-cta-secondary {
	background: transparent !important;
	color: var(--cream) !important;
	border: 2px solid rgba(255, 250, 242, 0.2) !important;
	box-shadow: none !important;
}

.ai-cta-secondary:hover {
	background: rgba(255, 250, 242, 0.06) !important;
	border-color: rgba(255, 250, 242, 0.35) !important;
}

/* AI Stats Strip */
.ai-stats-strip {
	background: #0b1522;
	border-top: 1px solid rgba(47, 158, 160, 0.1);
	border-bottom: 1px solid rgba(47, 158, 160, 0.1);
	padding: 0;
}

.ai-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.ai-stat {
	text-align: center;
	padding: 2.5rem 1.5rem;
	border-right: 1px solid rgba(47, 158, 160, 0.08);
}

.ai-stat:last-child {
	border-right: none;
}

.ai-stat-number {
	display: block;
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--teal);
	margin-bottom: 0.3rem;
}

.ai-stat-label {
	font-size: 0.85rem;
	color: rgba(255, 250, 242, 0.5);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
}

/* AI Section Headers */
.ai-section-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.ai-section-header h2 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 2.8rem;
	color: var(--cream);
	margin-bottom: 1rem;
}

.ai-section-header p {
	font-size: 1.15rem;
	color: rgba(255, 250, 242, 0.6);
	max-width: 600px;
	margin: 0 auto;
}

/* AI Services Grid */
.ai-services-section {
	padding: 96px 2rem;
	background: linear-gradient(180deg, #080e18 0%, #0c1622 100%);
}

.ai-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.ai-service-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(47, 158, 160, 0.1);
	border-radius: 20px;
	padding: 2.2rem;
	transition:
		transform 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.3s ease;
}

.ai-service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(47, 158, 160, 0.3);
	box-shadow: 0 20px 50px rgba(47, 158, 160, 0.08);
}

.ai-card-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: rgba(47, 158, 160, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.ai-card-icon i {
	font-size: 1.6rem;
	color: var(--teal);
}

.ai-service-card h3 {
	font-size: 1.3rem;
	color: var(--cream);
	margin-bottom: 0.8rem;
	font-weight: 600;
}

.ai-service-card > p {
	font-size: 0.95rem;
	color: rgba(255, 250, 242, 0.55);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.ai-card-features {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid rgba(47, 158, 160, 0.08);
	padding-top: 1.2rem;
}

.ai-card-features li {
	font-size: 0.88rem;
	color: rgba(255, 250, 242, 0.5);
	padding: 0.35rem 0;
	padding-left: 1.4rem;
	position: relative;
}

.ai-card-features li::before {
	content: "~";
	position: absolute;
	left: 0;
	color: var(--teal);
	font-weight: 600;
}

/* AI Process Section */
.ai-process-section {
	padding: 96px 2rem;
	background: #0b1522;
}

.ai-process-grid {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
}

.ai-process-step {
	flex: 1;
	max-width: 320px;
	text-align: center;
	padding: 2.5rem 2rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(47, 158, 160, 0.08);
	border-radius: 20px;
}

.ai-step-number {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 3rem;
	font-weight: 700;
	color: rgba(47, 158, 160, 0.2);
	margin-bottom: 1rem;
	line-height: 1;
}

.ai-process-step h3 {
	font-size: 1.3rem;
	color: var(--cream);
	margin-bottom: 0.8rem;
}

.ai-process-step p {
	font-size: 0.95rem;
	color: rgba(255, 250, 242, 0.5);
	line-height: 1.7;
}

.ai-process-connector {
	display: flex;
	align-items: center;
	padding: 0 1rem;
	margin-top: 3rem;
}

.ai-process-connector i {
	font-size: 1.5rem;
	color: rgba(47, 158, 160, 0.3);
}

/* AI Use Cases Section */
.ai-usecases-section {
	padding: 96px 2rem;
	background: linear-gradient(180deg, #0c1622, #080e18);
}

.ai-usecases-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.ai-usecase {
	text-align: center;
	padding: 2.5rem 1.5rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 20px;
	transition:
		transform 0.3s ease,
		border-color 0.3s ease;
}

.ai-usecase:hover {
	transform: translateY(-4px);
	border-color: rgba(47, 158, 160, 0.15);
}

.ai-usecase-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(47, 158, 160, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.2rem;
}

.ai-usecase-icon i {
	font-size: 1.6rem;
	color: var(--teal);
}

.ai-usecase h4 {
	font-size: 1.1rem;
	color: var(--cream);
	margin-bottom: 0.6rem;
}

.ai-usecase p {
	font-size: 0.9rem;
	color: rgba(255, 250, 242, 0.45);
	line-height: 1.6;
}

/* AI CTA Section */
.ai-cta-section {
	padding: 96px 2rem;
	background: #080e18;
}

.ai-cta-card {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	align-items: center;
	background: linear-gradient(
		135deg,
		rgba(47, 158, 160, 0.08),
		rgba(47, 158, 160, 0.02)
	);
	border: 1px solid rgba(47, 158, 160, 0.15);
	border-radius: 28px;
	padding: 4rem;
	position: relative;
	overflow: hidden;
}

.ai-cta-content h2 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 2.8rem;
	color: var(--cream);
	margin-bottom: 1rem;
}

.ai-cta-content p {
	font-size: 1.15rem;
	color: rgba(255, 250, 242, 0.6);
	margin-bottom: 2rem;
	line-height: 1.7;
	max-width: 480px;
}

.ai-cta-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.ai-cta-visual > i {
	font-size: 8rem;
	color: rgba(47, 158, 160, 0.15);
	position: relative;
	z-index: 1;
}

.ai-cta-glow {
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(47, 158, 160, 0.15) 0%,
		transparent 70%
	);
	animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.3);
		opacity: 1;
	}
}

/* AI Page Scroll Animations */
.ai-animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.6s ease-out,
		transform 0.6s ease-out;
}

.ai-animate-on-scroll.ai-animated {
	opacity: 1;
	transform: translateY(0);
}

.ai-service-card.ai-animate-on-scroll:nth-child(2) {
	transition-delay: 0.1s;
}
.ai-service-card.ai-animate-on-scroll:nth-child(3) {
	transition-delay: 0.2s;
}
.ai-service-card.ai-animate-on-scroll:nth-child(4) {
	transition-delay: 0.3s;
}
.ai-service-card.ai-animate-on-scroll:nth-child(5) {
	transition-delay: 0.4s;
}
.ai-service-card.ai-animate-on-scroll:nth-child(6) {
	transition-delay: 0.5s;
}

.ai-stat.ai-animate-on-scroll:nth-child(2) {
	transition-delay: 0.1s;
}
.ai-stat.ai-animate-on-scroll:nth-child(3) {
	transition-delay: 0.2s;
}
.ai-stat.ai-animate-on-scroll:nth-child(4) {
	transition-delay: 0.3s;
}

/* AI Page Responsive */
@media (max-width: 1024px) {
	.ai-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ai-usecases-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ai-cta-card {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 3rem;
	}

	.ai-cta-content p {
		max-width: 100%;
	}

	.ai-cta-visual {
		display: none;
	}

	.ai-hero h1 {
		font-size: 3.2rem;
	}

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

	.ai-process-step {
		max-width: 100%;
		width: 100%;
	}

	.ai-process-connector {
		transform: rotate(90deg);
		padding: 0.5rem 0;
		margin-top: 0;
	}
}

@media (max-width: 768px) {
	.ai-hero {
		padding: 140px 1.5rem 80px;
	}

	.ai-hero h1 {
		font-size: 2.6rem;
	}

	.ai-hero p {
		font-size: 1.1rem;
	}

	.ai-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ai-stat {
		border-right: none;
		border-bottom: 1px solid rgba(47, 158, 160, 0.06);
		padding: 1.8rem 1rem;
	}

	.ai-stat:nth-child(odd) {
		border-right: 1px solid rgba(47, 158, 160, 0.06);
	}

	.ai-stat:nth-last-child(-n + 2) {
		border-bottom: none;
	}

	.ai-services-grid {
		grid-template-columns: 1fr;
	}

	.ai-section-header h2 {
		font-size: 2.2rem;
	}

	.ai-services-section,
	.ai-process-section,
	.ai-usecases-section,
	.ai-cta-section {
		padding: 64px 1.5rem;
	}

	.ai-cta-card {
		padding: 2.5rem 2rem;
	}

	.ai-cta-content h2 {
		font-size: 2.2rem;
	}
}

@media (max-width: 480px) {
	.ai-hero h1 {
		font-size: 2.2rem;
	}

	.ai-hero-badge {
		font-size: 0.78rem;
		padding: 0.4rem 1rem;
	}

	.ai-stats-grid {
		grid-template-columns: 1fr;
	}

	.ai-stat {
		border-right: none !important;
		border-bottom: 1px solid rgba(47, 158, 160, 0.06);
		padding: 1.5rem 1rem;
	}

	.ai-stat:last-child {
		border-bottom: none;
	}

	.ai-stat-number {
		font-size: 2rem;
	}

	.ai-usecases-grid {
		grid-template-columns: 1fr;
	}

	.ai-section-header h2 {
		font-size: 1.8rem;
	}

	.ai-cta-content h2 {
		font-size: 1.8rem;
	}

	.ai-cta-card {
		padding: 2rem 1.5rem;
	}
}

.final-cta {
	background:
		linear-gradient(135deg, rgba(47, 158, 160, 0.12), rgba(47, 158, 160, 0.5)),
		url("/images/hero-images/hero-light.png") center/cover fixed no-repeat;
	color: var(--cream);
	min-height: 30vh;
	min-height: 30svh;
	display: flex;
	align-items: center;
	justify-content: center;

	background-size: cover;
	background-position: center;
}

.final-cta-title {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 3rem;
	margin-bottom: 1rem;
}

.final-cta-text {
	font-size: 1.2rem;
	color: rgba(255, 250, 242, 0.85);
	margin-bottom: 2rem;
}

.final-cta-button {
	font-size: 1.1rem;
	padding: 1rem 2.8rem;
}

.about-cta {
	background:
		linear-gradient(120deg, rgba(15, 29, 45, 0.9), rgba(15, 29, 45, 0.65)),
		url("images/tdc-hero-shapes-full.png") center/cover no-repeat;
	background-attachment: fixed;
	min-height: 60vh;
	min-height: 60svh;
}

/* ===== CONTACT PAGE ===== */
.contact-strip {
	background: var(--navy);
	padding: 0;
}

.contact-strip-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.strip-item {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	padding: 1.8rem 2rem;
	text-decoration: none;
	color: var(--cream);
	transition:
		background 0.2s ease,
		transform 0.2s ease;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-item:last-child {
	border-right: none;
}

a.strip-item:hover {
	background: rgba(255, 255, 255, 0.06);
}

.strip-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(47, 158, 160, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.strip-icon i {
	font-size: 1.4rem;
	color: var(--teal);
}

.strip-text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.strip-label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: rgba(255, 250, 242, 0.5);
	font-weight: 600;
}

.strip-value {
	font-size: 1rem;
	font-weight: 500;
	color: var(--cream);
}

.contact-section {
	padding: 6rem 0;
	background: linear-gradient(135deg, var(--cream), var(--sand));
}

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

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

.contact-info h2,
.contact-form-wrapper h2 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 2.5rem;
	color: var(--ink);
	margin-bottom: 1rem;
}

.contact-intro {
	font-size: 1.1rem;
	color: var(--slate);
	line-height: 1.7;
	margin-bottom: 2.5rem;
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 1.2rem;
	padding: 1.2rem;
	background: white;
	border-radius: 16px;
	border: 1px solid rgba(226, 217, 204, 0.7);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.contact-method:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.contact-method i {
	font-size: 1.5rem;
	color: var(--teal);
	background: var(--mint);
	padding: 0.85rem;
	border-radius: 12px;
	flex-shrink: 0;
}

.contact-method h3 {
	font-size: 1.05rem;
	color: var(--ink);
	margin-bottom: 0.3rem;
	font-weight: 600;
}

.contact-method a {
	color: var(--teal);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.contact-method a:hover {
	color: var(--navy);
}

.contact-method p {
	color: var(--slate);
	margin: 0;
	font-size: 0.95rem;
}

.contact-map {
	margin-top: 0.5rem;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
	border: 1px solid rgba(226, 217, 204, 0.7);
}

.map-frame {
	width: 100%;
	height: 100%;
	min-height: 280px;
	background: #e8f1ef;
}

.map-attribution {
	font-size: 0.8rem;
	color: var(--slate);
	margin: 0.6rem 1rem 0.8rem;
}

.contact-form-wrapper {
	background: white;
	padding: 2.5rem;
	border-radius: 24px;
	border: 1px solid rgba(226, 217, 204, 0.7);
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.form-intro {
	font-size: 1rem;
	color: var(--slate);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
}

.contact {
	background: #0b1522;
	color: var(--cream);
}

.contact-form {
	max-width: 100%;
	margin: 0;
}

/* ===== IMAGES GALLERY PAGE ===== */
.images-section {
	padding: 5rem 0;
	background: linear-gradient(135deg, var(--cream), var(--sand));
}

.images-header {
	max-width: 900px;
	margin: 0 auto 3rem;
	text-align: center;
}

.images-header h2 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 2.6rem;
	color: var(--ink);
	margin-bottom: 1rem;
}

.images-header p {
	color: var(--slate);
	font-size: 1.05rem;
}

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

.image-card {
	background: #ffffff;
	border-radius: 18px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	padding: 1rem;
	box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.image-card img {
	width: 100%;
	height: 200px;
	object-fit: contain;
	background: var(--cream);
	border-radius: 12px;
	padding: 0.5rem;
}

.image-card p {
	margin-top: 0.75rem;
	font-size: 0.9rem;
	color: var(--slate);
	text-align: center;
}

.images-section + .images-section {
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

/* ===== STYLEGUIDE BLOCKS ===== */
.styleguide-section {
	padding: 5rem 0;
	background: var(--cream);
}

.styleguide-block {
	margin-top: 3rem;
}

.styleguide-block h3 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 2rem;
	color: var(--ink);
	margin-bottom: 1.5rem;
}

.styleguide-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
}

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

.palette-card {
	height: 120px;
	border-radius: 14px;
	border: 1px solid rgba(15, 23, 42, 0.1);
}

.palette-label {
	margin-top: 0.5rem;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--slate);
	text-align: center;
}

.type-sample {
	background: #ffffff;
	border-radius: 18px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	padding: 1.5rem;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.type-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 0.75rem;
}

.ui-samples {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
}

.ui-card {
	background: #ffffff;
	border-radius: 18px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	padding: 1.5rem;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--ink);
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 0.95rem 1.2rem;
	border: 2px solid rgba(47, 158, 160, 0.15);
	border-radius: 12px;
	background: var(--cream);
	color: var(--ink);
	font-size: 1rem;
	transition: border-color 0.2s ease;
}

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

.form-group textarea {
	min-height: 160px;
	resize: vertical;
	font-family: inherit;
}

.form-group select {
	cursor: pointer;
}

.submit-button {
	width: 100%;
	padding: 1.1rem 2rem;
	background: var(--teal);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
}

.submit-button:hover {
	background: var(--navy);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(47, 158, 160, 0.3);
}

.submit-button i {
	font-size: 1.2rem;
}

footer {
	background: #0b1522;
	color: var(--cream);
	padding: 3rem 2rem 1rem;
	text-align: justify;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2.5rem;
	text-align: left;
	margin-bottom: 2rem;
}

.footer-section h3 {
	margin-bottom: 1rem;
	color: var(--orange);
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: rgba(255, 250, 242, 0.7);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-section a:hover {
	color: var(--cream);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 2rem;
	color: rgba(255, 250, 242, 0.6);
}

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

.mt-3 {
	margin-top: 3rem;
}

@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.services .col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (min-width: 992px) {
	.services .col-lg-4 {
		flex: 0 0 33.333%;
		max-width: 33.333%;
	}
}

@media (max-width: 900px) {
	.nav-toggle-label {
		display: flex;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: calc(100% + 12px);
		left: 0;
		right: 0;
		background: rgba(255, 250, 242, 0.98);
		backdrop-filter: blur(10px);
		border: 1px solid rgba(226, 217, 204, 0.8);
		border-radius: 18px;
		padding: 1.2rem 1.5rem;
		flex-direction: column;
		gap: 1rem;
		box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
		z-index: 1000;
	}

	.nav-toggle:checked + .nav-toggle-label + .nav-links {
		display: flex;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.6rem;
	}

	.hero p {
		font-size: 1.1rem;
	}

	.ai-feature-content {
		grid-template-columns: 1fr;
	}

	.cta-button.secondary {
		margin-left: 0;
		margin-top: 1rem;
	}

	section {
		padding: 72px 1.5rem;
	}

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

	.why-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ai-tools-feature {
		padding: 2.5rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-section {
		text-align: center;
	}

	.hero,
	.hero-half {
		background-attachment: scroll;
	}
}

/* ===== SERVICE DETAIL SECTIONS ===== */
.service-detail-section {
	padding: 6rem 0;
	display: flex;
	align-items: center;
	min-height: auto;
}

.service-detail-section:nth-child(odd) {
	background: linear-gradient(
		135deg,
		rgba(255, 250, 242, 0.5),
		rgba(244, 241, 234, 0.8)
	);
}

.service-detail-section:nth-child(even) {
	background: linear-gradient(
		135deg,
		rgba(244, 241, 234, 0.8),
		rgba(255, 250, 242, 0.5)
	);
}

.service-detail-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.service-detail-content.left-image {
	grid-template-columns: 1fr 1.1fr;
}

.service-detail-content.right-image {
	grid-template-columns: 1.1fr 1fr;
}

.service-detail-visual {
	width: 100%;
}

.service-visual-placeholder {
	aspect-ratio: 1;
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	transition:
		transform 0.6s ease-out,
		opacity 0.6s ease-out;
}

.service-visual-placeholder.with-background {
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

/* Scroll animation states */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(50px);
}

.animate-on-scroll.animated {
	opacity: 1;
	transform: translateY(0);
}

.service-detail-text h2 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 2.8rem;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.service-detail-text p {
	font-size: 1.1rem;
	color: var(--slate);
	margin-bottom: 2rem;
	line-height: 1.8;
}

.service-features {
	list-style: none;
	margin-bottom: 2.5rem;
}

.service-features li {
	padding: 0.8rem 0;
	padding-left: 2rem;
	position: relative;
	color: var(--slate);
	font-size: 1rem;
}

.service-features li:before {
	content: "✓";
	position: absolute;
	left: 0;
	font-weight: bold;
	color: var(--check-color, #48c9b0);
	font-size: 1.2rem;
}

/* Service button styling */
.service-button {
	background: #000000;
	color: #ffffff;
	border: 2px solid #000000;
	transition: all 0.3s ease;
}

.service-button:hover {
	background: var(--hover-color, #48c9b0);
	border-color: var(--hover-color, #48c9b0);
	color: #ffffff;
}

/* ===== SERVICES HERO ===== */
.hero-half {
	background:
		linear-gradient(135deg, rgba(15, 29, 45, 0.86), rgba(15, 29, 45, 0.62)),
		url("images/tdc-hero-shapes-half.png") center/cover no-repeat;
	background-attachment: fixed;
	min-height: 60vh;
	min-height: 60svh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cream);
	text-align: center;
}

.services-hero {
	background: linear-gradient(135deg, #0f1d2d 0%, #162739 100%);
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cream);
	text-align: center;
}

.services-hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	font-family: "Fraunces", "Times New Roman", serif;
}

.services-hero p {
	font-size: 1.3rem;
	color: rgba(255, 250, 242, 0.85);
	max-width: 600px;
	margin: 0 auto;
}

/* ===== RESPONSIVE PORTFOLIO ===== */
@media (max-width: 1024px) {
	.project-card,
	.project-card.reverse {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.project-card.reverse .project-visual {
		order: 0;
	}

	.project-card.reverse .project-info {
		order: 0;
	}

	.project-info h2 {
		font-size: 2rem;
	}

	.project-mockup {
		aspect-ratio: 16/9;
	}
}

@media (max-width: 768px) {
	.portfolio-project {
		padding: 48px 1.5rem;
	}

	.portfolio-intro {
		padding: 48px 1.5rem 0;
	}

	.project-info h2 {
		font-size: 1.8rem;
	}

	.project-subtitle {
		font-size: 1.05rem;
	}

	.project-description {
		font-size: 1rem;
	}

	.project-logo-text {
		font-size: 1.3rem;
	}

	.mockup-icon {
		width: 80px;
		height: 80px;
	}

	.mockup-icon i {
		font-size: 2.4rem;
	}
}

@media (max-width: 480px) {
	.project-info h2 {
		font-size: 1.5rem;
	}

	.project-tags {
		gap: 0.4rem;
	}

	.project-tag {
		font-size: 0.8rem;
		padding: 0.35rem 0.8rem;
	}

	.project-logo-text {
		font-size: 1.1rem;
	}

	.mockup-icon {
		width: 64px;
		height: 64px;
		border-radius: 16px;
	}

	.mockup-icon i {
		font-size: 2rem;
	}
}

/* ===== RESPONSIVE SERVICE DETAILS ===== */
@media (max-width: 1024px) {
	.service-detail-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.service-detail-content.left-image,
	.service-detail-content.right-image {
		grid-template-columns: 1fr;
	}

	.service-detail-text h2 {
		font-size: 2.3rem;
	}

	.service-detail-section {
		padding: 4rem 0;
	}

	/* Scale down icons on tablet */
	.service-visual-placeholder i {
		font-size: 10rem !important;
	}
}

@media (max-width: 768px) {
	.service-detail-section {
		padding: 3rem 0;
	}

	.service-detail-text h2 {
		font-size: 2rem;
	}

	.service-detail-text p {
		font-size: 1rem;
	}

	.service-features li {
		padding-left: 1.8rem;
		font-size: 0.95rem;
	}

	/* Scale down icons on mobile */
	.service-visual-placeholder i {
		font-size: 7rem !important;
	}

	.services-hero h1,
	.hero-half h1 {
		font-size: 2.5rem;
	}

	.services-hero p,
	.hero-half p {
		font-size: 1.1rem;
	}

	.team-member-detail {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.team-member-visual {
		position: static;
	}

	.team-member-text h3 {
		font-size: 1.8rem;
	}

	.team-bio {
		font-size: 1rem;
	}

	.contact-strip-grid {
		grid-template-columns: 1fr;
	}

	.strip-item {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		padding: 1.2rem 1.5rem;
	}

	.strip-item:last-child {
		border-bottom: none;
	}

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

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.contact-form-wrapper {
		padding: 1.8rem;
	}

	.placeholder-content h1 {
		font-size: 2.5rem;
	}

	.placeholder-logo {
		max-width: 220px;
	}

	.placeholder-text {
		font-size: 1.05rem;
	}

	.cv-section {
		padding: 4rem 0;
	}

	.cv-timeline {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.cv-item {
		padding-left: 2rem;
		margin-bottom: 2.5rem;
	}

	.cv-content h3 {
		font-size: 1.4rem;
	}

	.cv-company {
		font-size: 1rem;
	}

	.cv-description {
		font-size: 1rem;
	}

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

	.about-cta {
		min-height: 50vh;
		min-height: 50svh;
	}

	.contact-info h2,
	.contact-form-wrapper h2 {
		font-size: 2rem;
	}

	.contact-method {
		padding: 1rem;
	}

	.contact-method i {
		font-size: 1.3rem;
		padding: 0.7rem;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 2.1rem;
	}

	.section-header h2 {
		font-size: 2.1rem;
	}

	.placeholder-content h1 {
		font-size: 2rem;
	}

	.placeholder-logo {
		max-width: 180px;
	}

	/* Scale down icons further on very small screens */
	.service-visual-placeholder i {
		font-size: 5rem !important;
	}

	.contact-form-wrapper {
		padding: 1.5rem;
	}

	.contact-info h2,
	.contact-form-wrapper h2 {
		font-size: 1.8rem;
	}

	.contact-methods {
		gap: 1.5rem;
	}

	.cv-section {
		padding: 3rem 0;
	}

	.cv-item {
		padding-left: 1.5rem;
		margin-bottom: 2rem;
	}

	.cv-content h3 {
		font-size: 1.2rem;
	}

	.cv-credentials {
		padding: 1.5rem;
	}

	.cv-credentials h4 {
		font-size: 1.4rem;
	}

	.credential-badge {
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
		padding: 0.8rem;
	}

	.about-cta {
		min-height: 40vh;
		min-height: 40svh;
	}

	.logo img {
		height: 34px;
	}
}

/* ==========================================================
   SERVICES PAGE — HERO
   ========================================================== */
.services-hero {
	position: relative;
	min-height: 100vh;
	height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.services-hero-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(15, 29, 45, 0.92) 0%, rgba(16, 17, 22, 0.88) 100%),
		url("images/hero-images/hero-meeting.png") center / cover no-repeat;
	z-index: 0;
}

.services-hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 50%, rgba(255, 138, 61, 0.12) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 30%, rgba(47, 158, 160, 0.10) 0%, transparent 50%),
		radial-gradient(ellipse at 60% 80%, rgba(160, 121, 203, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.services-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 800px;
	padding: 2rem;
}

.services-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.4rem;
	background: rgba(255, 138, 61, 0.12);
	border: 1px solid rgba(255, 138, 61, 0.25);
	border-radius: 50px;
	color: var(--orange);
	font-family: "Space Grotesk", sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 1.8rem;
}

.services-hero-content h1 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 4rem;
	font-weight: 700;
	color: var(--cream);
	line-height: 1.1;
	margin-bottom: 1.2rem;
}

.services-hero-content h1 .hero-accent {
	background: linear-gradient(135deg, var(--orange), var(--coral));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.services-hero-content > p {
	font-size: 1.2rem;
	color: rgba(255, 250, 242, 0.75);
	line-height: 1.7;
	max-width: 600px;
	margin: 0 auto 2.5rem;
}

.services-hero-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
}

.hero-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.3rem;
}

.hero-stat-number {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--orange);
	line-height: 1;
}

.hero-stat-label {
	font-size: 0.85rem;
	color: rgba(255, 250, 242, 0.55);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.hero-stat-divider {
	width: 1px;
	height: 48px;
	background: rgba(255, 250, 242, 0.15);
}

/* ==========================================================
   SERVICES PAGE — CATEGORY NAVIGATION STRIP
   ========================================================== */
.category-nav {
	position: sticky;
	top: 72px;
	z-index: 999;
	background: rgba(15, 29, 45, 0.97);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 138, 61, 0.15);
}

.category-nav-items {
	display: flex;
	justify-content: center;
	gap: 0;
	max-width: 1400px;
	margin: 0 auto;
}

.category-nav-link {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 1rem 2rem;
	color: rgba(255, 250, 242, 0.65);
	text-decoration: none;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	border-bottom: 3px solid transparent;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.category-nav-link:hover {
	color: var(--cream);
	background: rgba(255, 255, 255, 0.04);
}

.category-nav-link.active {
	color: var(--orange);
	border-bottom-color: var(--orange);
}

.category-nav-link i {
	font-size: 1.1rem;
}

/* ==========================================================
   SERVICES PAGE — CATEGORY SECTIONS
   ========================================================== */
.service-category {
	padding: 5rem 0 3rem;
	background: linear-gradient(
		180deg,
		rgba(255, 250, 242, 0.6) 0%,
		rgba(244, 241, 234, 0.9) 100%
	);
}

.service-category-alt {
	background: linear-gradient(
		180deg,
		rgba(244, 241, 234, 0.9) 0%,
		rgba(255, 250, 242, 0.6) 100%
	);
}

/* ===== CATEGORY HEADER ===== */
.category-header {
	text-align: center;
	margin-bottom: 3rem;
}

.category-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.2rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 1.2rem;
}

.category-header h2 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 2.6rem;
	color: var(--ink);
	margin-bottom: 0.8rem;
	line-height: 1.2;
}

.category-header p {
	font-size: 1.15rem;
	color: var(--slate);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ==========================================================
   SERVICES PAGE — SUMMARY CARDS GRID
   ========================================================== */
.service-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-bottom: 1rem;
}

.service-summary-card {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	padding: 1.2rem 1.6rem;
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
	border: 2px solid transparent;
}

.service-summary-card:hover {
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
	transform: translateY(-3px);
	border-color: rgba(226, 217, 204, 0.5);
}

.service-summary-card.active {
	border-color: var(--card-accent, var(--orange));
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
}

/* ===== Card Image Thumbnail ===== */
.card-image-thumb {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	overflow: hidden;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.card-image-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.service-summary-card:hover .card-image-thumb img {
	transform: scale(1.1);
}

.summary-text {
	flex: 1;
	min-width: 0;
}

.summary-text h3 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 1.15rem;
	color: var(--ink);
	margin-bottom: 0.3rem;
	line-height: 1.3;
}

.summary-text p {
	font-size: 0.9rem;
	color: var(--slate);
	line-height: 1.5;
	margin: 0;
}

.summary-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(244, 241, 234, 0.8);
	color: var(--slate);
	font-size: 1rem;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.service-summary-card:hover .summary-arrow {
	background: var(--card-accent, var(--orange));
	color: white;
}

.service-summary-card.active .summary-arrow {
	transform: rotate(180deg);
	background: var(--card-accent, var(--orange));
	color: white;
}

/* ==========================================================
   SERVICES PAGE — DETAIL PANELS (Expandable)
   ========================================================== */
.service-detail-panel {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.5s ease,
		opacity 0.4s ease,
		padding 0.5s ease;
	opacity: 0;
	border-radius: 20px;
	margin-bottom: 0.5rem;
}

.service-detail-panel.expanded {
	max-height: 900px;
	opacity: 1;
	padding: 2.5rem;
	margin-bottom: 1rem;
	background: #ffffff;
	box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
	border: 1px solid rgba(226, 217, 204, 0.4);
}

.panel-content {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 2.5rem;
	align-items: start;
}

/* ===== Panel Image (replaces old icon-only visual) ===== */
.panel-image {
	width: 280px;
	height: 280px;
	border-radius: 20px;
	overflow: hidden;
	flex-shrink: 0;
	box-shadow:
		0 12px 40px rgba(15, 23, 42, 0.12),
		0 0 0 1px rgba(226, 217, 204, 0.3);
}

.panel-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.service-detail-panel.expanded .panel-image img {
	transform: scale(1.02);
}

.panel-text h2 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 2rem;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.panel-text p {
	font-size: 1.05rem;
	color: var(--slate);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.panel-text .service-features {
	margin-bottom: 2rem;
}

.panel-text .service-features li {
	padding: 0.6rem 0;
	padding-left: 2rem;
	position: relative;
	color: var(--slate);
	font-size: 0.95rem;
}

.panel-text .service-features li:before {
	content: "\2713";
	position: absolute;
	left: 0;
	font-weight: bold;
	color: var(--check-color, #48c9b0);
	font-size: 1.1rem;
}

/* ==========================================================
   SERVICES PAGE — PROCESS SECTION
   ========================================================== */
.services-process {
	padding: 5rem 0 4rem;
	background: linear-gradient(
		180deg,
		var(--sand) 0%,
		rgba(223, 243, 242, 0.3) 50%,
		var(--sand) 100%
	);
}

.process-steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	max-width: 1000px;
	margin: 0 auto;
}

.process-step {
	flex: 1;
	text-align: center;
	padding: 2rem 1.5rem;
	position: relative;
}

.process-step-number {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 3rem;
	font-weight: 700;
	color: rgba(255, 138, 61, 0.15);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.process-step-icon {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.2rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .process-step-icon {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.process-step h3 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 1.4rem;
	color: var(--ink);
	margin-bottom: 0.6rem;
}

.process-step p {
	font-size: 0.95rem;
	color: var(--slate);
	line-height: 1.6;
	max-width: 260px;
	margin: 0 auto;
}

.process-connector {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 6rem;
	color: rgba(255, 138, 61, 0.35);
	font-size: 1.5rem;
	flex-shrink: 0;
}

/* ===== Enhanced Final CTA for Services ===== */
.services-final-cta {
	padding: 5rem 0;
}

.services-final-cta lord-icon {
	margin-bottom: 1rem;
}

/* ==========================================================
   SERVICES PAGE — RESPONSIVE
   ========================================================== */

/* --- Hero responsive --- */
@media (max-width: 768px) {
	.services-hero-content h1 {
		font-size: 2.6rem;
	}

	.services-hero-content > p {
		font-size: 1.05rem;
	}

	.services-hero-stats {
		gap: 1.5rem;
	}

	.hero-stat-number {
		font-size: 2.2rem;
	}

	.hero-stat-divider {
		height: 36px;
	}
}

@media (max-width: 480px) {
	.services-hero-content h1 {
		font-size: 2rem;
	}

	.services-hero-stats {
		gap: 1rem;
	}

	.hero-stat-number {
		font-size: 1.8rem;
	}

	.hero-stat-label {
		font-size: 0.75rem;
	}
}

/* --- Category nav responsive --- */
@media (max-width: 768px) {
	.category-nav-link {
		padding: 0.8rem 1.2rem;
		font-size: 0.85rem;
		gap: 0.4rem;
	}

	.category-nav-link span {
		display: none;
	}

	.category-nav-link i {
		font-size: 1.3rem;
	}

	.category-nav-items {
		justify-content: space-around;
	}
}

/* --- Category sections responsive --- */
@media (max-width: 1024px) {
	.category-header h2 {
		font-size: 2.2rem;
	}

	.panel-content {
		grid-template-columns: 1fr;
	}

	.panel-image {
		width: 220px;
		height: 220px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.service-category {
		padding: 3.5rem 0 2rem;
	}

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

	.category-header h2 {
		font-size: 1.9rem;
	}

	.category-header p {
		font-size: 1rem;
	}

	.service-detail-panel.expanded {
		padding: 1.8rem;
	}

	.panel-text h2 {
		font-size: 1.6rem;
	}

	.panel-image {
		width: 180px;
		height: 180px;
	}
}

@media (max-width: 480px) {
	.service-summary-card {
		padding: 1rem 1.2rem;
	}

	.card-image-thumb {
		width: 52px;
		height: 52px;
		border-radius: 12px;
	}

	.summary-text h3 {
		font-size: 1.02rem;
	}

	.summary-text p {
		font-size: 0.82rem;
	}

	.service-detail-panel.expanded {
		padding: 1.4rem;
		max-height: 1200px;
	}

	.panel-text h2 {
		font-size: 1.4rem;
	}

	.panel-image {
		width: 140px;
		height: 140px;
		border-radius: 16px;
	}
}

/* --- Process section responsive --- */
@media (max-width: 768px) {
	.process-steps {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}

	.process-step {
		padding: 1.5rem 1rem;
	}

	.process-connector {
		padding-top: 0;
		transform: rotate(90deg);
	}

	.process-step-number {
		font-size: 2.4rem;
	}

	.process-step-icon {
		width: 64px;
		height: 64px;
	}
}

/* ===== TYPING HERO ANIMATION ===== */
.typing-hero {
	display: flex;
	align-items: baseline;
	justify-content: center;
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--cream);
	min-height: 1.3em;
}

.typing-text {
	white-space: pre;
}

.typing-cursor {
	font-weight: 300;
	animation: blink 0.8s step-end infinite;
	margin-left: 2px;
	color: var(--orange);
}

@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

.typing-strikethrough {
	text-decoration: line-through;
	opacity: 0.4;
	transition:
		opacity 0.3s ease,
		text-decoration-color 0.3s ease;
}

@media (max-width: 768px) {
	.typing-hero {
		font-size: 2.4rem;
	}
}

@media (max-width: 480px) {
	.typing-hero {
		font-size: 1.8rem;
	}
}

/* ===== EDUCATION CARDS ===== */
.cv-education {
	margin-top: 3rem;
}

.cv-education,
.cv-skills h4 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 1.8rem;
	color: var(--ink);
	margin-bottom: 1.5rem;
	text-align: center;
}

.education-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	margin: 100px;
}

.education-card {
	display: flex;
	align-items: flex-start;
	gap: 2.2rem;
	padding: 2.8rem;
	background: var(--white);
	border-radius: 16px;
	border: 2px solid var(--line);
	border-left: 6px solid var(--orange);
	transition: box-shadow 0.3s ease;
}

.education-card:hover {
	box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
}

.education-icon {
	width: 100px;
	height: 100px;
	border-radius: 12px;
	background: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.education-icon i {
	font-size: 2.5rem;
	color: var(--cream);
}

.education-details {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	margin-left: 2.2rem;
	margin-right: 5rem;
}

.education-details h5 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--ink);
	margin: 0;
	line-height: 1.3;
}

.education-focus {
	font-size: 0.95rem;
	color: var(--navy);
	font-weight: 500;
	margin: 0;
}

.education-school {
	font-size: 0.9rem;
	color: var(--slate);
	font-weight: 500;
	margin: 0;
}

.education-date {
	font-size: 0.85rem;
	color: var(--palette-peach);
	font-style: italic;
	margin: 0;
}

/* ===== TECHNICAL SKILLS GROUPS ===== */
.cv-skills {
	margin: 3rem;
}

.skills-group-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.skills-group h4 {
	font-family: "Space Grotesk", sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--slate);
	margin-bottom: 2rem;
}

.skills-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	color: var(--ink);
}

@media (max-width: 768px) {
	.education-cards {
		grid-template-columns: 1fr;
	}

	.skills-group-grid {
		grid-template-columns: 1fr;
	}

	.cv-education h4,
	.cv-skills h4 {
		font-size: 2.5rem;
	}
}

@media (max-width: 480px) {
	.education-card {
		padding: 1.4rem;
	}

	.education-details h5 {
		font-size: 1.05rem;
	}
}

/* ==========================================================
   ABOUT PAGE — HERO
   ========================================================== */
.about-hero {
	position: relative;
	min-height: 100vh;
	height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.about-hero-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(15, 29, 45, 0.92) 0%, rgba(16, 17, 22, 0.85) 100%),
		url("images/about-page/tim-real-960x960.png") center / cover no-repeat;
	z-index: 0;
}

.about-hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 30% 60%, rgba(255, 138, 61, 0.1) 0%, transparent 55%),
		radial-gradient(ellipse at 70% 30%, rgba(160, 121, 203, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.about-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 800px;
	padding: 2rem;
}

.about-hero-content > p {
	font-size: 1.2rem;
	color: rgba(255, 250, 242, 0.7);
	line-height: 1.7;
	margin-top: 1.5rem;
}

/* ==========================================================
   ABOUT PAGE — MEET TIM SECTION
   ========================================================== */
.about-meet-section {
	padding: 6rem 0;
	background: linear-gradient(180deg, var(--cream), var(--sand));
}

.about-meet-grid {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 4rem;
	align-items: start;
	max-width: 1100px;
	margin: 0 auto;
}

.about-meet-visual {
	position: relative;
}

.about-photo-frame {
	position: sticky;
	top: 120px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
}

.about-photo-frame img {
	width: 100%;
	height: auto;
	display: block;
}

.about-photo-accent {
	position: absolute;
	bottom: -12px;
	right: -12px;
	width: 120px;
	height: 120px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--orange), var(--coral));
	opacity: 0.15;
	z-index: -1;
}

.about-meet-text h2 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 2.4rem;
	color: var(--ink);
	margin-bottom: 0.4rem;
	line-height: 1.2;
}

.about-meet-role {
	font-size: 1.1rem;
	color: var(--purple);
	font-weight: 600;
	margin-bottom: 1.8rem;
}

.about-meet-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 2rem;
}

/* ==========================================================
   ABOUT PAGE — VALUES SECTION
   ========================================================== */
.about-values-section {
	padding: 5rem 0;
	background: linear-gradient(
		180deg,
		var(--sand) 0%,
		rgba(223, 243, 242, 0.25) 50%,
		var(--sand) 100%
	);
}

.about-values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

.about-value-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
	transition: all 0.3s ease;
	border: 1px solid rgba(226, 217, 204, 0.4);
}

.about-value-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.about-value-icon {
	width: 72px;
	height: 72px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.2rem;
}

.about-value-card h3 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 1.2rem;
	color: var(--ink);
	margin-bottom: 0.6rem;
}

.about-value-card p {
	font-size: 0.92rem;
	color: var(--slate);
	line-height: 1.6;
}

/* ==========================================================
   ABOUT PAGE — VISUAL BREAK (Photo + Video)
   ========================================================== */
.about-visual-break {
	padding: 3rem 0;
	background: var(--sand);
}

.about-visual-break-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	max-width: 900px;
	margin: 0 auto;
}

.about-visual-photo,
.about-visual-video {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
	aspect-ratio: 1 / 1;
}

.about-visual-photo img,
.about-visual-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.about-visual-photo:hover img,
.about-visual-video:hover video {
	transform: scale(1.03);
}

/* ==========================================================
   ABOUT PAGE — EDUCATION & SKILLS SECTION
   ========================================================== */
.about-edu-section {
	padding: 5rem 0;
	background: linear-gradient(180deg, var(--cream), var(--sand));
}

.about-edu-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	max-width: 900px;
	margin: 0 auto 2rem;
}

.about-edu-card {
	display: flex;
	align-items: flex-start;
	gap: 1.2rem;
	padding: 1.8rem;
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
	border-left: 4px solid var(--orange);
	transition: all 0.3s ease;
}

.about-edu-card:hover {
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
	transform: translateY(-2px);
}

.about-edu-icon {
	width: 60px;
	height: 60px;
	border-radius: 14px;
	background: rgba(160, 121, 203, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.about-edu-details h3 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 1.1rem;
	color: var(--ink);
	margin-bottom: 0.3rem;
	line-height: 1.3;
}

.about-edu-focus {
	font-size: 0.92rem;
	color: var(--purple);
	font-weight: 500;
	margin: 0 0 0.2rem;
}

.about-edu-school {
	font-size: 0.88rem;
	color: var(--slate);
	margin: 0;
}

.about-edu-date {
	font-size: 0.82rem;
	color: var(--peach);
	font-style: italic;
	margin: 0;
}

/* ===== Skills Groups ===== */
.about-skills-groups {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
}

.about-skills-group h4 {
	font-family: "Space Grotesk", sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--slate);
	margin-bottom: 1rem;
	text-align: center;
}

.about-skills-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	justify-content: center;
}

.about-skill-pill {
	background: var(--pill-color, var(--teal));
	color: var(--cream);
	padding: 0.5rem 1.1rem;
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 500;
	transition: all 0.2s ease;
}

.about-skill-pill:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

/* ==========================================================
   ABOUT PAGE — RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
	.about-values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.about-hero-content > p {
		font-size: 1.05rem;
	}

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

	.about-photo-frame {
		position: static;
		max-width: 300px;
		margin: 0 auto;
	}

	.about-photo-accent {
		display: none;
	}

	.about-meet-text h2 {
		font-size: 2rem;
	}

	.about-values-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}

	.about-visual-break-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
	}

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

	.about-skills-groups {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.about-values-grid {
		grid-template-columns: 1fr;
	}

	.about-value-card {
		padding: 1.5rem 1.2rem;
	}

	.about-meet-text h2 {
		font-size: 1.7rem;
	}

	.about-edu-card {
		padding: 1.4rem;
	}
}

/* ==========================================================
   ==========================================================
   BLUEPRINT PAGE
   ==========================================================
   ========================================================== */

/* ==========================================================
   BLUEPRINT — HERO
   ========================================================== */
.bp-hero {
	position: relative;
	min-height: 100vh;
	height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.bp-hero-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(160deg, rgba(15, 29, 45, 0.94) 0%, rgba(16, 17, 22, 0.88) 50%, rgba(47, 158, 160, 0.15) 100%),
		url("images/hero-images/hero-create.png") center / cover no-repeat;
	z-index: 0;
}

.bp-hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 25% 60%, rgba(255, 138, 61, 0.1) 0%, transparent 55%),
		radial-gradient(ellipse at 75% 25%, rgba(47, 158, 160, 0.1) 0%, transparent 50%),
		radial-gradient(ellipse at 50% 80%, rgba(160, 121, 203, 0.06) 0%, transparent 45%);
	pointer-events: none;
}

.bp-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 800px;
	padding: 2rem;
}

.bp-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.4rem;
	background: rgba(255, 138, 61, 0.12);
	border: 1px solid rgba(255, 138, 61, 0.25);
	border-radius: 50px;
	color: var(--orange);
	font-family: "Space Grotesk", sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 1.8rem;
}

.bp-hero-content h1 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 4rem;
	font-weight: 700;
	color: var(--cream);
	line-height: 1.1;
	margin-bottom: 1.2rem;
}

.bp-accent {
	background: linear-gradient(135deg, var(--orange), var(--coral));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-style: italic;
}

.bp-hero-content > p {
	font-size: 1.2rem;
	color: rgba(255, 250, 242, 0.75);
	line-height: 1.7;
	max-width: 600px;
	margin: 0 auto 2.5rem;
}

.bp-hero-scroll {
	margin-top: 1rem;
}

.bp-scroll-link {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 250, 242, 0.5);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: color 0.3s ease;
}

.bp-scroll-link:hover {
	color: var(--orange);
}

.bp-scroll-link i {
	font-size: 1.2rem;
	animation: bp-bounce 2s infinite;
}

@keyframes bp-bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateY(6px); }
	60% { transform: translateY(3px); }
}

/* ==========================================================
   BLUEPRINT — METHOD & MINDSET
   ========================================================== */
.bp-method-section {
	padding: 6rem 0;
	background: linear-gradient(180deg, var(--cream), var(--sand));
}

.bp-method-grid {
	display: grid;
	grid-template-columns: 400px 1fr;
	gap: 4rem;
	align-items: start;
	max-width: 1100px;
	margin: 0 auto;
}

.bp-method-visual {
	position: sticky;
	top: 120px;
}

.bp-method-visual img {
	width: 100%;
	height: auto;
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.bp-method-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.bp-method-item {
	display: flex;
	align-items: flex-start;
	gap: 1.2rem;
	padding: 1.5rem;
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
	transition: all 0.3s ease;
	border: 1px solid rgba(226, 217, 204, 0.3);
}

.bp-method-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
}

.bp-method-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.bp-method-item h3 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 1.15rem;
	color: var(--ink);
	margin-bottom: 0.3rem;
}

.bp-method-item p {
	font-size: 0.92rem;
	color: var(--slate);
	line-height: 1.6;
	margin: 0;
}

/* ==========================================================
   BLUEPRINT — STRATEGY IN MOTION (Timeline)
   ========================================================== */
.bp-timeline-section {
	padding: 6rem 0;
	background: linear-gradient(
		180deg,
		var(--sand) 0%,
		rgba(223, 243, 242, 0.2) 50%,
		var(--sand) 100%
	);
}

.bp-timeline {
	max-width: 960px;
	margin: 0 auto;
}

.bp-phase {
	margin-bottom: 0;
}

.bp-phase-card {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 2rem;
	background: #ffffff;
	border-radius: 24px;
	padding: 2rem;
	box-shadow: 0 8px 40px rgba(15, 23, 42, 0.07);
	border: 1px solid rgba(226, 217, 204, 0.4);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.bp-phase-card:hover {
	box-shadow: 0 12px 50px rgba(15, 23, 42, 0.1);
	transform: translateY(-2px);
}

.bp-phase-reverse .bp-phase-card {
	grid-template-columns: 1fr 260px;
}

.bp-phase-reverse .bp-phase-image {
	order: 2;
}

.bp-phase-reverse .bp-phase-body {
	order: 1;
}

.bp-phase-number {
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 4rem;
	font-weight: 700;
	color: rgba(255, 138, 61, 0.08);
	line-height: 1;
	z-index: 0;
}

.bp-phase-reverse .bp-phase-number {
	right: auto;
	left: 1.5rem;
}

.bp-phase-image {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.bp-phase-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.bp-phase-card:hover .bp-phase-image img {
	transform: scale(1.03);
}

.bp-phase-body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bp-phase-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.bp-phase-body h3 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 1.6rem;
	color: var(--ink);
	margin-bottom: 0.6rem;
	line-height: 1.2;
}

.bp-phase-body > p {
	font-size: 0.98rem;
	color: var(--slate);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.bp-phase-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bp-phase-list li {
	padding: 0.4rem 0;
	padding-left: 1.8rem;
	position: relative;
	font-size: 0.9rem;
	color: var(--slate);
}

.bp-phase-list li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	font-weight: bold;
	color: var(--check-color, var(--teal));
	font-size: 1rem;
}

/* ===== Timeline Connector ===== */
.bp-connector {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.5rem 0;
	height: 60px;
}

.bp-connector-line {
	width: 2px;
	flex: 1;
	background: linear-gradient(180deg, rgba(255, 138, 61, 0.3), rgba(47, 158, 160, 0.3));
}

.bp-connector-arrow {
	color: var(--orange);
	font-size: 1.2rem;
	opacity: 0.5;
}

.bp-phase-card-final {
	border: 2px solid rgba(72, 201, 176, 0.25);
	background: linear-gradient(135deg, #ffffff 0%, rgba(223, 243, 242, 0.3) 100%);
}

/* ==========================================================
   BLUEPRINT — HOW WE CREATE IMPACT
   ========================================================== */
.bp-impact-section {
	padding: 6rem 0;
	background: linear-gradient(180deg, var(--cream), var(--sand));
}

.bp-impact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

.bp-impact-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 2rem 1.5rem;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
	border: 1px solid rgba(226, 217, 204, 0.4);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.bp-impact-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.bp-impact-stat {
	width: 72px;
	height: 72px;
	border-radius: 18px;
	background: rgba(244, 241, 234, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.2rem;
}

.bp-impact-card h3 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 1.15rem;
	color: var(--ink);
	margin-bottom: 0.5rem;
}

.bp-impact-card p {
	font-size: 0.9rem;
	color: var(--slate);
	line-height: 1.6;
	flex: 1;
}

.bp-impact-tag {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--tag-color, var(--teal));
	background: color-mix(in srgb, var(--tag-color, var(--teal)) 10%, white);
	border: 1px solid color-mix(in srgb, var(--tag-color, var(--teal)) 20%, transparent);
	align-self: flex-start;
}

/* ==========================================================
   BLUEPRINT — DESIGNED TO GROW
   ========================================================== */
.bp-grow-section {
	padding: 6rem 0;
	background: linear-gradient(
		180deg,
		var(--sand) 0%,
		rgba(223, 243, 242, 0.15) 50%,
		var(--sand) 100%
	);
}

.bp-grow-grid {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 4rem;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
}

.bp-grow-pillars {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.bp-pillar {
	display: flex;
	align-items: flex-end;
	gap: 1.5rem;
}

.bp-pillar-bar {
	width: 8px;
	border-radius: 4px;
	background: var(--bar-color, var(--orange));
	flex-shrink: 0;
	opacity: 0.7;
}

.bp-pillar-text h4 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 1.15rem;
	color: var(--ink);
	margin-bottom: 0.3rem;
}

.bp-pillar-text p {
	font-size: 0.92rem;
	color: var(--slate);
	line-height: 1.6;
	margin: 0;
}

.bp-grow-visual img {
	width: 100%;
	height: auto;
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

/* ==========================================================
   BLUEPRINT — THE PATH FORWARD (CTA)
   ========================================================== */
.bp-cta-section {
	position: relative;
	padding: 6rem 0;
	overflow: hidden;
}

.bp-cta-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(15, 29, 45, 0.93) 0%, rgba(47, 158, 160, 0.2) 100%),
		url("images/hero-images/hero-light.png") center / cover no-repeat;
	z-index: 0;
}

.bp-cta-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 650px;
	margin: 0 auto;
}

.bp-cta-content lord-icon {
	margin-bottom: 1rem;
}

.bp-cta-content h2 {
	font-family: "Fraunces", "Times New Roman", serif;
	font-size: 3rem;
	color: var(--cream);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.bp-cta-content > p {
	font-size: 1.15rem;
	color: rgba(255, 250, 242, 0.8);
	line-height: 1.7;
	margin-bottom: 2.5rem;
}

.bp-cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.bp-cta-primary {
	font-size: 1.1rem;
	padding: 1rem 2.8rem;
}

.bp-cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 250, 242, 0.7);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.bp-cta-secondary:hover {
	color: var(--orange);
	gap: 0.8rem;
}

/* ==========================================================
   BLUEPRINT — RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
	.bp-method-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.bp-method-visual {
		position: static;
		max-width: 380px;
		margin: 0 auto;
	}

	.bp-phase-card,
	.bp-phase-reverse .bp-phase-card {
		grid-template-columns: 1fr;
	}

	.bp-phase-image {
		max-height: 250px;
	}

	.bp-phase-reverse .bp-phase-image {
		order: 0;
	}

	.bp-phase-reverse .bp-phase-body {
		order: 0;
	}

	.bp-phase-number,
	.bp-phase-reverse .bp-phase-number {
		right: 1rem;
		left: auto;
	}

	.bp-impact-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.bp-grow-visual {
		max-width: 400px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.bp-hero-content h1 {
		font-size: 2.6rem;
	}

	.bp-hero-content > p {
		font-size: 1.05rem;
	}

	.bp-phase-card {
		padding: 1.5rem;
	}

	.bp-phase-body h3 {
		font-size: 1.3rem;
	}

	.bp-impact-grid {
		grid-template-columns: 1fr;
	}

	.bp-cta-content h2 {
		font-size: 2.4rem;
	}

	.bp-pillar-bar {
		height: auto !important;
		min-height: 60px;
	}
}

@media (max-width: 480px) {
	.bp-hero-content h1 {
		font-size: 2rem;
	}

	.bp-phase-card {
		padding: 1.2rem;
		gap: 1.2rem;
	}

	.bp-phase-icon {
		width: 48px;
		height: 48px;
	}

	.bp-phase-body h3 {
		font-size: 1.15rem;
	}

	.bp-cta-content h2 {
		font-size: 2rem;
	}

	.bp-cta-actions {
		flex-direction: column;
		gap: 1rem;
	}
}
