/* ==========================================================================
   AK Marketing Landing Page — v2.0
   Mobile-first, standalone styles.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. RESET & TOKENS
   -------------------------------------------------------------------------- */
:root {
	--ak-teal: #027084;
	--ak-teal-dark: #015c6d;
	--ak-dark: #1a2332;
	--ak-dark-rgb: 26, 35, 50;
	--ak-white: #ffffff;
	--ak-off-white: #f7f8fa;
	--ak-grey-100: #f0f2f5;
	--ak-grey-200: #e2e5ea;
	--ak-grey-500: #6b7280;
	--ak-grey-700: #374151;
	--ak-grey-900: #111827;
	--ak-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--ak-radius: 16px;
	--ak-radius-sm: 12px;
	--ak-radius-pill: 999px;
	--ak-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	--ak-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
	--ak-transition: 200ms ease;
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body.ak-mlp-body {
	margin: 0 !important;
	padding: 0 !important;
	font-family: var(--ak-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ak-grey-900);
	background: var(--ak-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
	list-style: none;
}

h1, h2, h3, h4, p {
	margin: 0;
}

/* --------------------------------------------------------------------------
   1. LAYOUT
   -------------------------------------------------------------------------- */
.ak-container {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 20px;
}

/* --------------------------------------------------------------------------
   2. BUTTONS
   -------------------------------------------------------------------------- */
.ak-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1;
	border-radius: var(--ak-radius-pill);
	padding: 14px 28px;
	transition: all var(--ak-transition);
	white-space: nowrap;
	border: 2px solid transparent;
}

.ak-btn svg {
	flex-shrink: 0;
}

.ak-btn--sm {
	padding: 10px 20px;
	font-size: 0.875rem;
}

.ak-btn--lg {
	padding: 16px 32px;
	font-size: 1rem;
}

.ak-btn--primary {
	background: var(--ak-teal);
	color: var(--ak-white);
	border-color: var(--ak-teal);
}

.ak-btn--primary:hover {
	background: var(--ak-teal-dark);
	border-color: var(--ak-teal-dark);
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(2, 112, 132, 0.3);
}

.ak-btn--white {
	background: var(--ak-white);
	color: var(--ak-dark);
	border-color: var(--ak-white);
}

.ak-btn--white:hover {
	background: var(--ak-off-white);
	transform: translateY(-1px);
}

.ak-btn--outline {
	background: transparent;
	color: var(--ak-teal);
	border-color: var(--ak-teal);
}

.ak-btn--outline:hover {
	background: var(--ak-teal);
	color: var(--ak-white);
}

.ak-btn--white-outline {
	background: transparent;
	color: var(--ak-white);
	border-color: rgba(255, 255, 255, 0.5);
}

.ak-btn--white-outline:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--ak-white);
}

.ak-btn:focus-visible {
	outline: 2px solid var(--ak-teal);
	outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   3. HEADER
   -------------------------------------------------------------------------- */
.ak-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 20px 20px 12px;
	transition: background var(--ak-transition), box-shadow var(--ak-transition);
}

.ak-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
	pointer-events: none;
	transition: opacity var(--ak-transition);
}

.ak-header.is-scrolled::before {
	opacity: 0;
}

.ak-header.is-scrolled {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.ak-header__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1120px;
	margin: 0 auto;
	gap: 4px;
}

.ak-header__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.ak-header__logo {
	width: 42px;
	height: 42px;
	min-width: 42px;
	min-height: 42px;
	border-radius: 50%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.ak-header__brand-text {
	display: flex;
	flex-direction: column;
}

.ak-header__brand-text strong {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--ak-white);
	line-height: 1.2;
	letter-spacing: 0.02em;
	max-width: 120px;
}

.ak-header__brand-text span {
	font-size: 0.6875rem;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.3;
	max-width: 160px;
}

.ak-header.is-scrolled .ak-header__brand-text strong {
	color: var(--ak-grey-900);
}

.ak-header.is-scrolled .ak-header__brand-text span {
	color: var(--ak-grey-500);
}

.ak-header .ak-btn--outline {
	color: var(--ak-white);
	border-color: rgba(255, 255, 255, 0.4);
	font-size: 0.8125rem;
	padding: 8px 16px;
}

.ak-header .ak-btn--outline:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--ak-white);
	color: var(--ak-white);
}

.ak-header.is-scrolled .ak-btn--outline {
	color: var(--ak-teal);
	border-color: var(--ak-teal);
}

.ak-header.is-scrolled .ak-btn--outline:hover {
	background: var(--ak-teal);
	color: var(--ak-white);
}

/* Header actions container */
.ak-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Language switcher — desktop: inline in header nav */
.ak-lang-switch {
	display: flex;
	align-items: center;
	gap: 2px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	padding: 2px;
}

.ak-lang-switch__item {
	display: block;
	padding: 4px 8px;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.6);
	border-radius: 4px;
	transition: all 0.2s ease;
}

.ak-lang-switch__item:hover {
	color: var(--ak-white);
	background: rgba(255, 255, 255, 0.15);
}

.ak-lang-switch__item.is-active {
	color: var(--ak-white);
	background: rgba(255, 255, 255, 0.2);
}

/* Scrolled state */
.ak-header.is-scrolled .ak-lang-switch {
	background: var(--ak-grey-100);
}

.ak-header.is-scrolled .ak-lang-switch__item {
	color: var(--ak-grey-400);
}

.ak-header.is-scrolled .ak-lang-switch__item:hover {
	color: var(--ak-grey-700);
	background: var(--ak-grey-200);
}

.ak-header.is-scrolled .ak-lang-switch__item.is-active {
	color: var(--ak-teal);
	background: var(--ak-grey-200);
}

/* Language switcher — mobile: pulled out of nav, fixed on hero */
@media (max-width: 767px) {
	.ak-header .ak-lang-switch {
		display: none;
	}

	.ak-lang-switch--mobile {
		display: flex;
		position: absolute;
		top: 150px;
		right: 20px;
		z-index: 10;
		gap: 2px;
		background: rgba(0, 0, 0, 0.25);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		border-radius: 6px;
		padding: 2px;
	}

	.ak-lang-switch--mobile .ak-lang-switch__item {
		color: rgba(255, 255, 255, 0.7);
	}

	.ak-lang-switch--mobile .ak-lang-switch__item:hover {
		color: var(--ak-white);
		background: rgba(255, 255, 255, 0.15);
	}

	.ak-lang-switch--mobile .ak-lang-switch__item.is-active {
		color: var(--ak-white);
		background: rgba(255, 255, 255, 0.25);
	}
}

@media (min-width: 768px) {
	.ak-lang-switch--mobile {
		display: none;
	}
}

/* --------------------------------------------------------------------------
   4. HERO
   -------------------------------------------------------------------------- */
.ak-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 95vh;
	min-height: 95dvh;
	padding: 0 20px 48px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--ak-dark);
	overflow: hidden;
	background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
	/* iOS doesn't support background-attachment: fixed. */
	.ak-hero {
		background-attachment: scroll;
	}
}

.ak-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

/* --- Hero media visibility per breakpoint --- */

/* Fully hidden. */
.ak-hero--img-hidden {
	background-image: none !important;
}
.ak-hero--vid-hidden .ak-hero__video {
	display: none;
}

/* When video is visible, hide the CSS background (poster handles fallback). */
.ak-hero--has-video:not(.ak-hero--vid-hidden) {
	background-image: none !important;
}

/* Mobile (<920px) */
@media (max-width: 919px) {
	.ak-hero--img-desktop-only {
		background-image: none !important;
	}
	.ak-hero--vid-desktop-only .ak-hero__video {
		display: none;
	}
	/* Restore image when video is desktop-only. */
	.ak-hero--has-video.ak-hero--vid-desktop-only:not(.ak-hero--img-desktop-only):not(.ak-hero--img-hidden) {
		background-image: var(--hero-bg-url) !important;
	}
}

/* Desktop (>=920px) */
@media (min-width: 920px) {
	.ak-hero--img-mobile-only {
		background-image: none !important;
	}
	.ak-hero--vid-mobile-only .ak-hero__video {
		display: none;
	}
	/* Restore image when video is mobile-only. */
	.ak-hero--has-video.ak-hero--vid-mobile-only:not(.ak-hero--img-mobile-only):not(.ak-hero--img-hidden) {
		background-image: var(--hero-bg-url) !important;
	}
}

.ak-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(var(--ak-dark-rgb), 0.05) 0%,
		rgba(var(--ak-dark-rgb), 0.15) 40%,
		rgba(var(--ak-dark-rgb), 0.55) 100%
	);
	z-index: 1;
}

.ak-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	/* Fade-out on scroll — controlled by JS via --hero-progress. */
	opacity: var(--hero-opacity, 1);
	transform: translateY(var(--hero-shift, 0));
	will-change: opacity, transform;
}

.ak-hero__title {
	font-size: clamp(2.5rem, 10vw, 4rem);
	font-weight: 800;
	line-height: 3.6rem;
	color: var(--ak-white);
	letter-spacing: -0.03em;
	padding-bottom:12px;
}

.ak-highlight {
	background: var(--ak-white);
	color: var(--ak-teal);
	padding: 0 12px 2px;
	border-radius: 6px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	box-shadow: 0 4px 20px rgba(2, 112, 132, 0.25);
}

.ak-hero__subtitle {
	margin-top: 16px;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	max-width: 480px;
	padding-bottom:12px;
	font-weight: bold;
}

.ak-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 28px;
}

/* Hero stagger entrance. */
.ak-hero-stagger {
	opacity: 0;
	transform: translateY(24px);
	animation: heroFadeIn 700ms ease forwards;
}

.ak-hero-stagger:nth-child(1) { animation-delay: 200ms; }
.ak-hero-stagger:nth-child(2) { animation-delay: 450ms; }
.ak-hero-stagger:nth-child(3) { animation-delay: 650ms; }

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

/* --------------------------------------------------------------------------
   5. SECTION TITLES
   -------------------------------------------------------------------------- */
.ak-section-title {
	font-size: clamp(1.75rem, 6vw, 2.5rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--ak-grey-900);
}

.ak-section-title--teal {
	color: var(--ak-teal);
}

.ak-section-subtitle {
	margin-top: 12px;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--ak-grey-500);
	max-width: 540px;
}

/* --------------------------------------------------------------------------
   6. SERVICES
   -------------------------------------------------------------------------- */
.ak-services {
	padding: 80px 0;
	background: var(--ak-white);
	scroll-margin-top: 80px;
}

.ak-services__grid {
	display: grid;
	gap: 20px;
	margin-top: 32px;
}

/* --------------------------------------------------------------------------
   7. SERVICE CARDS
   -------------------------------------------------------------------------- */
.ak-card {
	background: var(--ak-white);
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition:
		box-shadow 350ms ease,
		transform 350ms ease;
}

.ak-card::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 20px;
	border: 2px solid transparent;
	transition: border-color 350ms ease;
	pointer-events: none;
	z-index: 3;
}

.ak-card:hover {
	box-shadow:
		0 20px 40px rgba(2, 112, 132, 0.12),
		0 8px 16px rgba(0, 0, 0, 0.06);
	transform: translateY(-6px);
}

.ak-card:hover::after {
	border-color: var(--ak-teal);
}

.ak-card__image-wrap {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.ak-card__image {
	width: 100%;
	height: 120%;
	object-fit: cover;
	object-position: center 30%;
	transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

.ak-card:hover .ak-card__image {
	transform: scale(1.08);
}

/* Gradient overlay on image to blend into body. */
.ak-card__image-wrap::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
	pointer-events: none;
	z-index: 1;
}

.ak-card__body {
	padding: 20px 20px 24px;
	position: relative;
}

.ak-card__tag {
	display: inline-block;
	background: var(--ak-teal);
	color: var(--ak-white);
	font-size: 0.6875rem;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: var(--ak-radius-pill);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	position: absolute;
	z-index: 2;
}

/* On card: position tag over the image bottom. */
.ak-card .ak-card__tag {
	bottom: calc(100% + 12px);
	left: 20px;
}

.ak-card__tag--modal {
	position: relative;
	bottom: auto;
	left: 0;
	z-index: 2;
	font-size: 0.6875rem;
	padding: 4px 12px;
	max-width: fit-content;
}

.ak-card__title {
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--ak-grey-900);
}

.ak-card__subtitle {
	margin-top: 8px;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--ak-grey-500);
}

.ak-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--ak-teal);
	transition: gap 300ms ease;
}

.ak-card:hover .ak-card__link {
	gap: 12px;
}

.ak-card__link svg {
	transition: transform 300ms ease;
}

.ak-card:hover .ak-card__link svg {
	transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   8. NETWORK / VALUE PROPOSITIONS
   -------------------------------------------------------------------------- */
.ak-network {
	padding: 80px 0;
	background: var(--ak-off-white);
}

.ak-vp-grid {
	display: grid;
	gap: 16px;
	margin-top: 32px;
}

.ak-vp-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: var(--ak-white);
	border: 1px solid var(--ak-grey-200);
	border-radius: var(--ak-radius);
	padding: 32px 24px 0;
	transition: box-shadow var(--ak-transition), transform var(--ak-transition);
}

.ak-vp-card:hover {
	box-shadow: var(--ak-shadow);
	transform: translateY(-2px);
}

/* Fallback SVG icon (when no logo image is set) */
.ak-vp-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(2, 112, 132, 0.08);
	color: var(--ak-teal);
	box-shadow: 0 0 0 3px rgba(2, 112, 132, 0.12);
}

.ak-vp-card__icon svg {
	width: 28px;
	height: 28px;
}

/* Circular image with decorative ring */
.ak-vp-card__logo {
	position: relative;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	padding: 3px;
	background: linear-gradient(135deg, var(--ak-teal), var(--ak-teal-dark));
	flex-shrink: 0;
}

.ak-vp-card__logo img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	background: var(--ak-white);
}

.ak-vp-card__title {
	margin-top: 16px;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--ak-grey-900);
}

.ak-vp-card__desc {
	margin-top: 6px;
	margin-bottom: 20px;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--ak-grey-500);
}

/* When there's no footer link, add bottom padding to the card itself */
.ak-vp-card:not(:has(.ak-vp-card__link)) {
	padding-bottom: 32px;
}

/* Card footer link — always pushed to the bottom */
.ak-vp-card__link {
	margin-top: auto;
	padding: 14px 0;
	border-top: 1px solid var(--ak-grey-200);
	width: calc(100% + 48px);
	text-align: center;
}

.ak-vp-card__link a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--ak-teal);
	text-decoration: none;
	transition: color var(--ak-transition);
}

.ak-vp-card__link a::after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background: currentColor;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") center / contain no-repeat;
	transition: transform var(--ak-transition);
}

.ak-vp-card__link a:hover {
	color: var(--ak-teal-dark);
}

.ak-vp-card__link a:hover::after {
	transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   9. CTA BANNER + STATS
   -------------------------------------------------------------------------- */
.ak-cta-banner {
	padding: 80px 0 64px;
	background: linear-gradient(160deg, var(--ak-teal) 0%, var(--ak-teal-dark) 100%);
	color: var(--ak-white);
}

.ak-cta-banner__title {
	font-size: clamp(1.75rem, 7vw, 2.75rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	text-align: center;
}

.ak-cta-banner__text {
	margin-top: 16px;
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.85);
	text-align: center;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.ak-cta-banner__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
	margin-top: 28px;
	max-width: 380px;
	margin-left: auto;
	margin-right: auto;
}

.ak-cta-banner__actions .ak-btn {
	width: 100%;
	justify-content: center;
}

.ak-stats {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.ak-stat__number {
	display: block;
	font-size: clamp(2rem, 8vw, 2.75rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
}

.ak-stat__label {
	display: block;
	margin-top: 4px;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.35;
}

/* --------------------------------------------------------------------------
   10. FOOTER
   -------------------------------------------------------------------------- */
.ak-footer {
	padding: 64px 0 32px;
	background: var(--ak-dark);
	color: var(--ak-white);
}

.ak-footer__heading {
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.6);
}

.ak-footer__text {
	margin-top: 16px;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.75);
	max-width: 480px;
}

.ak-footer__contact-block {
	margin-top: 32px;
}

.ak-footer__contact-label {
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 12px;
}

.ak-footer__contact-card {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--ak-radius-sm);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ak-footer__contact-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.5;
}

.ak-footer__contact-row svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.5);
}

.ak-footer__contact-row a {
	color: rgba(255, 255, 255, 0.85);
	transition: color var(--ak-transition);
}

.ak-footer__contact-row a:hover {
	color: var(--ak-white);
}

.ak-footer__bottom {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ak-footer__social {
	display: flex;
	gap: 16px;
}

.ak-footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.7);
	transition: all var(--ak-transition);
}

.ak-footer__social a:hover {
	background: rgba(255, 255, 255, 0.15);
	color: var(--ak-white);
}

.ak-footer__legal {
	display: flex;
	gap: 20px;
}

.ak-footer__legal a {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
	transition: color var(--ak-transition);
}

.ak-footer__legal a:hover {
	color: rgba(255, 255, 255, 0.85);
}

.ak-footer__copy {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.35);
}

/* --------------------------------------------------------------------------
   11. MODALS
   -------------------------------------------------------------------------- */
.ak-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 300ms ease, visibility 300ms ease;
}

.ak-modal[hidden] {
	display: none;
}

.ak-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.ak-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(var(--ak-dark-rgb), 0.6);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.ak-modal__panel {
	position: relative;
	width: 100%;
	max-width: 560px;
	max-height: 92vh;
	max-height: 92dvh;
	background: var(--ak-white);
	border-radius: var(--ak-radius) var(--ak-radius) 0 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transform: translateY(24px);
	transition: transform 300ms ease;
}

.ak-modal.is-open .ak-modal__panel {
	transform: translateY(0);
}

.ak-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.3);
	color: var(--ak-white);
	transition: background var(--ak-transition);
}

.ak-modal__close:hover {
	background: rgba(0, 0, 0, 0.5);
}

.ak-modal--contact .ak-modal__close {
	background: var(--ak-grey-100);
	color: var(--ak-grey-700);
}

.ak-modal--contact .ak-modal__close:hover {
	background: var(--ak-grey-200);
}

.ak-modal__hero {
	position: relative;
	min-height: 280px;
	padding: 24px 24px 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background-size: cover;
	background-position: center;
}

.ak-modal__hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.7) 100%);
}

.ak-modal__hero .ak-modal__title,
.ak-modal__hero .ak-card__tag {
	position: relative;
	z-index: 2;
}

.ak-modal__hero .ak-modal__title {
	color: var(--ak-white);
	margin-top: 8px;
}

.ak-modal__hero-subtitle {
	position: relative;
	z-index: 2;
	margin-top: 8px;
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
}

.ak-modal__header {
	padding: 24px 24px 0;
}

.ak-modal__title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ak-grey-900);
}

.ak-modal__body {
	padding: 20px 24px 32px;
}

.ak-modal__subtitle {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--ak-grey-500);
}

.ak-modal__intro {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--ak-grey-200);
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--ak-grey-700);
}

.ak-modal__intro p + p {
	margin-top: 6px;
}

ak-modal__intro strong {
	color: var(--ak-teal);
	font-weight: 600;
}

.ak-modal__sections {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 24px;
}

.ak-modal__section {
	padding: 16px;
	background: var(--ak-off-white);
	border-radius: var(--ak-radius-sm);
}

.ak-modal__section h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--ak-teal);
	margin-bottom: 8px;
}

.ak-modal__section div {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--ak-grey-500);
}

.ak-modal__section div p + p {
	margin-top: 8px;
}

.ak-modal__actions {
	margin-top: 48px;
	margin-bottom:24px
}

.ak-modal__actions .ak-btn {
	width: 100%;
}

/* --------------------------------------------------------------------------
   11b. SKIP LINK & FAQ
   -------------------------------------------------------------------------- */
.ak-skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	z-index: 999;
	padding: 12px 24px;
	background: var(--ak-teal);
	color: var(--ak-white);
	font-weight: 600;
	font-size: 0.875rem;
	border-radius: var(--ak-radius-sm);
	text-decoration: none;
}

.ak-skip-link:focus {
	left: 16px;
	top: 16px;
	width: auto;
	height: auto;
}

.ak-faq {
	padding: 80px 0;
	background: var(--ak-white);
}

.ak-faq__list {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ak-faq__item {
	background: var(--ak-off-white);
	border-radius: var(--ak-radius-sm);
	padding: 20px 24px;
}

.ak-faq__question {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--ak-grey-900);
	line-height: 1.35;
}

.ak-faq__answer {
	margin-top: 8px;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--ak-grey-500);
}

/* --------------------------------------------------------------------------
   12. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.ak-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 600ms ease, transform 600ms ease;
}

.ak-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* --------------------------------------------------------------------------
   13. CF7 FORM OVERRIDES (inside modal)
   -------------------------------------------------------------------------- */
.ak-modal .wpcf7 {
	margin-top: 8px;
}

.ak-modal .wpcf7-form-control-wrap {
	display: block;
	margin-top: 12px;
}

.ak-modal .wpcf7 label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--ak-grey-700);
}

.ak-modal .wpcf7 input[type="text"],
.ak-modal .wpcf7 input[type="email"],
.ak-modal .wpcf7 input[type="tel"],
.ak-modal .wpcf7 textarea,
.ak-modal .wpcf7 select {
	width: 100%;
	padding: 12px 16px;
	font-size: 0.9375rem;
	border: 1px solid var(--ak-grey-200);
	border-radius: var(--ak-radius-sm);
	background: var(--ak-white);
	color: var(--ak-grey-900);
	transition: border-color var(--ak-transition);
	font-family: var(--ak-font);
}

.ak-modal .wpcf7 input:focus,
.ak-modal .wpcf7 textarea:focus,
.ak-modal .wpcf7 select:focus {
	outline: none;
	border-color: var(--ak-teal);
	box-shadow: 0 0 0 3px rgba(2, 112, 132, 0.1);
}

.ak-modal .wpcf7 textarea {
	min-height: 120px;
	resize: vertical;
}

.ak-modal .wpcf7 input[type="submit"] {
	width: 100%;
	padding: 14px 28px;
	font-size: 1rem;
	font-weight: 600;
	background: var(--ak-teal);
	color: var(--ak-white);
	border: none;
	border-radius: var(--ak-radius-pill);
	cursor: pointer;
	transition: all var(--ak-transition);
	margin-top: 16px;
}

.ak-modal .wpcf7 input[type="submit"]:hover {
	background: var(--ak-teal-dark);
}

.ak-modal .wpcf7-acceptance {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-top: 16px;
}

.ak-modal .wpcf7-acceptance input[type="checkbox"] {
	margin-top: 3px;
}

.ak-modal .wpcf7-response-output {
	margin-top: 16px;
	padding: 12px 16px;
	border-radius: var(--ak-radius-sm);
	font-size: 0.875rem;
}

/* CF7 submit — also target the <p> wrapper CF7 uses. */
.ak-modal .wpcf7 p:last-of-type input[type="submit"],
.ak-modal .wpcf7-form .wpcf7-submit,
.ak-modal .wpcf7 [type="submit"] {
	display: block;
	width: 100%;
	padding: 14px 28px;
	font-size: 1rem;
	font-weight: 600;
	background: var(--ak-teal);
	color: var(--ak-white);
	border: none;
	border-radius: var(--ak-radius-pill);
	cursor: pointer;
	transition: all var(--ak-transition);
	margin-top: 20px;
	letter-spacing: 0.01em;
}

.ak-modal .wpcf7 [type="submit"]:hover {
	background: var(--ak-teal-dark);
	box-shadow: 0 8px 24px rgba(2, 112, 132, 0.3);
	transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   13b. CONTACT TABS
   -------------------------------------------------------------------------- */
.ak-contact-tabs {
	display: flex;
	gap: 4px;
	background: var(--ak-grey-100);
	border-radius: var(--ak-radius-sm);
	padding: 4px;
	margin-bottom: 20px;
}

.ak-contact-tab {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 12px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ak-grey-500);
	border-radius: calc(var(--ak-radius-sm) - 2px);
	transition: all var(--ak-transition);
	background: transparent;
	border: none;
	cursor: pointer;
}

.ak-contact-tab:hover {
	color: var(--ak-grey-700);
}

.ak-contact-tab.is-active {
	background: var(--ak-white);
	color: var(--ak-teal);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.ak-contact-tab svg {
	flex-shrink: 0;
}

.ak-contact-panel {
	display: none;
}

.ak-contact-panel.is-active {
	display: block;
}

.ak-contact-option {
	text-align: center;
	padding: 32px 16px;
}

.ak-contact-option__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: rgba(2, 112, 132, 0.08);
	color: var(--ak-teal);
}

.ak-contact-option__label {
	font-size: 0.9375rem;
	color: var(--ak-grey-500);
	margin-bottom: 20px;
}

.ak-contact-option .ak-btn {
	width: 100%;
}

/* --------------------------------------------------------------------------
   14. ADMIN BAR OFFSET
   -------------------------------------------------------------------------- */
body.admin-bar .ak-header {
	top: 32px;
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE — TABLET (640px+)
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
	.ak-container {
		padding: 0 32px;
	}

	.ak-hero {
		padding: 0 32px 64px;
	}
	.ak-hero__title{
		line-height: 5.2rem;
	}

	.ak-hero__actions {
		flex-direction: row;
	}

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

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

	.ak-cta-banner__actions {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		max-width: 560px;
	}

	.ak-cta-banner__actions .ak-btn {
		flex: 1 1 0;
		min-width: 0;
	}

	.ak-modal__panel {
		border-radius: var(--ak-radius);
		margin: auto;
		max-height: 88vh;
	}

	.ak-modal {
		align-items: center;
		padding: 24px;
	}
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE — DESKTOP (920px+)
   -------------------------------------------------------------------------- */
@media (min-width: 920px) {
	.ak-header {
		padding: 20px 32px;
	}

	.ak-hero {
		min-height: 100vh;
		min-height: 100dvh;
		align-items: center;
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.ak-services {
		padding: 120px 0;
	}

	.ak-network {
		padding: 120px 0;
	}

	.ak-cta-banner {
		padding: 120px 0 100px;
	}

	.ak-footer {
		padding: 100px 0 48px;
	}

	.ak-faq {
		padding: 120px 0;
	}

	.ak-services__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 28px;
		margin-top: 48px;
	}

	.ak-vp-grid {
		gap: 24px;
		margin-top: 48px;
	}

	.ak-hero__title {
		font-size: 4rem;
	}

	.ak-hero__subtitle {
		font-size: 1.125rem;
		font-weight: bold;
	}

	.ak-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

/* --------------------------------------------------------------------------
   17. RESPONSIVE — LARGE DESKTOP (1200px+)
   -------------------------------------------------------------------------- */
@media (min-width: 1200px) {
	.ak-hero__title {
		font-size: 4.5rem;
		max-width: 600px;
		line-height: 5.6rem;
	}
}

/* --------------------------------------------------------------------------
   18. ADMIN BAR MOBILE
   -------------------------------------------------------------------------- */
@media (max-width: 782px) {
	body.admin-bar .ak-header {
		top: 46px;
	}
}

/* --------------------------------------------------------------------------
   19. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.ak-btn,
	.ak-card,
	.ak-vp-card,
	.ak-header,
	.ak-modal,
	.ak-modal__panel,
	.ak-reveal {
		transition: none !important;
	}

	.ak-card:hover .ak-card__image {
		transform: none;
	}
}

/* --------------------------------------------------------------------------
   20. PRINT
   -------------------------------------------------------------------------- */
@media print {
	.ak-header,
	.ak-hero__actions,
	.ak-cta-banner__actions,
	.ak-card__link,
	.ak-modal {
		display: none !important;
	}

	.ak-hero {
		min-height: auto;
		padding: 40px 20px;
	}

	.ak-card,
	.ak-vp-card {
		box-shadow: none;
		border: 1px solid #ddd;
	}
}
