@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

/* ============================================
   THE DALY CREATIVE — PREMIUM DESIGN SYSTEM v2
   Elevated: motion, depth, texture, presence
   ============================================ */

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

:root {
	/* Brand Colors */
	--ink: #0b0f14;
	--navy: #0f1d2d;
	--slate: #475569;
	--muted: #94a3b8;
	--line: rgba(15, 23, 42, 0.06);
	--sand: #f7f5f0;
	--cream: #fefcf8;
	--white: #ffffff;

	/* Accent Colors */
	--orange: #f97316;
	--orange-light: rgba(249, 115, 22, 0.07);
	--orange-glow: rgba(249, 115, 22, 0.3);
	--teal: #14b8a6;
	--teal-light: rgba(20, 184, 166, 0.07);
	--teal-glow: rgba(20, 184, 166, 0.3);
	--purple: #8b5cf6;
	--purple-light: rgba(139, 92, 246, 0.07);
	--purple-glow: rgba(139, 92, 246, 0.3);
	--amber: #f59e0b;
	--blue: #3b82f6;
	--coral: #f43f5e;

	/* Typography */
	--font-serif: "Fraunces", "Georgia", serif;
	--font-sans: "Space Grotesk", system-ui, -apple-system, sans-serif;

	/* Spacing */
	--section-pad: clamp(5rem, 10vw, 8rem);
	--container-max: 1200px;
	--container-wide: 1400px;

	/* Shadows — deeper, more layered */
	--shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.04);
	--shadow-md: 0 2px 8px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.08);
	--shadow-lg: 0 4px 12px rgba(15, 23, 42, 0.04), 0 16px 48px rgba(15, 23, 42, 0.1);
	--shadow-xl: 0 8px 20px rgba(15, 23, 42, 0.06), 0 32px 80px rgba(15, 23, 42, 0.14);
	--shadow-glow-orange: 0 8px 40px rgba(249, 115, 22, 0.2), 0 2px 12px rgba(249, 115, 22, 0.15);
	--shadow-glow-teal: 0 8px 40px rgba(20, 184, 166, 0.2), 0 2px 12px rgba(20, 184, 166, 0.15);

	/* Radius */
	--radius-sm: 10px;
	--radius-md: 14px;
	--radius-lg: 22px;
	--radius-xl: 32px;
	--radius-full: 999px;

	/* Transitions */
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
	--ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--sand);
	overflow-x: clip;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

::selection {
	background: var(--orange);
	color: var(--white);
}

/* ============================================
   TYPOGRAPHY — dramatic hierarchy
   ============================================ */
h1, h2, h3, h4, h5 {
	font-family: var(--font-serif);
	line-height: 1.1;
	color: var(--ink);
	letter-spacing: -0.025em;
}

h1 {
	font-size: clamp(3rem, 7vw, 5rem);
	font-weight: 600;
	line-height: 1.05;
}

h2 {
	font-size: clamp(2.1rem, 4.5vw, 3.5rem);
	font-weight: 600;
	line-height: 1.1;
}

h3 {
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	font-weight: 600;
	line-height: 1.2;
}

h4 {
	font-size: 1.125rem;
	font-weight: 600;
}

.text-display {
	font-size: clamp(3.5rem, 9vw, 7rem);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.04em;
}

/* Italic accent for serif headings */
h2 em, h1 em {
	font-style: italic;
	font-weight: 500;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 clamp(1.25rem, 4vw, 2rem);
}

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

section {
	padding: var(--section-pad) 0;
	position: relative;
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--orange);
	margin-bottom: 1.25rem;
}

.section-label::before {
	content: "";
	width: 28px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
}

.section-intro {
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	color: var(--slate);
	max-width: 600px;
	line-height: 1.75;
}

/* Section header — left-aligned by default for editorial feel */
.section-header {
	margin-bottom: 4rem;
}

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

.section-header h2 {
	font-family: var(--font-serif);
	color: var(--ink);
	margin-bottom: 1.25rem;
	max-width: 700px;
}

.section-header.text-center h2 {
	margin-left: auto;
	margin-right: auto;
}

.section-header p {
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	color: var(--slate);
	max-width: 560px;
	line-height: 1.75;
}

.section-header.text-center p {
	margin-left: auto;
	margin-right: auto;
}

/* ============================================
   NAVBAR
   ============================================ */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(247, 245, 240, 0.75);
	backdrop-filter: blur(24px) saturate(1.4);
	-webkit-backdrop-filter: blur(24px) saturate(1.4);
	border-bottom: 1px solid transparent;
	transition: all 0.5s var(--ease-out);
	padding: 0;
}

nav.nav--scrolled {
	background: rgba(247, 245, 240, 0.92);
	border-bottom: 1px solid var(--line);
	box-shadow: 0 1px 20px rgba(15, 23, 42, 0.04);
}

.nav-container {
	max-width: var(--container-wide);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.1rem 2rem;
	transition: padding 0.5s var(--ease-out);
}

nav.nav--scrolled .nav-container {
	padding: 0.65rem 2rem;
}

.logo img {
	height: 40px;
	width: auto;
	transition: all 0.5s var(--ease-out);
	filter: none !important;
}

nav.nav--scrolled .logo img {
	height: 32px;
}

/* Nav Links */
.nav-links {
	display: flex;
	gap: 0.15rem;
	list-style: none;
	align-items: center;
	margin: 0;
	padding: 0;
}

.nav-links a {
	text-decoration: none;
	color: var(--slate);
	font-weight: 500;
	font-size: 0.875rem;
	padding: 0.5rem 0.9rem;
	border-radius: var(--radius-sm);
	transition: all 0.25s var(--ease-out);
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.nav-links a:hover {
	color: var(--ink);
	background: rgba(15, 23, 42, 0.04);
}

.nav-links a.active {
	color: var(--ink);
	font-weight: 600;
}

/* Active indicator — subtle underline */
.nav-links a.active::after {
	content: "";
	position: absolute;
	bottom: 2px;
	left: 50%;
	transform: translateX(-50%);
	width: 18px;
	height: 2px;
	background: var(--link-color, var(--orange));
	border-radius: 2px;
}

.nav-icon {
	font-size: 0.85rem;
	opacity: 0.5;
	transition: all 0.3s var(--ease-out);
}

.nav-links a:hover .nav-icon {
	opacity: 0.8;
}

/* Dropdown */
.nav-has-dropdown {
	position: relative;
}

.nav-chevron {
	font-size: 0.55rem;
	transition: transform 0.35s var(--ease-out);
	opacity: 0.4;
}

.nav-has-dropdown:hover .nav-chevron {
	transform: rotate(180deg);
	opacity: 0.8;
}

.nav-dropdown {
	position: absolute;
	top: calc(100% + 14px);
	left: 50%;
	transform: translateX(-50%) translateY(6px);
	width: 440px;
	max-width: calc(100vw - 2rem);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl), 0 0 0 1px rgba(15, 23, 42, 0.02);
	padding: 0.75rem;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s var(--ease-out);
	z-index: 1001;
}

.nav-dropdown::before {
	content: "";
	position: absolute;
	top: -18px;
	left: 0;
	right: 0;
	height: 18px;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.nav-dropdown-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.25rem;
}

.nav-dropdown-card {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.85rem;
	border-radius: var(--radius-md);
	text-decoration: none;
	color: var(--slate);
	transition: all 0.25s var(--ease-out);
}

.nav-dropdown-card:hover {
	background: var(--sand);
	transform: translateX(2px);
}

.nav-dropdown-icon {
	font-size: 1.1rem;
	color: var(--orange);
	flex-shrink: 0;
	margin-top: 2px;
}

.nav-dropdown-card strong {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 2px;
}

.nav-dropdown-card span {
	font-size: 0.75rem;
	color: var(--muted);
	line-height: 1.4;
}

.nav-dropdown-card--dark {
	background: var(--navy);
	border-radius: var(--radius-md);
}

.nav-dropdown-card--dark strong { color: var(--white); }
.nav-dropdown-card--dark span { color: rgba(255, 255, 255, 0.5); }
.nav-dropdown-card--dark .nav-dropdown-icon { color: var(--purple); }
.nav-dropdown-card--dark:hover { background: #162a3e; transform: translateX(2px); }

.nav-dropdown-card--maroon {
	background: #4a0414;
	border-radius: var(--radius-md);
}
.nav-dropdown-card--maroon strong { color: var(--white); }
.nav-dropdown-card--maroon span { color: rgba(255, 255, 255, 0.5); }
.nav-dropdown-card--maroon .nav-dropdown-icon { color: var(--coral); }
.nav-dropdown-card--maroon:hover { background: #5a0a1a; transform: translateX(2px); }

.nav-dropdown-divider {
	grid-column: 1 / -1;
	height: 1px;
	background: var(--line);
	margin: 0.25rem 0;
}

.nav-dropdown--wide { width: 480px; }
.nav-dropdown--list .nav-dropdown-grid { grid-template-columns: 1fr 1fr; }
.nav-dropdown-card--full { grid-column: 1 / -1; }

/* Nav CTA — pill with glow on hover */
.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--ink);
	color: var(--white) !important;
	padding: 0.55rem 1.35rem;
	border-radius: var(--radius-full);
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.35s var(--ease-out);
	white-space: nowrap;
}

.nav-cta:hover {
	background: var(--teal);
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow-teal);
	color: var(--white) !important;
}

.nav-cta .nav-icon {
	font-size: 0.8rem;
	color: var(--white);
	opacity: 0.7;
	transition: all 0.3s var(--ease-out);
}

.nav-cta:hover .nav-icon {
	opacity: 1;
	transform: translateX(2px);
}

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

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

.nav-toggle-label span {
	width: 22px;
	height: 2px;
	background: var(--ink);
	border-radius: var(--radius-full);
	transition: all 0.35s var(--ease-out);
	transform-origin: center;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle:checked + .nav-toggle-label span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle:checked + .nav-toggle-label span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.nav-overlay { display: none; }

/* Color assignments for nav links */
.nav-links li[data-color="teal"] { --link-color: var(--teal); }
.nav-links li[data-color="amber"] { --link-color: var(--amber); }
.nav-links li[data-color="orange"] { --link-color: var(--orange); }
.nav-links li[data-color="purple"] { --link-color: var(--purple); }
.nav-links li[data-color="blue"] { --link-color: var(--blue); }
.nav-links li[data-color="coral"] { --link-color: var(--coral); }

/* ============================================
   BUTTONS — with glow, depth, micro-motion
   ============================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.9rem 2.1rem;
	border-radius: var(--radius-full);
	text-decoration: none;
	transition: all 0.4s var(--ease-out);
	position: relative;
	overflow: hidden;
	cursor: pointer;
	border: none;
}

.btn i, .btn .fi {
	font-size: 0.9em;
	transition: transform 0.4s var(--ease-out);
}

.btn:hover i, .btn:hover .fi {
	transform: translateX(4px);
}

.btn--primary {
	background: var(--ink);
	color: var(--white);
	box-shadow: 0 2px 8px rgba(11, 15, 20, 0.15);
}

.btn--primary:hover {
	background: #1a2332;
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(11, 15, 20, 0.2);
	color: var(--white);
}

.btn--accent {
	background: var(--orange);
	color: var(--white);
	box-shadow: 0 2px 10px rgba(249, 115, 22, 0.2);
}

.btn--accent:hover {
	background: var(--teal);
	transform: translateY(-3px);
	box-shadow: var(--shadow-glow-teal);
	color: var(--white);
}

/* Shimmer on accent button */
.btn--accent::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
	transition: left 0.6s var(--ease-out);
}

.btn--accent:hover::before {
	left: 130%;
}

.btn--ghost {
	background: transparent;
	color: var(--ink);
	border: 1.5px solid rgba(15, 23, 42, 0.12);
}

.btn--ghost:hover {
	border-color: var(--ink);
	background: rgba(15, 23, 42, 0.03);
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.btn--light {
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	border: 1.5px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(8px);
}

.btn--light:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.35);
	transform: translateY(-3px);
	color: var(--white);
}

.btn--sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; }
.btn--lg { padding: 1.05rem 2.6rem; font-size: 1rem; }

/* Legacy CTA button support */
.cta-button {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	background: var(--orange); color: var(--white);
	padding: 0.95rem 2.4rem; border-radius: var(--radius-full);
	text-decoration: none; font-weight: 600; font-size: 1.05rem;
	transition: all 0.4s var(--ease-out); position: relative; overflow: hidden;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow-orange); background: #ea580c; color: var(--white); }
.cta-button.secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); margin-left: 0.75rem; }
.cta-button.secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }

/* ============================================
   HERO — cinematic, layered, immersive
   ============================================ */
.hero {
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: var(--ink);
	color: var(--white);
	padding: 8rem 0 6rem;
}

/* Noise texture overlay */
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
	background-size: 200px;
	pointer-events: none;
	z-index: 1;
}

/* Animated gradient orbs */
.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
	animation: orbFloat 20s ease-in-out infinite;
	will-change: transform;
}

.hero-orb--orange {
	width: clamp(300px, 40vw, 600px);
	height: clamp(300px, 40vw, 600px);
	background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
	top: 10%;
	left: -10%;
	animation-delay: 0s;
}

.hero-orb--teal {
	width: clamp(250px, 35vw, 500px);
	height: clamp(250px, 35vw, 500px);
	background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
	bottom: 5%;
	right: -5%;
	animation-delay: -7s;
}

.hero-orb--purple {
	width: clamp(200px, 25vw, 400px);
	height: clamp(200px, 25vw, 400px);
	background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
	top: 30%;
	right: 20%;
	animation-delay: -14s;
}

@keyframes orbFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(30px, -20px) scale(1.05); }
	50% { transform: translate(-10px, 30px) scale(0.95); }
	75% { transform: translate(20px, 10px) scale(1.03); }
}

/* Grid overlay for depth */
.hero-grid-overlay {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
	background-size: 80px 80px;
	pointer-events: none;
	mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
	-webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 780px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 0.45rem 1.1rem;
	border-radius: var(--radius-full);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 2.5rem;
	backdrop-filter: blur(12px);
	animation: fadeUp 0.8s var(--ease-out) both;
}

.hero-badge .dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--teal);
	box-shadow: 0 0 8px var(--teal-glow);
	animation: pulse 2.5s ease-in-out infinite;
}

.hero h1 {
	font-family: var(--font-serif);
	color: var(--white);
	margin-bottom: 1.75rem;
	animation: fadeUp 0.9s var(--ease-out) 0.1s both;
	letter-spacing: -0.03em;
}

.hero h1 .accent {
	background: linear-gradient(135deg, var(--orange) 20%, #fb923c 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero h1 em {
	font-style: italic;
	font-weight: 500;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.5);
}

.hero-sub {
	font-size: clamp(1.1rem, 1.8vw, 1.25rem);
	color: rgba(255, 255, 255, 0.55);
	max-width: 560px;
	line-height: 1.75;
	margin-bottom: 2.75rem;
	animation: fadeUp 0.9s var(--ease-out) 0.2s both;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 4.5rem;
	animation: fadeUp 0.9s var(--ease-out) 0.3s both;
}

/* Hero proof — horizontal stat strip */
.hero-proof {
	display: flex;
	align-items: center;
	gap: 3rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	animation: fadeUp 0.9s var(--ease-out) 0.4s both;
}

.hero-stat { text-align: left; }

.hero-stat-number {
	font-family: var(--font-serif);
	font-size: 2rem;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
}

.hero-stat-label {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.35);
	margin-top: 0.3rem;
	letter-spacing: 0.02em;
}

/* Stat dividers */
.hero-stat + .hero-stat {
	padding-left: 3rem;
	border-left: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   SERVICE CARDS — glass, glow, depth
   ============================================ */
.services-section {
	background: var(--sand);
}

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

.service-card {
	background: var(--white);
	border-radius: var(--radius-xl);
	padding: 2.25rem;
	border: 1px solid var(--line);
	text-align: left;
	transition: all 0.5s var(--ease-out);
	position: relative;
}

/* Gradient border glow on hover */
.service-card::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: var(--radius-xl);
	background: linear-gradient(135deg, transparent 40%, var(--orange-light) 60%, transparent 80%);
	opacity: 0;
	transition: opacity 0.5s var(--ease-out);
	z-index: -1;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

.service-card:hover::before {
	opacity: 1;
}

.service-icon {
	width: 60px;
	height: 60px;
	border-radius: var(--radius-md);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.75rem;
	transition: all 0.5s var(--ease-out);
}

.service-card:hover .service-icon {
	transform: translateY(-4px) scale(1.08);
}

.service-icon i,
.service-icon .fi {
	font-size: 1.6rem;
	transition: transform 0.5s var(--ease-out);
}

.service-card h3 {
	font-size: 1.3rem;
	margin-bottom: 0.75rem;
	color: var(--ink);
	transition: color 0.3s ease;
}

.service-card p {
	color: var(--slate);
	margin-bottom: 1.5rem;
	line-height: 1.75;
	font-size: 0.95rem;
}

.learn-more {
	color: var(--ink);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.88rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	transition: all 0.3s var(--ease-out);
}

.learn-more i {
	font-size: 0.85rem;
	transition: transform 0.4s var(--ease-out);
}

.learn-more:hover {
	color: var(--orange);
	gap: 0.65rem;
}

.learn-more:hover i {
	transform: translateX(4px);
}

/* ============================================
   WORK CARDS — browser frame, scroll-reveal image
   ============================================ */
.work-section {
	background: var(--cream);
}

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

.work-card {
	background: var(--white);
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid var(--line);
	transition: all 0.5s var(--ease-out);
}

.work-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	border-color: transparent;
}

/* Browser chrome frame */
.work-card-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/10;
	background: var(--sand);
}

.work-card-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 32px;
	background: linear-gradient(180deg, #e8e5e0, #ddd9d2);
	z-index: 2;
	display: flex;
	align-items: center;
}

/* Browser dots */
.work-card-image::after {
	content: "";
	position: absolute;
	top: 11px;
	left: 14px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #f87171;
	box-shadow: 16px 0 0 #fbbf24, 32px 0 0 #4ade80;
	z-index: 3;
}

.work-card-image img {
	width: 100%;
	height: calc(100% - 32px);
	margin-top: 32px;
	object-fit: cover;
	object-position: top;
	transition: object-position 4s var(--ease-smooth);
}

.work-card:hover .work-card-image img {
	object-position: bottom;
}

.work-card-body {
	padding: 1.75rem 2rem;
}

.work-card-tag {
	display: inline-flex;
	padding: 0.3rem 0.85rem;
	background: var(--orange-light);
	color: var(--orange);
	font-size: 0.72rem;
	font-weight: 600;
	border-radius: var(--radius-full);
	margin-bottom: 0.85rem;
	letter-spacing: 0.02em;
}

.work-card h3 {
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
}

.work-card p {
	color: var(--slate);
	font-size: 0.95rem;
	line-height: 1.65;
}

/* ============================================
   WHY / DIFFERENTIATORS — editorial
   ============================================ */
.why-section {
	background: var(--cream);
}

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

.why-item {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 2.25rem;
	border: 1px solid var(--line);
	transition: all 0.5s var(--ease-out);
	position: relative;
}

.why-item:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
}

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

.why-icon i {
	font-size: 1.75rem;
	color: var(--teal);
	transition: all 0.4s var(--ease-out);
}

.why-item:hover .why-icon i {
	transform: scale(1.15);
	color: var(--orange);
}

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

.why-item p {
	color: var(--slate);
	line-height: 1.75;
	font-size: 0.95rem;
}

/* ============================================
   PROCESS — connected timeline
   ============================================ */
.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin-top: 3rem;
	position: relative;
}

/* Connecting line */
.process-grid::before {
	content: "";
	position: absolute;
	top: 58px;
	left: calc(12.5% + 10px);
	right: calc(12.5% + 10px);
	height: 2px;
	background: linear-gradient(90deg, var(--orange), var(--teal));
	opacity: 0.15;
	z-index: 0;
}

.process-step {
	text-align: center;
	padding: 2rem 1.25rem;
	border-radius: var(--radius-lg);
	transition: all 0.5s var(--ease-out);
	position: relative;
	z-index: 1;
}

.process-step:hover {
	transform: translateY(-6px);
}

.process-number {
	font-family: var(--font-serif);
	font-size: 3rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--orange), rgba(249, 115, 22, 0.15));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 1rem;
	transition: all 0.5s var(--ease-out);
}

.process-step:hover .process-number {
	transform: scale(1.1);
}

.process-step h3 {
	font-size: 1.15rem;
	margin-bottom: 0.75rem;
}

.process-step p {
	color: var(--slate);
	font-size: 0.9rem;
	line-height: 1.65;
}

/* ============================================
   AI TOOLS SECTION — dark, cinematic
   ============================================ */
.ai-tools-section {
	background: linear-gradient(150deg, #0a1120, #0e1e30, #0a1120);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

/* Subtle glow in background */
.ai-tools-section::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
	top: -200px;
	right: -200px;
	pointer-events: none;
}

.ai-tools-feature {
	background: rgba(255, 255, 255, 0.03);
	border-radius: var(--radius-xl);
	padding: clamp(2.5rem, 5vw, 4rem);
	border: 1px solid rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(4px);
	position: relative;
}

.ai-feature-content {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 3rem;
	align-items: center;
}

.ai-feature-text h2 {
	font-family: var(--font-serif);
	color: var(--white);
	margin-bottom: 1.25rem;
}

.ai-feature-text p {
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.75;
}

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

.ai-feature-list li {
	padding: 0.65rem 0;
	padding-left: 1.75rem;
	position: relative;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
}

.ai-feature-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--orange);
	transform: translateY(-50%);
	box-shadow: 0 0 8px rgba(249, 115, 22, 0.3);
}

.ai-feature-visual {
	position: relative;
}

.ai-feature-visual img {
	width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Glow behind the image */
.ai-feature-visual::before {
	content: "";
	position: absolute;
	inset: 10%;
	border-radius: var(--radius-lg);
	background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
	filter: blur(40px);
	z-index: -1;
}

/* ============================================
   TESTIMONIALS — editorial, large quotes
   ============================================ */
.testimonials-section {
	background: var(--ink);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

/* Top fade gradient for section transition */
.testimonials-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 120px;
	background: linear-gradient(180deg, rgba(10, 17, 32, 0.5), transparent);
	pointer-events: none;
}

.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p { color: rgba(255, 255, 255, 0.5); }

.testimonial-carousel {
	--tiles-per-view: 3;
	--tile-gap: 1.25rem;
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 2.5rem;
}

.carousel-viewport {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	position: relative;
	mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

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

.carousel-track {
	display: flex;
	gap: var(--tile-gap);
	animation: scroll-auto 50s linear infinite;
}

.carousel-viewport:hover .carousel-track { animation-play-state: paused; }

@keyframes scroll-auto {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-50% - var(--tile-gap) / 2)); }
}

.testimonial-tile {
	flex: 0 0 calc((100% - (var(--tile-gap) * (var(--tiles-per-view) - 1))) / var(--tiles-per-view));
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 2.25rem;
	border-radius: var(--radius-xl);
	min-height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	scroll-snap-align: start;
	transition: all 0.4s var(--ease-out);
	position: relative;
}

.testimonial-tile:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.08);
	transform: translateY(-3px);
}

/* Large decorative quote mark */
.testimonial-tile::before {
	content: "\201C";
	position: absolute;
	top: 16px;
	right: 24px;
	font-family: var(--font-serif);
	font-size: 4rem;
	line-height: 1;
	color: rgba(249, 115, 22, 0.12);
	pointer-events: none;
}

.testimonial-quote {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.75;
	font-style: italic;
}

.testimonial-source {
	margin-top: 1.25rem;
	font-weight: 600;
	color: var(--white);
	font-size: 0.9rem;
}

.testimonial-source span {
	display: block;
	color: var(--muted);
	font-weight: 400;
	font-size: 0.78rem;
	margin-top: 0.2rem;
}

.carousel-btn { display: none; }

/* ============================================
   AFFILIATES
   ============================================ */
.affiliates-section {
	background: var(--white);
	padding: var(--section-pad) 0;
}

.affiliates-section .section-header h2 { color: var(--ink); }
.affiliates-section .section-header p { color: var(--slate); }

.affiliates-carousel {
	--tiles-per-view: 5;
	--tile-gap: 1.5rem;
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 2.5rem;
}

.affiliate-tile {
	flex: 0 0 calc((100% - (var(--tile-gap) * (var(--tiles-per-view) - 1))) / var(--tiles-per-view));
	background: var(--white);
	padding: 1rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--line);
	min-height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	scroll-snap-align: start;
	transition: all 0.4s var(--ease-out);
}

.affiliate-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.affiliate-logo {
	max-width: 90%; max-height: 100px; width: auto; height: auto;
	object-fit: contain;
	filter: grayscale(40%) opacity(0.6);
	transition: all 0.4s var(--ease-out);
}

.affiliate-tile:hover .affiliate-logo { filter: grayscale(0%) opacity(1); }

/* ============================================
   CTA SECTION — cinematic, gradient glow
   ============================================ */
.cta-section {
	background: var(--ink);
	color: var(--white);
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* Ambient glow */
.cta-section::before {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.cta-section h2 {
	color: var(--white);
	margin-bottom: 1rem;
}

.cta-section p {
	color: rgba(255, 255, 255, 0.5);
	max-width: 520px;
	margin: 0 auto 2.5rem;
	font-size: 1.1rem;
	line-height: 1.75;
}

.cta-section .btn-group {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

/* ============================================
   FEATURED SERVICES (Dark tiles)
   ============================================ */
.featured-services-section {
	background: var(--sand);
	padding: 0 0 var(--section-pad);
}

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

.featured-service-tile {
	border-radius: var(--radius-xl);
	padding: 2.75rem;
	background: var(--navy);
	border: 1px solid rgba(255, 255, 255, 0.05);
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: all 0.5s var(--ease-out);
	position: relative;
	overflow: hidden;
}

.featured-service-tile::before {
	content: "";
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(var(--accent-color-rgb, 139, 92, 246), 0.1) 0%, transparent 70%);
	top: -60px;
	right: -60px;
	pointer-events: none;
	transition: all 0.5s var(--ease-out);
}

.featured-service-tile:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.featured-service-tile:hover::before {
	transform: scale(1.5);
}

.featured-service-cyber { --accent-color: var(--coral); --accent-color-rgb: 244, 63, 94; }
.featured-service-ai { --accent-color: var(--purple); --accent-color-rgb: 139, 92, 246; }

.featured-service-content { display: flex; flex-direction: column; gap: 1.25rem; }
.featured-service-icon { font-size: 2.5rem; color: var(--accent-color); line-height: 1; }
.featured-service-tile h3 { font-size: 1.5rem; font-weight: 700; color: var(--white); }
.featured-service-tile p { color: rgba(255, 255, 255, 0.55); font-size: 0.95rem; line-height: 1.75; }

.featured-service-btn {
	align-self: flex-start;
	background: var(--accent-color);
	color: var(--white);
	padding: 0.625rem 1.5rem;
	border-radius: var(--radius-full);
	font-weight: 600;
	font-size: 0.875rem;
	text-decoration: none;
	transition: all 0.4s var(--ease-out);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.featured-service-btn:hover {
	filter: brightness(1.15);
	transform: translateY(-2px);
	color: var(--white);
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview { background: var(--navy); color: var(--white); }
.about-content { max-width: 720px; margin: 0 auto; text-align: center; }
.about-preview h2 { font-family: var(--font-serif); color: var(--white); margin-bottom: 1.5rem; }
.about-text { color: rgba(255, 255, 255, 0.6); font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; }

/* ============================================
   FORM
   ============================================ */
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.1rem;
}

.form-group { display: flex; flex-direction: column; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 0.5rem;
	letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
	font-family: var(--font-sans);
	font-size: 0.95rem;
	padding: 0.9rem 1.1rem;
	border: 1.5px solid rgba(15, 23, 42, 0.08);
	border-radius: var(--radius-md);
	background: var(--white);
	color: var(--ink);
	transition: all 0.3s var(--ease-out);
	outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--orange);
	box-shadow: 0 0 0 4px var(--orange-light);
}

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

/* ============================================
   MEET THE TEAM
   ============================================ */
.meet-team-section { padding: var(--section-pad) 0; background: var(--cream); }

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

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

.team-photo {
	width: 100%;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl);
	aspect-ratio: 3/4;
	overflow: hidden;
}

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

.team-member-text h3 { font-family: var(--font-serif); font-size: 2.2rem; margin-bottom: 0.5rem; }
.team-role { font-size: 1.05rem; 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.6rem; margin-top: 2rem; }

.skill-tag {
	background: var(--teal);
	color: var(--white);
	padding: 0.5rem 1rem;
	border-radius: var(--radius-full);
	font-size: 0.85rem;
	font-weight: 500;
	transition: all 0.3s var(--ease-out);
}

.skill-tag:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow-teal);
}

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

.cv-timeline {
	max-width: var(--container-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.cv-item { padding-left: 2.5rem; position: relative; }

.cv-line-connector {
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(180deg, var(--teal), rgba(20, 184, 166, 0.1));
}

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

.cv-content h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.5rem; }
.cv-company { color: var(--teal); font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; }
.cv-date { color: var(--muted); font-size: 0.9rem; font-style: italic; margin-bottom: 0.75rem; }
.cv-description { color: var(--slate); line-height: 1.7; }

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

.cv-credentials h4 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 1.25rem; text-align: center; }
.credentials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

.credential-badge {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1rem;
	background: var(--white);
	border-radius: var(--radius-md);
	border: 1px solid var(--line);
	transition: all 0.3s var(--ease-out);
}

.credential-badge:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

/* ============================================
   MAP
   ============================================ */
.map-section { padding: var(--section-pad) 0; }
#map { border-radius: var(--radius-xl); height: 400px; box-shadow: var(--shadow-lg); }

/* ============================================
   LEGAL / TERMS
   ============================================ */
.legal-hero { background: var(--ink); color: var(--white); padding: 8rem 2rem 4rem; text-align: center; }
.legal-hero h1 { color: var(--white); }
.legal-content { max-width: 800px; margin: 0 auto; padding: var(--section-pad) 2rem; }
.legal-content h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content p, .legal-content li { color: var(--slate); line-height: 1.8; margin-bottom: 0.75rem; }

/* ============================================
   SCROLL ANIMATIONS — varied, staggered
   ============================================ */
.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
	filter: blur(2px);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

/* Scale-up variant */
.reveal-scale {
	opacity: 0;
	transform: scale(0.95);
	filter: blur(3px);
	transition: all 0.9s var(--ease-out);
}

.reveal-scale.visible {
	opacity: 1;
	transform: scale(1);
	filter: blur(0);
}

/* Slide-in from left/right */
.reveal-left {
	opacity: 0;
	transform: translateX(-40px);
	transition: all 0.8s var(--ease-out);
}

.reveal-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.reveal-right {
	opacity: 0;
	transform: translateX(40px);
	transition: all 0.8s var(--ease-out);
}

.reveal-right.visible {
	opacity: 1;
	transform: translateX(0);
}

/* Stagger delays — extended */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(24px); filter: blur(3px); }
	to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes pulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--teal-glow); }
	50% { opacity: 0.5; box-shadow: 0 0 2px var(--teal-glow); }
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* ============================================
   PAGE HEROES — shared styles
   ============================================ */
.portfolio-hero,
.services-hero,
.about-hero,
.blueprint-hero,
.contact-hero,
.cyber-hero,
.ai-hero {
	background: var(--ink);
	color: var(--white);
	padding: 9rem 2rem 5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.portfolio-hero::before,
.services-hero::before,
.about-hero::before,
.blueprint-hero::before,
.contact-hero::before,
.cyber-hero::before,
.ai-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 40% at 25% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
		radial-gradient(ellipse 40% 40% at 75% 60%, rgba(20, 184, 166, 0.04) 0%, transparent 50%);
	pointer-events: none;
}

.portfolio-hero h1,
.services-hero h1,
.about-hero h1,
.blueprint-hero h1,
.contact-hero h1,
.cyber-hero h1,
.ai-hero h1 {
	color: var(--white);
	position: relative;
}

.portfolio-hero p,
.services-hero p,
.about-hero p,
.blueprint-hero p,
.contact-hero p,
.cyber-hero p,
.ai-hero p {
	color: rgba(255, 255, 255, 0.55);
	max-width: 560px;
	margin: 1rem auto 0;
	font-size: 1.1rem;
	line-height: 1.75;
	position: relative;
}

/* Cyber & AI get unique gradient */
.cyber-hero { background: linear-gradient(150deg, #0a0f1a, #121a2e); }
.ai-hero { background: linear-gradient(150deg, #0a0f1a, #0c1929); }

/* ============================================
   PORTFOLIO PAGE
   ============================================ */
.project-card {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 3rem;
	align-items: center;
	padding: 2.5rem;
	background: var(--white);
	border-radius: var(--radius-xl);
	border: 1px solid var(--line);
	margin-bottom: 2rem;
	transition: all 0.5s var(--ease-out);
}

.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.project-card:nth-child(even) { grid-template-columns: 1fr 1.2fr; }
.project-card:nth-child(even) .project-image { order: 2; }

.project-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 16/10;
	position: relative;
}

.project-image img {
	width: 100%; height: 100%;
	object-fit: cover; object-position: top;
	transition: object-position 5s var(--ease-smooth);
}

.project-card:hover .project-image img { object-position: bottom; }

.project-info h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }

.project-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }

.project-tag {
	display: inline-flex;
	padding: 0.25rem 0.75rem;
	background: var(--orange-light);
	color: var(--orange);
	font-size: 0.72rem;
	font-weight: 600;
	border-radius: var(--radius-full);
	letter-spacing: 0.02em;
}

.project-info p { color: var(--slate); line-height: 1.75; margin-bottom: 1.5rem; }

/* ============================================
   CONSULTING / ADVISORY
   ============================================ */
.consulting-section { background: var(--navy); color: var(--white); }

.consulting-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.consulting-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: all 0.4s var(--ease-out);
}

.consulting-card:hover { background: rgba(255, 255, 255, 0.06); transform: translateY(-4px); }
.consulting-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.consulting-card p { color: rgba(255, 255, 255, 0.5); }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail-card {
	background: var(--white);
	border-radius: var(--radius-xl);
	padding: 2.5rem;
	border: 1px solid var(--line);
	margin-bottom: 1.5rem;
	transition: all 0.5s var(--ease-out);
}

.service-detail-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.filter-nav {
	display: flex; flex-wrap: wrap; gap: 0.5rem;
	justify-content: center; margin-bottom: 3rem;
}

.filter-btn {
	padding: 0.55rem 1.35rem;
	border-radius: var(--radius-full);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--slate);
	background: var(--white);
	border: 1.5px solid var(--line);
	transition: all 0.3s var(--ease-out);
	cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--ink);
	color: var(--white);
	border-color: var(--ink);
	box-shadow: var(--shadow-sm);
}

/* Legacy service items (services.html) */
.services.section { background: var(--ink); color: var(--white); }
.services .section-title { text-align: center; margin-bottom: 3rem; }
.services .section-title h2 { font-family: var(--font-serif); color: var(--white); }
.services .section-title p { color: rgba(255, 255, 255, 0.6); }
.services .row { display: flex; flex-wrap: wrap; margin: -0.75rem; }
.services .gy-4 > [class*="col-"] { padding: 0.75rem; }
.services .col-lg-4, .services .col-md-6 { flex: 0 0 100%; max-width: 100%; }

.service-item {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 2rem;
	border: 1px solid var(--line);
	min-height: 100%;
	transition: all 0.4s var(--ease-out);
}

.service-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-item .icon { width: 56px; height: 56px; border-radius: var(--radius-md); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.service-item .icon i { font-size: 1.75rem; }
.service-item h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-item p { color: var(--slate); }

/* ============================================
   PROCESS / BLUEPRINT PAGE
   ============================================ */
.blueprint-phase {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
	padding: var(--section-pad) 0;
	border-bottom: 1px solid var(--line);
}

.blueprint-phase:nth-child(even) .phase-visual { order: -1; }

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

.phase-visual img {
	width: 100%;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	transition: all 0.5s var(--ease-out);
}

.phase-visual:hover img {
	transform: scale(1.02);
	box-shadow: var(--shadow-xl);
}

.phase-content .section-label { margin-bottom: 1.5rem; }
.phase-content h2 { margin-bottom: 1.25rem; }
.phase-content p { color: var(--slate); line-height: 1.8; margin-bottom: 1rem; }

.phase-deliverables {
	list-style: none;
	padding: 0;
	margin-top: 2rem;
}

.phase-deliverables li {
	padding: 0.55rem 0;
	padding-left: 1.75rem;
	position: relative;
	color: var(--slate);
	font-size: 0.95rem;
}

.phase-deliverables li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--orange);
	transform: translateY(-50%);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.contact-info-card {
	background: var(--white);
	border-radius: var(--radius-xl);
	padding: 2.5rem;
	border: 1px solid var(--line);
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--line);
	transition: all 0.3s var(--ease-out);
}

.contact-method:last-child { border-bottom: none; }
.contact-method:hover { transform: translateX(4px); }
.contact-method i { font-size: 1.25rem; color: var(--orange); margin-top: 0.15rem; }
.contact-method h4 { margin-bottom: 0.25rem; }
.contact-method p, .contact-method a { color: var(--slate); font-size: 0.95rem; }

/* ============================================
   THREAT GRID (Cyber page)
   ============================================ */
.threat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.threat-card {
	background: var(--navy);
	border-radius: var(--radius-lg);
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.05);
	text-align: center;
	transition: all 0.4s var(--ease-out);
}

.threat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); }
.threat-card i { font-size: 2rem; color: var(--coral); margin-bottom: 1rem; }
.threat-card h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.1rem; }
.threat-card p { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; }

/* ============================================
   AI TOOLS PAGE
   ============================================ */
.ai-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.ai-card {
	background: var(--navy);
	border-radius: var(--radius-lg);
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.4s var(--ease-out);
}

.ai-card:hover { transform: translateY(-6px); border-color: rgba(139, 92, 246, 0.2); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25); }
.ai-card h3 { color: var(--white); }
.ai-card p { color: rgba(255, 255, 255, 0.55); }

/* ============================================
   STYLE GUIDE PAGE
   ============================================ */
.styleguide-section { padding: var(--section-pad) 0; }
.color-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.color-swatch { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); }
.color-swatch-preview { height: 100px; }
.color-swatch-info { padding: 0.75rem; background: var(--white); }

/* Preview float (portfolio hover) */
.preview-container { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.preview-float { transition: transform 8s ease; }
.preview-container:hover .preview-float { transform: translateY(calc(-100% + 300px)); }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Hide hamburger on desktop */
@media (min-width: 769px) {
	.nav-toggle-label { display: none; }
}

/* Tablet */
@media (max-width: 1024px) {
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.why-grid { grid-template-columns: repeat(2, 1fr); }
	.process-grid { grid-template-columns: repeat(2, 1fr); }
	.process-grid::before { display: none; }
	.ai-feature-content { grid-template-columns: 1fr; }
	.team-member-detail { grid-template-columns: 1fr; }
	.cv-timeline { grid-template-columns: 1fr; }
}

/* Mobile Nav + Layout */
@media (max-width: 768px) {
	.nav-links {
		position: fixed;
		top: 0;
		right: 0;
		width: 88%;
		max-width: 380px;
		height: 100vh;
		height: 100dvh;
		background: var(--white);
		flex-direction: column;
		padding: 5.5rem 1.5rem 2rem;
		gap: 0.25rem;
		transform: translateX(100%);
		transition: transform 0.45s var(--ease-out);
		box-shadow: -12px 0 48px rgba(0, 0, 0, 0.12);
		overflow-y: auto;
		align-items: stretch;
		z-index: 1001;
	}

	.nav-toggle:checked ~ .nav-links { transform: translateX(0); }

	.nav-overlay {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.35);
		backdrop-filter: blur(3px);
		z-index: 999;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.35s ease;
	}

	.nav-toggle:checked ~ .nav-overlay { opacity: 1; pointer-events: auto; }

	.nav-links a {
		font-size: 1rem;
		padding: 0.75rem 1rem;
	}

	.nav-links a.active::after { display: none; }

	.nav-dropdown {
		position: static;
		transform: none;
		width: 100%;
		opacity: 1;
		visibility: visible;
		box-shadow: none;
		border: none;
		background: var(--sand);
		border-radius: var(--radius-md);
		padding: 0.5rem;
		margin-top: 0.25rem;
		display: none;
	}

	.nav-has-dropdown.is-open .nav-dropdown {
		display: block;
	}

	.nav-dropdown-grid { grid-template-columns: 1fr; }

	.nav-cta {
		align-self: stretch;
		text-align: center;
		justify-content: center;
		margin-top: 0.75rem;
	}

	/* Layout */
	.services-grid,
	.featured-services-grid,
	.work-grid,
	.why-grid,
	.process-grid,
	.form-grid,
	.threat-grid,
	.ai-cards-grid,
	.consulting-grid,
	.credentials-grid { grid-template-columns: 1fr; }

	.process-grid::before { display: none; }

	.hero { padding: 7rem 0 4rem; }
	.hero-proof { flex-wrap: wrap; gap: 1.5rem; }
	.hero-stat + .hero-stat { padding-left: 1.5rem; border-left: 1px solid rgba(255,255,255,0.06); }
	.hero-actions { flex-direction: column; }
	.hero-actions .btn { text-align: center; }

	.blueprint-phase { grid-template-columns: 1fr; gap: 2rem; }
	.blueprint-phase:nth-child(even) .phase-visual { order: 0; }
	.phase-visual { position: static; }

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

	.project-card { grid-template-columns: 1fr; padding: 1.5rem; }
	.project-card:nth-child(even) { grid-template-columns: 1fr; }
	.project-card:nth-child(even) .project-image { order: 0; }

	.testimonial-carousel { --tiles-per-view: 1.15; }
	.affiliates-carousel { --tiles-per-view: 2.5; }
}

@media (max-width: 480px) {
	.hero-proof { gap: 1rem; }
	.hero-stat-number { font-size: 1.6rem; }
	.hero-stat + .hero-stat { padding-left: 1rem; }
	.affiliates-carousel { --tiles-per-view: 2; }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }
.text-slate { color: var(--slate); }
.text-orange { color: var(--orange); }
.text-teal { color: var(--teal); }

.bg-sand { background: var(--sand); }
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--ink); }
.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ============================================
   PRINT
   ============================================ */
@media print {
	nav, .nav-overlay, .cta-section { display: none; }
	body { background: white; color: black; }
	.hero { min-height: auto; padding: 2rem; background: white; color: black; }
}

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


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
	background: var(--ink);
	color: var(--white);
	padding: 5rem 0 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 3rem;
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.95rem;
	line-height: 1.7;
	max-width: 280px;
}

.footer-brand img {
	height: 44px;
	width: auto;
	/* Removed extreme filter to allow some vibrancy/clarity */
	filter: none;
	opacity: 1;
	margin-bottom: 1.25rem;
}

.footer-socials {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.footer-social-link {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.5);
	transition: all 0.2s ease;
	text-decoration: none;
	font-size: 0.9rem;
}

.footer-social-link:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.footer-heading {
	font-family: var(--font-sans);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.35);
	margin-bottom: 1.25rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: #fff;
}

.footer-contact-item {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-contact-item i {
	font-size: 0.85rem;
}

.footer-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 1.5rem;
	padding: 0.5rem 1.25rem;
	border-radius: 999px;
	background: var(--orange);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.footer-cta i {
	font-size: 0.8rem;
}

.footer-bottom {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.8rem;
	margin: 0;
}

.footer-legal {
	display: flex;
	gap: 1.5rem;
}

.footer-legal a {
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.8rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-legal a:hover {
	color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

@media (max-width: 1024px) and (min-width: 769px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}
}

/* ============================================
   WORK / PORTFOLIO PAGE ENHANCED
   ============================================ */
.portfolio-hero {
	background: linear-gradient(135deg, var(--ink) 0%, #1a1f2e 100%);
	color: var(--cream);
	padding: 8rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.portfolio-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
	opacity: 0.08;
	border-radius: 50%;
	pointer-events: none;
}

.portfolio-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
	opacity: 0.06;
	border-radius: 50%;
	pointer-events: none;
}

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

.portfolio-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(20, 184, 166, 0.12);
	color: var(--teal);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	border: 1px solid rgba(20, 184, 166, 0.25);
	font-size: 0.95rem;
	font-weight: 500;
	margin-bottom: 2rem;
}

.portfolio-hero h1 {
	font-family: var(--font-serif);
	font-size: clamp(2.5rem, 8vw, 4.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: var(--cream);
}

.portfolio-hero h1 .accent-orange {
	color: var(--orange);
}

.portfolio-hero p {
	font-family: var(--font-sans);
	font-size: 1.125rem;
	line-height: 1.6;
	color: rgba(248, 246, 241, 0.85);
	margin-bottom: 3rem;
}

.projects-grid {
	display: grid;
	gap: 6rem;
	margin: 6rem 0;
}

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

.project-card:nth-child(even) {
	direction: rtl;
}

.project-card:nth-child(even) > * {
	direction: ltr;
}

.project-image {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: var(--sand);
	aspect-ratio: 4 / 3;
}

.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s var(--ease-out);
}

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

.project-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.project-card:hover .project-image::before {
	opacity: 1;
}

.project-info h3 {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--ink);
	margin-bottom: 1.25rem;
}

.project-info h3 .accent-color {
	background: linear-gradient(135deg, var(--orange) 0%, var(--teal) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.project-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.project-tag {
	display: inline-block;
	background: rgba(11, 15, 20, 0.06);
	color: var(--slate);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 500;
	font-family: var(--font-sans);
	transition: all 0.3s ease;
}

.project-card:hover .project-tag {
	background: var(--orange-light);
	color: var(--orange);
}

.project-info p {
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--slate);
	margin-bottom: 2rem;
	max-width: 500px;
}

.project-info .btn {
	display: inline-flex;
}

.project-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.75rem;
	background: var(--orange);
	color: white;
	border-radius: var(--radius-md);
	text-decoration: none;
	font-weight: 600;
	font-family: var(--font-sans);
	font-size: 0.95rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.project-link::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--orange), var(--teal));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.project-link:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow-orange);
}

.project-link:hover::before {
	opacity: 1;
}

@media (max-width: 768px) {
	.project-card {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.project-card:nth-child(even) {
		direction: ltr;
	}
	.project-image {
		aspect-ratio: 16 / 10;
	}
	.portfolio-hero {
		padding: 4rem 1.5rem;
	}
}

/* ============================================
   CONTACT PAGE ENHANCED
   ============================================ */
.contact-hero {
	background: linear-gradient(135deg, var(--ink) 0%, #1a1f2e 100%);
	color: var(--cream);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.contact-hero h1 {
	color: var(--cream);
}

.contact-hero-subtitle {
	color: rgba(255, 255, 255, 0.7);
	max-width: 560px;
	margin: 1rem auto 0;
	font-size: 1.15rem;
	line-height: 1.7;
}

.contact-info-card {
	background: var(--cream);
	padding: 2.5rem;
	border-radius: var(--radius-xl);
	border: 1px solid var(--line);
}

.contact-method {
	margin-bottom: 2rem;
}

.contact-method:last-child {
	margin-bottom: 0;
}

.contact-method-row {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.contact-method-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.contact-method h3 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
	color: var(--ink);
	font-family: var(--font-sans);
}

.form-wrapper {
	background: var(--white);
	padding: 2.5rem;
	border-radius: var(--radius-xl);
	border: 1px solid var(--line);
}

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

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(11, 15, 20, 0.15);
	border-radius: var(--radius-sm);
	font-family: inherit;
	font-size: 1rem;
	transition: border-color 0.2s ease;
	background: var(--white);
	color: var(--ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--orange);
	box-shadow: 0 0 0 3px var(--orange-light);
}

.form-group textarea {
	resize: vertical;
}

.form-group select {
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="%230b0f14" d="M2 5l6 6 6-6H2z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px;
	padding-right: 2.5rem;
}

.contact-map {
	margin-top: 3rem;
	border-radius: var(--radius-md);
	overflow: hidden;
	height: 320px;
	border: 1px solid var(--line);
}

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

/* ============================================
   SERVICES PAGE GRID FIXES
   ============================================ */
.services-grid-wrapper .services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

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

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

.services-hero {
	background: linear-gradient(135deg, var(--ink) 0%, #1a1f2e 100%);
	color: var(--cream);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.services-hero h1 {
	color: var(--cream);
}

.services-hero .hero-subtitle {
	color: rgba(255, 255, 255, 0.7);
	max-width: 600px;
	margin: 1rem auto 0;
	font-size: 1.15rem;
	line-height: 1.7;
}

.filter-nav {
	background: var(--white);
	border-bottom: 1px solid var(--line);
	padding: 1rem 0;
	position: sticky;
	top: 70px;
	z-index: 999;
	transition: top 0.4s var(--ease-out);
}

.filter-nav .container {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: none; /* Firefox */
	padding-bottom: 4px;
	-webkit-overflow-scrolling: touch;
}

.filter-nav .container::-webkit-scrollbar {
	display: none; /* Chrome/Safari */
}

.filter-btn {
	padding: 0.5rem 1.25rem;
	border-radius: var(--radius-full);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--slate);
	background: transparent;
	border: 1px solid var(--line);
	transition: all 0.2s ease;
}

.filter-btn:hover {
	border-color: var(--orange);
	color: var(--orange);
}

.filter-btn.active {
	background: var(--orange);
	color: var(--white);
	border-color: var(--orange);
}

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

.featured-service-tile {
	border-radius: var(--radius-xl);
	padding: 3rem;
	position: relative;
	overflow: hidden;
}

.featured-service-ai {
	background: linear-gradient(135deg, #0f1d2d 0%, #1a2d45 100%);
	color: var(--cream);
}

.featured-service-cyber {
	background: linear-gradient(135deg, #1a0a1e 0%, #2d1232 100%);
	color: var(--cream);
}

.featured-service-content {
	position: relative;
	z-index: 2;
}

.featured-service-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: var(--cream);
}

.featured-service-content h3 {
	color: var(--cream);
	margin-bottom: 1rem;
}

.featured-service-content p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 2rem;
	line-height: 1.7;
}

.featured-service-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.1);
	color: var(--cream);
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	text-decoration: none;
}

.featured-service-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

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

.pricing-card {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	transition: all 0.3s ease;
}

.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.pricing-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
}

@media (max-width: 768px) {
	.featured-services-grid {
		grid-template-columns: 1fr;
	}
	.pricing-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   AI TOOLS PAGE ENHANCED
   ============================================ */
.ai-hero {
	background: linear-gradient(135deg, var(--ink) 0%, #1a1f2e 100%);
	color: var(--cream);
	position: relative;
	overflow: hidden;
}

.ai-hero h1 {
	color: var(--cream);
}

.ai-hero .hero-sub {
	color: rgba(255, 255, 255, 0.7);
}

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

.ai-card {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	transition: all 0.3s ease;
}

.ai-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--orange);
}

.ai-card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.ai-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--sand);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.ai-card h3 {
	font-family: var(--font-sans);
	font-size: 1.1rem;
}

.ai-card p {
	color: var(--slate);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.ai-card-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ai-card-list li {
	padding: 0.3rem 0;
	padding-left: 1.25rem;
	position: relative;
	font-size: 0.9rem;
	color: var(--slate);
}

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

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

.ai-usecase {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	transition: all 0.3s ease;
}

.ai-usecase:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.ai-usecase-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--sand);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.ai-usecase h4 {
	margin-bottom: 0.5rem;
}

.ai-usecase p {
	color: var(--slate);
	font-size: 0.95rem;
	line-height: 1.6;
}

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

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

/* ============================================
   ABOUT PAGE V2 (PREMIUM REDESIGN)
   ============================================ */

.about-hero-v2 {
	padding: 10rem 0 6rem;
	background: var(--cream);
	position: relative;
	overflow: hidden;
}

.about-hero-bg {
	position: absolute;
	top: -10%;
	right: -5%;
	width: 50%;
	height: 120%;
	background: radial-gradient(circle at center, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
	pointer-events: none;
}

.hero-split {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 4rem;
	align-items: center;
}

.hero-tag {
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--orange);
	margin-bottom: 1.5rem;
}

.text-display {
	font-family: var(--font-serif);
	font-size: clamp(3rem, 6vw, 5rem);
	line-height: 1.1;
	color: var(--ink);
	margin-bottom: 2rem;
}

.hero-accent-text {
	color: transparent;
	-webkit-text-stroke: 1.5px var(--ink);
	font-style: italic;
}

.hero-lead {
	font-size: 1.25rem;
	line-height: 1.7;
	color: var(--slate);
	max-width: 500px;
	margin-bottom: 3rem;
}

.hero-cta-group {
	display: flex;
	gap: 1rem;
}

.hero-image-frame {
	position: relative;
	width: 100%;
	max-width: 440px;
	margin-left: auto;
}

.hero-image-frame img {
	width: 100%;
	aspect-ratio: 0.85;
	object-fit: cover;
	border-radius: 4px;
	position: relative;
	z-index: 2;
	filter: grayscale(10%) brightness(1.05);
	box-shadow: 40px 40px 0 -10px var(--ink);
}

.frame-decoration {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 100px;
	height: 100px;
	border-top: 2px solid var(--orange);
	border-right: 2px solid var(--orange);
	z-index: 3;
}

/* Philosophy Section */
.philosophy-section {
	padding: var(--section-pad) 0;
	background: var(--ink);
	color: var(--white);
}

.section-intro-dark {
	text-align: center;
	margin-bottom: 5rem;
}

.dark-tag {
	display: inline-block;
	color: var(--teal);
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin-bottom: 1rem;
}

.section-intro-dark h2 {
	font-family: var(--font-serif);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	line-height: 1.2;
}

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

.logic-card {
	padding: 3rem;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 2px;
	transition: all 0.4s var(--ease-out);
}

.logic-card:hover {
	transform: translateY(-10px);
	background: rgba(255,255,255,0.05);
	border-color: var(--orange);
}

.logic-icon {
	font-size: 2rem;
	color: var(--orange);
	margin-bottom: 2rem;
}

.logic-card h3 {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.logic-card p {
	color: rgba(255,255,255,0.6);
	line-height: 1.7;
}

/* Founder Editorial */
.founder-editorial {
	padding: var(--section-pad) 0;
	background: var(--cream);
}

.editorial-layout {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 6rem;
	align-items: center;
}

.editorial-badge {
	font-size: 0.85rem;
	font-weight: 800;
	color: var(--orange);
	margin-bottom: 1.5rem;
	display: block;
}

.founder-editorial h2 {
	font-family: var(--font-serif);
	font-size: clamp(3rem, 6vw, 4.5rem);
	line-height: 1;
	margin-bottom: 1rem;
}

.editorial-role {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--slate);
	margin-bottom: 3rem;
}

.editorial-content p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--ink);
	margin-bottom: 1.5rem;
}

.expertise-tags {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-top: 3rem;
}

.expertise-tag {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--ink);
	display: flex;
	align-items: center;
	gap: 1rem;
}

.expertise-tag span {
	font-family: var(--font-serif);
	color: var(--orange);
	font-size: 1.25rem;
	opacity: 0.5;
}

.editorial-photo {
	position: relative;
}

.photo-container {
	position: relative;
	padding: 20px;
}

.photo-container img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	position: relative;
	z-index: 2;
}

.photo-overlay {
	position: absolute;
	inset: 0;
	border: 2px solid var(--teal);
	transform: rotate(-3deg);
	z-index: 1;
}

/* Journey Section */
.journey-section {
	padding: var(--section-pad) 0;
	background: var(--ink);
	color: var(--white);
}

.journey-header {
	text-align: center;
	margin-bottom: 6rem;
}

.journey-header h2 {
	font-family: var(--font-serif);
	font-size: 3.5rem;
	margin-bottom: 1rem;
}

.modern-timeline {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
}

.modern-timeline::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background: rgba(255,255,255,0.1);
	transform: translateX(-50%);
}

.timeline-row {
	display: grid;
	grid-template-columns: 1fr 40px 1fr;
	margin-bottom: 6rem;
	align-items: center;
}

.timeline-year {
	text-align: right;
	font-family: var(--font-serif);
	font-size: 1.25rem;
	color: var(--orange);
}

.timeline-dot {
	width: 12px;
	height: 12px;
	background: var(--orange);
	border-radius: 50%;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	box-shadow: 0 0 20px var(--orange);
}

.timeline-info {
	padding-left: 2rem;
}

.timeline-info h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--white);
}

.timeline-info .company {
	font-weight: 700;
	color: var(--teal);
	margin-bottom: 1rem;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
}

.timeline-info p {
	color: rgba(255,255,255,0.6);
	line-height: 1.6;
}

/* Academic Section */
.academic-section {
	padding: var(--section-pad) 0;
	background: var(--sand);
}

.academic-header {
	margin-bottom: 4rem;
	text-align: center;
}

.academic-header h2 {
	font-family: var(--font-serif);
	font-size: 3rem;
}

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

.academic-card {
	padding: 3rem;
	background: var(--white);
	position: relative;
	border-radius: 4px;
	box-shadow: var(--shadow-sm);
	transition: all 0.4s var(--ease-out);
}

.card-count {
	position: absolute;
	top: 2rem;
	right: 2rem;
	font-family: var(--font-serif);
	font-size: 3rem;
	opacity: 0.05;
}

.academic-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.card-focus {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
	font-size: 0.9rem;
	color: var(--slate);
	font-weight: 600;
}

/* Media Queries */
@media (max-width: 1000px) {
	.hero-split, .editorial-layout, .logic-grid, .academic-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.hero-content-left, .editorial-details {
		order: 2;
		text-align: center;
	}

	.hero-visual-right, .editorial-photo {
		order: 1;
		max-width: 400px;
		margin: 0 auto;
	}

	.hero-cta-group {
		justify-content: center;
	}

	.logic-card, .academic-card {
		padding: 2rem;
	}

	.modern-timeline::after {
		left: 20px;
	}

	.timeline-row {
		grid-template-columns: 40px 1fr;
		text-align: left;
		margin-bottom: 4rem;
	}

	.timeline-year {
		display: none;
	}

	.timeline-info {
		padding-left: 1rem;
	}
}

@media (max-width: 900px) {
	.founder-layout {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.founder-visual {
		max-width: 450px;
		margin: 0 auto 3rem;
	}

	.founder-skills {
		justify-content: center;
	}

	.section-label--orange {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.meet-founder-section {
		padding: 4rem 0;
	}
	.founder-text h3 {
		font-size: 2.25rem;
	}
}


/* ============================================
   PROCESS PAGE ENHANCED
   ============================================ */
.blueprint-hero {
	background: linear-gradient(135deg, var(--ink) 0%, #1a1f2e 100%);
	color: var(--cream);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.blueprint-hero h1 {
	color: var(--cream);
}

.blueprint-phase {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.phase-content {
	display: flex;
	flex-direction: column;
}

.phase-content p {
	color: var(--slate);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.phase-deliverables {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
}

.phase-deliverables li {
	padding: 0.4rem 0;
	padding-left: 1.5rem;
	position: relative;
	color: var(--slate);
	font-size: 0.95rem;
}

.phase-deliverables li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--orange);
	font-weight: 700;
}

.phase-visual img {
	width: 100%;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
	.blueprint-phase {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.phase-visual {
		order: -1 !important;
	}
}

/* ============================================
   UNIFIED REVEAL ANIMATIONS
   ============================================ */
.reveal,
.reveal-scale,
.reveal-left,
.reveal-right {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-scale {
	transform: scale(0.95);
}

.reveal-left {
	transform: translateX(-30px);
}

.reveal-right {
	transform: translateX(30px);
}

.reveal.visible,
.reveal.revealed,
.reveal-scale.visible,
.reveal-scale.revealed,
.reveal-left.visible,
.reveal-left.revealed,
.reveal-right.visible,
.reveal-right.revealed {
	opacity: 1;
	transform: translateY(0) translateX(0) scale(1);
}

/* Staggered delays for grid children */
.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.2s; }
.reveal-delay-5 { transition-delay: 0.25s; }
.reveal-delay-6 { transition-delay: 0.3s; }

/* ============================================
   LEGAL PAGES (Privacy, Terms) ENHANCED
   ============================================ */
.legal-page {
	background: var(--white);
}

.legal-content {
	max-width: 800px;
	margin: 0 auto;
	padding: var(--section-pad) clamp(1.25rem, 4vw, 2rem);
}

.legal-content h1 {
	margin-bottom: 0.5rem;
}

.legal-date {
	color: var(--muted);
	font-size: 0.9rem;
	margin-bottom: 2rem;
}

.legal-summary {
	background: var(--sand);
	border-radius: var(--radius-lg);
	padding: 2rem;
	margin-bottom: 3rem;
	border: 1px solid var(--line);
}

.legal-summary h3 {
	margin-bottom: 1rem;
	font-family: var(--font-sans);
}

.legal-summary p {
	color: var(--slate);
	line-height: 1.7;
}

.legal-content h2 {
	font-size: 1.5rem;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
}

.legal-content p {
	color: var(--slate);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.legal-content ul {
	margin: 1rem 0;
	padding-left: 1.5rem;
}

.legal-content ul li {
	color: var(--slate);
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

/* ===== WORK PAGE — Portfolio Preview Scroll Effects ===== */
.preview-screenshot {
	height: 500px;
	overflow: hidden;
	position: relative;
}

.preview-screenshot img {
	width: 100%;
	height: auto !important;
	display: block;
	transform: translateY(0);
	transition: transform 15s linear;
	animation: autoScroll 60s linear infinite alternate;
}

.preview-screenshot:hover img {
	animation-play-state: paused;
	transition: transform 4s ease-in-out;
	transform: translateY(calc(-100% + 500px));
}

@keyframes autoScroll {
	0% { transform: translateY(0); }
	100% { transform: translateY(calc(-100% + 500px)); }
}

/* ===== WORK PAGE — Affiliates Section ===== */
.portfolio-affiliates {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #ffffff;
	overflow: hidden;
	position: relative;
	padding: 4rem 0;
}

.affiliate-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	z-index: 1;
	opacity: 0.15;
	pointer-events: none;
}

.blob-1 {
	width: 600px;
	height: 600px;
	background: var(--teal);
	top: -10%;
	left: -10%;
}

.blob-2 {
	width: 500px;
	height: 500px;
	background: var(--purple);
	bottom: -5%;
	right: -5%;
}

.blob-3 {
	width: 400px;
	height: 400px;
	background: var(--orange);
	top: 20%;
	right: 10%;
}

.portfolio-affiliates h2 {
	color: var(--ink);
	text-align: center;
	margin-bottom: 5rem;
	font-family: "Fraunces", serif;
	font-size: 4rem;
	font-weight: 800;
	z-index: 2;
	position: relative;
}

.portfolio-affiliates h2 span.brand-accent {
	position: relative;
	z-index: 1;
}

.portfolio-affiliates h2 span.brand-accent::after {
	content: '';
	position: absolute;
	bottom: 0.2rem;
	left: 0;
	width: 100%;
	height: 1.2rem;
	background: var(--amber);
	opacity: 0.3;
	z-index: -1;
	transform: skewX(-15deg);
}

/* ===== WORK PAGE — Marquee ===== */
.portfolio-marquee-row {
	display: flex;
	gap: 4rem;
	padding: 2rem 0;
	white-space: nowrap;
	z-index: 2;
	position: relative;
}

.portfolio-marquee-content {
	display: flex;
	gap: 4rem;
	animation: marqueeScroll 40s linear infinite;
}

.portfolio-marquee-row:nth-child(even) .portfolio-marquee-content {
	animation-direction: reverse;
}

.port-aff-tile {
	width: 200px;
	height: 110px;
	background: #ffffff;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.04);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	overflow: hidden;
}

.port-aff-tile::before {
	content: '';
	position: absolute;
	inset: -20%;
	background: radial-gradient(circle at center, var(--tile-bg, rgba(47, 158, 160, 0.1)), transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.port-aff-tile:hover {
	transform: scale(1.05) translateY(-5px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
	border-color: var(--tile-color, var(--teal));
}

.port-aff-tile:hover::before {
	opacity: 1;
}

.port-aff-tile img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	position: relative;
	z-index: 2;
	transition: all 0.4s ease;
}

.port-aff-tile:hover img {
	transform: scale(1.1);
}

@keyframes marqueeScroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.port-aff-tile::after {
	content: '';
	position: absolute;
	width: 60px;
	height: 60px;
	background-image: radial-gradient(var(--tile-color, var(--teal)) 2px, transparent 2px);
	background-size: 8px 8px;
	opacity: 0;
	top: -10px;
	right: -10px;
	transition: all 0.4s ease;
	z-index: 1;
}

.port-aff-tile:hover::after {
	opacity: 0.2;
	transform: translate(-10px, 10px);
}

/* ===== WORK PAGE — Consulting Section ===== */
.consulting-showcase {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 4rem;
}

.consulting-card {
	background: #fff;
	padding: 4rem;
	border-radius: 40px;
	display: flex;
	gap: 3rem;
	align-items: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.4s ease;
}

.consulting-card:hover {
	transform: scale(1.02);
	border-color: var(--teal);
}

.consulting-brand-icon {
	width: 120px;
	height: 120px;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Fraunces", serif;
	font-size: 2.5rem;
	color: #fff;
	flex-shrink: 0;
}

@media (max-width: 1024px) {
	.consulting-showcase {
		grid-template-columns: 1fr;
	}

	.consulting-card {
		padding: 2.5rem;
		gap: 1.5rem;
		flex-direction: column;
		text-align: center;
	}
}


/* ============================================
   SHARED HERO COMPONENTS (work, contact, ai-tools)
   ============================================ */
.services-hero-bg {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(ellipse 50% 40% at 25% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
		radial-gradient(ellipse 40% 40% at 75% 60%, rgba(20, 184, 166, 0.04) 0%, transparent 50%);
	pointer-events: none;
	z-index: 1;
}

.services-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.services-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: rgba(249, 115, 22, 0.1);
	color: var(--orange);
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-full);
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
	border: 1px solid rgba(249, 115, 22, 0.2);
}

.services-hero-stats {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	margin-top: 3rem;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	flex-wrap: wrap;
}

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

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

.contact-page-hero,
.ai-page-hero {
	position: relative;
}

@media (max-width: 768px) {
	.services-hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.hero-stat-divider {
		display: none;
	}

	.services-hero-badge {
		font-size: 0.75rem;
		padding: 0.5rem 1rem;
	}
}

/* ============================================
   WORK/PORTFOLIO PAGE
   ============================================ */
.projects-features {
	padding: var(--section-pad) 0;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-bottom: 4rem;
}

.feature-card {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	text-align: center;
	transition: all 0.4s var(--ease-out);
	position: relative;
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: var(--orange);
}

.feature-card h3 {
	margin: 1rem 0 0.75rem;
	font-size: 1.25rem;
}

.feature-card p {
	color: var(--slate);
	font-size: 0.95rem;
	line-height: 1.6;
}

.feature-card .fi {
	font-size: 2.5rem;
	color: var(--orange);
}

.project-showcase {
	margin-bottom: 5rem;
}

.showcase-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.showcase-inner.reverse {
	direction: rtl;
}

.showcase-inner.reverse > * {
	direction: ltr;
}

.showcase-preview {
	overflow: hidden;
	border-radius: var(--radius-lg);
}

.browser-bar {
	background: #f0f0f0;
	padding: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	border-bottom: 1px solid #e0e0e0;
}

.browser-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: inline-block;
}

.browser-dot:nth-child(1) {
	background: #ff5f57;
}

.browser-dot:nth-child(2) {
	background: #ffbd2e;
}

.browser-dot:nth-child(3) {
	background: #28c940;
}

.browser-url {
	font-family: "Courier New", monospace;
	font-size: 0.75rem;
	color: #666;
	margin-left: auto;
}

.preview-screenshot {
	overflow: hidden;
	aspect-ratio: 16/10;
}

.preview-screenshot img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	transition: transform 6s var(--ease-smooth);
}

.showcase-preview:hover img {
	transform: translateY(-20%);
}

.showcase-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding: 1rem 0;
}

.showcase-category {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--orange-light);
	color: var(--orange);
	padding: 0.5rem 1rem;
	border-radius: var(--radius-full);
	font-size: 0.85rem;
	font-weight: 600;
	width: fit-content;
}

.showcase-subtitle {
	color: var(--slate);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.showcase-desc {
	color: var(--slate);
	line-height: 1.8;
	font-size: 1rem;
}

.showcase-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1rem 0;
}

.showcase-tag {
	background: var(--sand);
	color: var(--slate);
	padding: 0.5rem 1rem;
	border-radius: var(--radius-full);
	font-size: 0.85rem;
	border: 1px solid var(--line);
}

.showcase-actions {
	display: flex;
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.showcase-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--orange);
	font-weight: 600;
	transition: gap 0.3s var(--ease-out);
}

.showcase-link:hover {
	gap: 1rem;
}

.showcases-section {
	padding: var(--section-pad) 0;
}

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

.portfolio-affiliates {
	background: var(--ink);
	color: var(--white);
	padding: var(--section-pad) 0;
	position: relative;
	overflow: hidden;
}

.affiliate-blob {
	position: absolute;
	border-radius: 50%;
	opacity: 0.15;
	pointer-events: none;
}

.affiliate-blob.blob-1 {
	width: 300px;
	height: 300px;
	background: var(--orange);
	top: -100px;
	left: -100px;
}

.affiliate-blob.blob-2 {
	width: 250px;
	height: 250px;
	background: var(--teal);
	bottom: -80px;
	right: 10%;
}

.affiliate-blob.blob-3 {
	width: 200px;
	height: 200px;
	background: var(--purple);
	top: 50%;
	right: -80px;
}

.portfolio-marquee-row {
	display: flex;
	gap: 4rem;
	padding: 2rem 0;
	white-space: nowrap;
	z-index: 2;
	position: relative;
}

.portfolio-marquee-content {
	display: flex;
	gap: 4rem;
	animation: marqueeScroll 40s linear infinite;
}

.portfolio-marquee-row:nth-child(even) .portfolio-marquee-content {
	animation-direction: reverse;
}

.consulting-showcase {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 4rem;
}

.consulting-brand-icon {
	width: 120px;
	height: 120px;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-serif);
	font-size: 2.5rem;
	color: #fff;
	flex-shrink: 0;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.consulting-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.5rem;
}

.consulting-text h4 {
	margin: 0;
	font-size: 1.15rem;
}

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

.final-cta {
	background: var(--ink);
	color: var(--white);
	padding: var(--section-pad) 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.final-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 40% at 25% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse 40% 40% at 75% 60%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.final-cta-title {
	position: relative;
	z-index: 2;
	font-size: clamp(2rem, 5vw, 3.5rem);
	margin-bottom: 1.5rem;
	color: var(--white);
}

.final-cta-text {
	position: relative;
	z-index: 2;
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.6);
	max-width: 600px;
	margin: 0 auto 2rem;
	line-height: 1.8;
}

.brand-accent {
	background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.category-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(249, 115, 22, 0.1);
	color: var(--orange);
	padding: 0.5rem 1rem;
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 600;
	border: 1px solid rgba(249, 115, 22, 0.2);
}

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

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

	.consulting-showcase {
		grid-template-columns: 1fr;
	}

	.showcase-info {
		padding: 0;
	}
}

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

	.showcase-actions {
		flex-direction: column;
	}

	.showcase-link {
		width: fit-content;
	}

	.consulting-brand-icon {
		width: 100px;
		height: 100px;
		font-size: 2rem;
	}
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-strip {
	background: var(--sand);
	padding: 4rem 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

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

.strip-item {
	display: flex;
	gap: 1.5rem;
	padding: 2rem;
	background: var(--white);
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	transition: all 0.4s var(--ease-out);
	cursor: pointer;
}

.strip-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--orange);
}

.strip-icon {
	font-size: 2rem;
	color: var(--orange);
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.strip-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.strip-label {
	font-size: 0.8rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.25rem;
}

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

.contact-section {
	padding: var(--section-pad) 0;
}

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

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

.contact-intro {
	color: var(--slate);
	line-height: 1.8;
	font-size: 1rem;
}

.contact-form-wrapper {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 3rem;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-md);
}

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

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

.form-intro {
	color: var(--slate);
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

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

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

.form-group input,
.form-group textarea {
	padding: 1rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	font-family: var(--font-sans);
	font-size: 1rem;
	transition: border-color 0.3s var(--ease-out);
	background: var(--sand);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--orange);
	background: var(--cream);
}

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

.map-frame {
	width: 100%;
	height: 400px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	overflow: hidden;
}

.map-attribution {
	font-size: 0.75rem;
	color: var(--muted);
	margin-top: 0.5rem;
	text-align: right;
}

@media (max-width: 1024px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

	.map-frame {
		height: 300px;
	}
}

@media (max-width: 768px) {
	.contact-strip-grid {
		gap: 1.5rem;
	}

	.strip-item {
		padding: 1.5rem;
		gap: 1rem;
	}

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

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


/* ============================================
   AI TOOLS PAGE
   ============================================ */
.ai-stats-strip {
	background: var(--navy);
	color: var(--white);
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
}

.ai-stats-strip::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 40% at 25% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse 40% 40% at 75% 60%, rgba(20, 184, 166, 0.06) 0%, transparent 50%);
	pointer-events: none;
}

.ai-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	position: relative;
	z-index: 2;
}

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

.ai-stat-number {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: var(--orange);
	margin-bottom: 0.5rem;
}

.ai-stat-label {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 0.05em;
}

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

.ai-section-header h2 {
	margin-bottom: 1rem;
}

.ai-services-section {
	padding: var(--section-pad) 0;
}

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

.ai-service-card {
	background: var(--white);
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	transition: all 0.4s var(--ease-out);
}

.ai-service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: var(--orange);
}

.ai-card-icon {
	font-size: 2.5rem;
	color: var(--orange);
	margin-bottom: 1.25rem;
}

.ai-service-card h3 {
	margin-bottom: 1rem;
	font-size: 1.35rem;
}

.ai-service-card > p {
	color: var(--slate);
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	line-height: 1.7;
}

.ai-card-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ai-card-features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	color: var(--slate);
	font-size: 0.9rem;
}

.ai-card-features li::before {
	content: "✓";
	color: var(--teal);
	font-weight: 700;
	flex-shrink: 0;
}

.ai-process-section {
	padding: var(--section-pad) 0;
	background: var(--sand);
}

.ai-process-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.ai-process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: 150px;
}

.ai-step-number {
	font-family: var(--font-serif);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--orange);
	background: var(--white);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	border: 2px solid var(--line);
}

.ai-process-step h4 {
	margin: 0.5rem 0 0;
	font-size: 1.05rem;
}

.ai-process-step p {
	color: var(--slate);
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

.ai-process-connector {
	color: var(--orange);
	font-size: 1.5rem;
	display: flex;
	align-items: center;
}

.ai-usecases-section {
	padding: var(--section-pad) 0;
}

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

.ai-usecase {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	text-align: center;
	transition: all 0.4s var(--ease-out);
}

.ai-usecase:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
}

.ai-usecase-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--teal);
}

.ai-usecase h4 {
	margin-bottom: 0.75rem;
	font-size: 1.1rem;
}

.ai-usecase p {
	color: var(--slate);
	font-size: 0.9rem;
	margin: 0;
}

.ai-cta-section {
	background: var(--ink);
	color: var(--white);
	padding: var(--section-pad) 0;
	position: relative;
	overflow: hidden;
}

.ai-cta-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 40% at 25% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse 40% 40% at 75% 60%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.ai-cta-card {
	background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(20, 184, 166, 0.1) 100%);
	border: 1px solid rgba(249, 115, 22, 0.2);
	border-radius: var(--radius-lg);
	padding: 3rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.ai-cta-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ai-cta-content h2 {
	color: var(--white);
	margin-bottom: 1rem;
}

.ai-cta-content p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 2rem;
	font-size: 1.05rem;
	line-height: 1.8;
}

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

.ai-cta-glow {
	position: absolute;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
	border-radius: 50%;
	animation: pulse 3s ease-in-out infinite;
}

.ai-cta-visual .fi {
	font-size: 5rem;
	color: var(--orange);
	position: relative;
	z-index: 2;
	animation: float 3s ease-in-out infinite;
}

.ai-cta-primary {
	background: var(--orange);
	color: var(--white);
	padding: 1rem 2.5rem;
	border-radius: var(--radius-md);
	font-weight: 600;
	transition: all 0.3s var(--ease-out);
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	width: fit-content;
}

.ai-cta-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow-orange);
}

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

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-20px); }
}

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

	.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;
		gap: 2rem;
	}

	.ai-process-grid {
		gap: 1rem;
	}
}

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

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

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

	.ai-process-grid {
		flex-direction: column;
		gap: 1.5rem;
	}

	.ai-process-connector {
		transform: rotate(90deg);
	}
}


/* ============================================
   CYBER SECURITY PAGE
   ============================================ */
.cyber-page {
	--cyber-dark: #0a0f1a;
	--cyber-darker: #050709;
	--cyber-red: #c94050;
	--cyber-red-dark: #a03050;
}

.cyber-page .nav-container {
	background: rgba(10, 15, 26, 0.95);
}

.cy-hero {
	background: linear-gradient(150deg, #0a0f1a 0%, #121a2e 100%);
	color: var(--white);
	padding: 9rem 2rem 5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cy-hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 40% at 25% 50%, rgba(201, 64, 80, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse 40% 40% at 75% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
	pointer-events: none;
}

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

.cy-hero h1 {
	color: var(--white);
	margin-bottom: 1.5rem;
}

.cy-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: rgba(201, 64, 80, 0.15);
	color: #ff6b7a;
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-full);
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
	border: 1px solid rgba(201, 64, 80, 0.3);
}

.cy-hero-accent {
	background: linear-gradient(135deg, #c94050 0%, #ff6b7a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cy-hero-actions {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 2.5rem;
	flex-wrap: wrap;
}

.cy-hero-icon {
	position: absolute;
	font-size: 6rem;
	opacity: 0.08;
	top: -60px;
	right: 5%;
	color: #c94050;
	pointer-events: none;
}

.cy-stats-strip {
	background: #0f1620;
	color: var(--white);
	padding: 4rem 0;
	border-top: 1px solid rgba(201, 64, 80, 0.1);
	border-bottom: 1px solid rgba(201, 64, 80, 0.1);
	position: relative;
	z-index: 1;
}

.cy-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

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

.cy-stat-number {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: #c94050;
	margin-bottom: 0.5rem;
}

.cy-stat-label {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.05em;
}

.cy-section-header {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	z-index: 1;
}

.cy-section-header h2 {
	color: var(--white);
	margin-bottom: 1rem;
}

.cy-section-tag {
	font-size: 0.75rem;
	color: #ff6b7a;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-weight: 600;
	margin-bottom: 1rem;
}

.cy-threats-section {
	background: #0d1117;
	padding: var(--section-pad) 0;
	position: relative;
	overflow: hidden;
}

.cy-threats-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 50% at 20% 40%, rgba(201, 64, 80, 0.06) 0%, transparent 50%),
		radial-gradient(ellipse 40% 40% at 80% 70%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
	pointer-events: none;
}

.cy-threats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.cy-threat-card {
	background: linear-gradient(135deg, #111827 0%, #0f1520 100%);
	border: 1px solid rgba(201, 64, 80, 0.15);
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	transition: all 0.4s var(--ease-out);
	color: var(--white);
}

.cy-threat-card:hover {
	transform: translateY(-8px);
	border-color: #c94050;
	box-shadow: 0 10px 40px rgba(201, 64, 80, 0.2);
}

.cy-card-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
}

.cy-icon-red {
	background: rgba(201, 64, 80, 0.2);
	color: #ff6b7a;
}

.cy-icon-purple {
	background: rgba(139, 92, 246, 0.2);
	color: #a78bfa;
}

.cy-icon-crimson {
	background: rgba(220, 38, 38, 0.2);
	color: #ef5350;
}

.cy-icon-maroon {
	background: rgba(160, 48, 80, 0.2);
	color: #f472b6;
}

.cy-threat-card h3 {
	margin-bottom: 1rem;
	font-size: 1.25rem;
	color: var(--white);
}

.cy-threat-card > p {
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	line-height: 1.7;
}

.cy-threat-stat {
	background: rgba(201, 64, 80, 0.1);
	padding: 1.25rem;
	border-radius: var(--radius-md);
	border-left: 3px solid #c94050;
	margin-top: 1.5rem;
}

.cy-threat-number {
	font-family: var(--font-serif);
	font-size: 2rem;
	font-weight: 700;
	color: #ff6b7a;
	display: block;
}

.cy-threat-context {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.85rem;
	margin-top: 0.25rem;
}

.cy-scenarios-section {
	padding: var(--section-pad) 0;
	background: #0a0f1a;
}

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

.cy-scenario {
	background: linear-gradient(135deg, #111827 0%, #0f1520 100%);
	border: 1px solid rgba(139, 92, 246, 0.15);
	padding: 2.25rem;
	border-radius: var(--radius-lg);
	transition: all 0.4s var(--ease-out);
	color: var(--white);
}

.cy-scenario:hover {
	transform: translateY(-6px);
	border-color: var(--purple);
}

.cy-scenario-icon {
	font-size: 2.5rem;
	margin-bottom: 1.25rem;
	color: var(--purple);
}

.cy-scenario h4 {
	margin-bottom: 0.75rem;
	font-size: 1.15rem;
	color: var(--white);
}

.cy-scenario-industry {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(139, 92, 246, 0.15);
	color: #a78bfa;
	padding: 0.35rem 0.85rem;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	font-weight: 600;
	margin-top: 1rem;
	border: 1px solid rgba(139, 92, 246, 0.2);
}

.cy-scenario p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.9rem;
	margin: 1rem 0 0;
	line-height: 1.6;
}

.cy-services-section {
	padding: var(--section-pad) 0;
	background: #0d1117;
}

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

.cy-service-card {
	background: linear-gradient(135deg, #111827 0%, #0f1520 100%);
	border: 1px solid rgba(201, 64, 80, 0.12);
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	color: var(--white);
	transition: all 0.4s var(--ease-out);
}

.cy-service-card:hover {
	transform: translateY(-8px);
	border-color: #c94050;
	box-shadow: 0 10px 40px rgba(201, 64, 80, 0.15);
}

.cy-service-card .fi {
	font-size: 2.5rem;
	color: #c94050;
	margin-bottom: 1.5rem;
}

.cy-service-card h3 {
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

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

.cy-card-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cy-card-features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.9rem;
}

.cy-card-features li::before {
	content: "✓";
	color: #ff6b7a;
	font-weight: 700;
	flex-shrink: 0;
}

.cy-impact-section {
	padding: var(--section-pad) 0;
	background: #0a0f1a;
}

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

.cy-impact-card {
	background: linear-gradient(135deg, rgba(201, 64, 80, 0.1) 0%, rgba(201, 64, 80, 0.05) 100%);
	border: 1px solid rgba(201, 64, 80, 0.2);
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	color: var(--white);
	text-align: center;
	transition: all 0.4s var(--ease-out);
}

.cy-impact-card:hover {
	transform: scale(1.02);
	border-color: #c94050;
}

.cy-impact-number {
	font-family: var(--font-serif);
	font-size: 2.5rem;
	font-weight: 700;
	color: #ff6b7a;
	display: block;
	margin-bottom: 0.5rem;
}

.cy-impact-label {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.05em;
}

.cy-process-section {
	padding: var(--section-pad) 0;
	background: #0d1117;
}

.cy-process-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.cy-process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: var(--white);
}

.cy-step-number {
	font-family: var(--font-serif);
	font-size: 2.5rem;
	font-weight: 700;
	color: #ff6b7a;
	background: rgba(201, 64, 80, 0.15);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	border: 2px solid rgba(201, 64, 80, 0.3);
}

.cy-process-step h4 {
	margin: 0.5rem 0 0;
	font-size: 1.1rem;
	color: var(--white);
}

.cy-process-step p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	margin-top: 0.5rem;
	max-width: 130px;
}

.cy-process-connector {
	color: #ff6b7a;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
}

.cy-cta-section {
	background: linear-gradient(150deg, #0a0f1a 0%, #121a2e 100%);
	color: var(--white);
	padding: var(--section-pad) 0;
	position: relative;
	overflow: hidden;
}

.cy-cta-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 40% at 25% 50%, rgba(201, 64, 80, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse 40% 40% at 75% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
	pointer-events: none;
}

.cy-cta-card {
	background: linear-gradient(135deg, rgba(201, 64, 80, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
	border: 1px solid rgba(201, 64, 80, 0.25);
	border-radius: var(--radius-lg);
	padding: 3rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.cy-cta-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cy-cta-content h2 {
	color: var(--white);
	margin-bottom: 1rem;
}

.cy-cta-content p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 2rem;
	font-size: 1.05rem;
	line-height: 1.8;
}

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

.cy-cta-glow {
	position: absolute;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(201, 64, 80, 0.3) 0%, transparent 70%);
	border-radius: 50%;
	animation: pulse 3s ease-in-out infinite;
}

.cy-cta-visual .fi {
	font-size: 5rem;
	color: #ff6b7a;
	position: relative;
	z-index: 2;
	animation: float 3s ease-in-out infinite;
}

.cy-cta-primary {
	background: #c94050;
	color: var(--white);
	padding: 1rem 2.5rem;
	border-radius: var(--radius-md);
	font-weight: 600;
	transition: all 0.3s var(--ease-out);
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	width: fit-content;
}

.cy-cta-primary:hover {
	background: #a03050;
	transform: translateY(-2px);
}

.cy-cta-secondary {
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(201, 64, 80, 0.4);
	padding: 0.75rem 2.25rem;
	border-radius: var(--radius-md);
	font-weight: 600;
	transition: all 0.3s var(--ease-out);
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	width: fit-content;
}

.cy-cta-secondary:hover {
	border-color: #c94050;
	color: #ff6b7a;
}

.cy-animate-on-scroll {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s var(--ease-out);
}

.cy-animated {
	opacity: 1;
	transform: translateY(0);
}

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

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

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

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

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

	.cy-cta-card {
		grid-template-columns: 1fr;
	}
}

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

	.cy-threats-grid {
		grid-template-columns: 1fr;
	}

	.cy-scenarios-grid {
		grid-template-columns: 1fr;
	}

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

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

	.cy-process-grid {
		flex-direction: column;
		gap: 1.5rem;
	}

	.cy-process-connector {
		transform: rotate(90deg);
	}

	.cy-threat-card,
	.cy-service-card {
		padding: 1.75rem;
	}
}


/* ============================================
   ABOUT PAGE
   ============================================ */
.meet-team-section {
	padding: var(--section-pad) 0;
}

.team-member-detail {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 6rem;
}

.team-member-detail:nth-child(even) {
	grid-template-columns: 1.2fr 1fr;
	direction: rtl;
}

.team-member-detail:nth-child(even) > * {
	direction: ltr;
}

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

.team-photo {
	border-radius: var(--radius-xl);
	overflow: hidden;
	aspect-ratio: 3/4;
	position: relative;
	border: 1px solid var(--line);
}

.team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-member-text {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.team-member-text h2 {
	margin: 0;
}

.team-role {
	color: var(--slate);
	font-size: 1.05rem;
	font-weight: 500;
	margin: 0;
}

.team-member-text p {
	color: var(--slate);
	line-height: 1.8;
	font-size: 0.95rem;
}

.team-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1rem;
}

.skill-tag {
	background: var(--orange-light);
	color: var(--orange);
	padding: 0.5rem 1rem;
	border-radius: var(--radius-full);
	font-size: 0.85rem;
	font-weight: 600;
	border: 1px solid rgba(249, 115, 22, 0.2);
}

.why-grid-section {
	padding: var(--section-pad) 0;
	background: var(--sand);
}

.cv-section {
	padding: var(--section-pad) 0;
}

.cv-timeline {
	position: relative;
	padding-left: 3rem;
}

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

.cv-item:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}

.cv-line-connector {
	position: absolute;
	left: -1.75rem;
	top: 1.5rem;
	width: 2px;
	height: calc(100% + 2rem);
	background: var(--line);
}

.cv-item:last-child .cv-line-connector {
	display: none;
}

.cv-item::before {
	content: "";
	position: absolute;
	left: -2.5rem;
	top: 0.75rem;
	width: 12px;
	height: 12px;
	background: var(--orange);
	border-radius: 50%;
	border: 3px solid var(--sand);
	box-shadow: 0 0 0 2px var(--orange);
}

.cv-content {
	padding: 1.5rem;
	background: var(--white);
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	transition: all 0.3s var(--ease-out);
}

.cv-item:hover .cv-content {
	box-shadow: var(--shadow-md);
	border-color: var(--orange);
}

.cv-company {
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--ink);
	margin-bottom: 0.25rem;
}

.cv-date {
	color: var(--muted);
	font-size: 0.85rem;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

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

.cv-credentials {
	padding: var(--section-pad) 0;
}

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

.credential-badge {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 2rem 1.5rem;
	text-align: center;
	transition: all 0.4s var(--ease-out);
}

.credential-badge:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: var(--orange);
}

.credential-icon {
	width: 60px;
	height: 60px;
	background: var(--orange-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--orange);
	font-size: 1.75rem;
	margin: 0 auto 1rem;
}

.credential-detail {
	color: var(--ink);
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 0.5rem;
}

.credential-date {
	color: var(--muted);
	font-size: 0.8rem;
	margin-bottom: 0.75rem;
}

.credential-status {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--orange-light);
	color: var(--orange);
	padding: 0.3rem 0.75rem;
	border-radius: var(--radius-full);
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 0.75rem;
}

.credential-focus {
	color: var(--slate);
	font-size: 0.85rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
}

@media (max-width: 1024px) {
	.team-member-detail,
	.team-member-detail:nth-child(even) {
		grid-template-columns: 1fr;
		gap: 2rem;
		direction: ltr;
	}

	.team-member-detail:nth-child(even) > * {
		direction: ltr;
	}

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

	.cv-timeline {
		padding-left: 2rem;
	}

	.cv-item::before {
		left: -1.75rem;
	}
}

@media (max-width: 768px) {
	.cv-timeline {
		padding-left: 1.5rem;
	}

	.cv-item::before {
		left: -1.25rem;
		width: 10px;
		height: 10px;
		top: 0.9rem;
	}

	.cv-line-connector {
		left: -1.25rem;
		top: 1.2rem;
	}

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

	.cv-content {
		padding: 1rem;
	}

	.team-skills {
		gap: 0.5rem;
	}

	.skill-tag {
		font-size: 0.8rem;
		padding: 0.4rem 0.8rem;
	}
}


/* ============================================
   BLUEPRINT/PROCESS PAGE
   ============================================ */
.bp-hero {
	background: linear-gradient(150deg, #0a0f1a 0%, #121a2e 100%);
	color: var(--white);
	padding: 9rem 2rem 5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.bp-hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 40% at 25% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse 40% 40% at 75% 60%, rgba(20, 184, 166, 0.06) 0%, transparent 50%);
	pointer-events: none;
}

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

.bp-hero h1 {
	color: var(--white);
	margin-bottom: 1.5rem;
}

.bp-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: rgba(249, 115, 22, 0.1);
	color: var(--orange);
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-full);
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
	border: 1px solid rgba(249, 115, 22, 0.2);
}

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

.bp-hero-scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

.bp-scroll-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: all 0.4s var(--ease-out);
	animation: bounce 2s infinite;
}

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

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.bp-impact-section {
	padding: var(--section-pad) 0;
}

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

.bp-impact-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	text-align: center;
	transition: all 0.4s var(--ease-out);
}

.bp-impact-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: var(--orange);
}

.bp-impact-stat {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--orange);
}

.bp-impact-card h3 {
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
}

.bp-impact-card p {
	color: var(--slate);
	font-size: 0.95rem;
	line-height: 1.7;
	margin: 0;
}

.bp-impact-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--orange-light);
	color: var(--orange);
	padding: 0.5rem 1rem;
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 600;
	margin-top: 1.5rem;
	border: 1px solid rgba(249, 115, 22, 0.2);
}

.bp-cta-section {
	background: var(--ink);
	color: var(--white);
	padding: var(--section-pad) 0;
	position: relative;
	overflow: hidden;
}

.bp-cta-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 40% at 25% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse 40% 40% at 75% 60%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

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

.bp-cta-content h2 {
	color: var(--white);
	margin-bottom: 1.5rem;
}

.bp-cta-content p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 2.5rem;
}

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

.bp-cta-primary {
	background: var(--orange);
	color: var(--white);
	padding: 1rem 2.5rem;
	border-radius: var(--radius-md);
	font-weight: 600;
	transition: all 0.3s var(--ease-out);
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.95rem;
}

.bp-cta-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow-orange);
}

.bp-cta-secondary {
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(249, 115, 22, 0.4);
	padding: 0.75rem 2.25rem;
	border-radius: var(--radius-md);
	font-weight: 600;
	transition: all 0.3s var(--ease-out);
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.95rem;
}

.bp-cta-secondary:hover {
	border-color: var(--orange);
	color: var(--orange);
}

.category-header {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.category-header h2 {
	margin-bottom: 1rem;
}

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

.category-header--left {
	text-align: left;
	max-width: 600px;
}

.category-header--left h2 {
	text-align: left;
}

.category-header--left p {
	margin: 1rem 0 0;
	max-width: none;
}

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

	.bp-cta-actions {
		flex-direction: column;
		align-items: center;
	}

	.bp-cta-primary,
	.bp-cta-secondary {
		width: fit-content;
	}
}

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

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

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

	.bp-hero-scroll {
		display: none;
	}

	.category-header--left {
		text-align: center;
	}

	.category-header--left h2,
	.category-header--left p {
		text-align: center;
	}
}


/* ============================================
   UTILITY & ANIMATION CLASSES
   ============================================ */
.stagger-1 {
	transition-delay: 0.1s;
}

.stagger-2 {
	transition-delay: 0.2s;
}

.stagger-3 {
	transition-delay: 0.3s;
}

.stagger-4 {
	transition-delay: 0.4s;
}

.icon-float {
	animation: iconFloat 3s ease-in-out infinite;
}

.icon-pulse {
	animation: iconPulse 2s ease-in-out infinite;
}

.icon-glow {
	animation: iconGlow 2s ease-in-out infinite;
}

.icon-bounce {
	animation: iconBounce 1.5s ease-in-out infinite;
}

@keyframes iconFloat {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
}

@keyframes iconPulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.05);
	}
}

@keyframes iconGlow {
	0%, 100% {
		filter: drop-shadow(0 0 0 rgba(249, 115, 22, 0));
	}
	50% {
		filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.4));
	}
}

@keyframes iconBounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1024px) {
	/* Tablet adjustments */
	.container {
		padding: 0 clamp(1rem, 3vw, 1.5rem);
	}

	h1 {
		font-size: clamp(2rem, 5vw, 4rem);
	}

	h2 {
		font-size: clamp(1.6rem, 3.5vw, 2.8rem);
	}

	h3 {
		font-size: clamp(1rem, 1.8vw, 1.4rem);
	}

	section {
		padding: 4rem 0;
	}

	.text-display {
		font-size: clamp(2.5rem, 7vw, 5rem);
	}
}

@media (max-width: 768px) {
	/* Mobile adjustments */
	.container {
		padding: 0 1.25rem;
	}

	section {
		padding: 3rem 0;
	}

	h1 {
		font-size: clamp(1.75rem, 4vw, 3rem);
	}

	h2 {
		font-size: clamp(1.35rem, 3vw, 2rem);
	}

	h3 {
		font-size: clamp(0.95rem, 1.5vw, 1.2rem);
	}

	h4 {
		font-size: 1rem;
	}

	.text-display {
		font-size: clamp(2rem, 6vw, 3.5rem);
		line-height: 1;
	}

	body {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.section-label {
		font-size: 0.7rem;
	}

	.section-intro {
		font-size: clamp(0.95rem, 1.2vw, 1rem);
	}
}

@media (max-width: 480px) {
	/* Small mobile adjustments */
	.container {
		padding: 0 1rem;
	}

	section {
		padding: 2rem 0;
	}

	h1 {
		font-size: clamp(1.5rem, 3vw, 2.25rem);
	}

	h2 {
		font-size: clamp(1.15rem, 2.5vw, 1.6rem);
	}

	h3 {
		font-size: 1rem;
	}

	h4 {
		font-size: 0.95rem;
	}

	.text-display {
		font-size: clamp(1.75rem, 5vw, 2.5rem);
	}

	body {
		font-size: 0.9rem;
		line-height: 1.55;
	}

	.section-label {
		font-size: 0.65rem;
	}

	.section-label::before {
		width: 20px;
		height: 1.5px;
	}
}

/* ============================================
   PATCH: Missing classes found during audit
   ============================================ */

/* services.html — card links inside service overview cards */
.card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--orange);
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: gap var(--transition-smooth), color var(--transition-smooth);
}

.card-link:hover {
	gap: 0.6rem;
	color: var(--coral);
}

/* services.html — pricing approach section wrapper */
.pricing-approach {
	padding: var(--space-section) 0;
	background: var(--bg-primary);
}

/* services.html — CTA button group */
.cta-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

/* contact.html — contact methods wrapper */
.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 2rem;
}

/* work.html — full-width container variant */
.container--full {
	width: 100%;
	max-width: none;
	padding-inline: var(--space-md);
}

/* work.html — utility: mx-auto */
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

/* work.html — utility: mb-4 */
.mb-4 {
	margin-bottom: 1.5rem;
}

/* work.html — utility: text-center */
.text-center {
	text-align: center;
}

/* process.html — last timeline item (no bottom connector) */
.bp-tl-item-last::after {
	display: none;
}

/* process.html — grow content column */
.bp-grow-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}


/* ============================================
   RESPONSIVE PATCH: Missing breakpoints
   ============================================ */

/* ---- 1024px: tablet ---- */
@media (max-width: 1024px) {
	.team-member-detail {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		margin-bottom: 3rem;
	}

	.showcase-inner {
		gap: 3rem;
	}
}

/* ---- 768px: mobile-large ---- */
@media (max-width: 768px) {
	/* Hero sections with 9rem padding */
	.cy-hero,
	.bp-hero {
		padding: 5rem 1.5rem 3rem;
	}

	.cy-hero h1,
	.bp-hero h1 {
		font-size: clamp(1.75rem, 5vw, 2.5rem);
	}

	.cy-hero p,
	.bp-hero p {
		font-size: 1rem;
	}

	/* Work page */
	.showcase-inner {
		gap: 2rem;
	}

	.showcase-text h3 {
		font-size: 1.5rem;
	}

	/* About page */
	.team-member-detail {
		gap: 2rem;
		margin-bottom: 2rem;
	}

	.team-member-photo img {
		max-width: 280px;
		margin: 0 auto;
		display: block;
	}

	/* Contact strip */
	.contact-strip-grid {
		gap: 1rem;
	}

	.strip-item {
		padding: 1.25rem;
	}

	/* Services CTA buttons */
	.cta-buttons {
		flex-direction: column;
		align-items: stretch;
	}
}

/* ---- 480px: mobile-small ---- */
@media (max-width: 480px) {
	/* Shared hero stats */
	.services-hero-stats {
		gap: 1rem;
	}

	/* Cyber security page */
	.cy-hero,
	.bp-hero {
		padding: 3.5rem 1rem 2rem;
	}

	.cy-stats-grid,
	.cy-threats-grid,
	.cy-scenarios-grid,
	.cy-services-grid,
	.cy-impact-grid {
		gap: 1rem;
	}

	.cy-threat-card,
	.cy-scenario-card,
	.cy-service-card,
	.cy-impact-card {
		padding: 1.25rem;
	}

	.cy-stats-section,
	.cy-threats-section,
	.cy-scenarios-section,
	.cy-services-section,
	.cy-impact-section,
	.cy-process-section,
	.cy-cta-section {
		padding: 3rem 0;
	}

	/* Work page */
	.showcase-inner {
		gap: 1.5rem;
	}

	.showcase-text {
		padding: 1rem;
	}

	.showcase-text h3 {
		font-size: 1.25rem;
	}

	/* AI Tools page */
	.ai-process-grid {
		gap: 1rem;
	}

	.ai-stats-grid {
		gap: 1rem;
	}

	.ai-service-card,
	.ai-usecase-card {
		padding: 1.25rem;
	}

	.ai-stats-section,
	.ai-services-section,
	.ai-process-section,
	.ai-usecases-section,
	.ai-cta-section {
		padding: 3rem 0;
	}

	/* Blueprint/Process page */
	.bp-impact-grid,
	.bp-cta-actions {
		gap: 1rem;
	}

	.bp-impact-section,
	.bp-cta-section {
		padding: 3rem 0;
	}

	/* About page */
	.team-member-detail {
		gap: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.meet-team-section {
		padding: 3rem 0;
	}

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

	/* Contact */
	.contact-section {
		padding: 3rem 0;
	}

	.contact-strip {
		padding: 2rem 0;
	}

	.contact-strip-grid {
		gap: 0.75rem;
	}

	.strip-item {
		padding: 1rem;
	}

	.contact-grid {
		gap: 2rem;
	}

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