@import url("./tokens.css");
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,900&display=swap");

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: var(--text-regular);
	line-height: 1.35;
	background: var(--color-bg);
	color: var(--color-text);
}

* {
	box-sizing: border-box;
}

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

.den-container {
	width: min(var(--container), calc(100% - 40px));
	margin: 0 auto;
}

/* Header */
.den-header {
	position: sticky;
	top: var(--den-topbar-offset, 0px);
	z-index: 55;
	background: #ffffff;
	backdrop-filter: none;
	border-bottom: 1px solid #e7e7e7;
	transition: top 220ms var(--easing);
}

.den-topbar {
	position: sticky;
	top: 0;
	z-index: 65;
	background: #111111;
	overflow: hidden;
	max-height: 40px;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	transition: none;
}

.den-topbar.is-visible {
	max-height: 40px;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.den-topbar__inner {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.den-topbar__left {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.65px;
	white-space: nowrap;
}

.den-topbar__dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--color-yellow);
}

.den-topbar__links {
	display: flex;
	align-items: center;
	gap: 26px;
	white-space: nowrap;
}

.den-topbar__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.65px;
	transition: color 160ms var(--easing);
}

.den-topbar__icon {
	width: 16px;
	height: 16px;
}

.den-topbar__link:hover,
.den-topbar__link:focus-visible {
	color: var(--color-yellow);
	outline: none;
}

@media (max-width: 700px) {
	.den-topbar__left {
		display: none;
	}

	.den-topbar__links {
		gap: 18px;
	}
}

.den-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: auto;
	padding: 24px 0px;
}

.den-header__logo {
	display: inline-flex;
	align-items: center;
}

.den-header__logo img {
	width: auto;
	height: 50px;
}

.den-header__nav {
	display: flex;
	align-items: center;
	gap: 34px;
	justify-content: center;
	flex: 1 1 auto;
	padding: 0 10px;
}

.den-header__navlink {
	text-decoration: none;
	color: #000000;
	font-size: 16px;
	font-weight: 400;
	line-height: 19.2px;
	font-family: var(--font-sans);
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 999px;
	transition: color 180ms var(--easing), transform 180ms var(--easing);
}

.den-header__navlink::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 999px;
	background: rgba(235, 67, 53, 0.08);
	opacity: 0;
	transform: scale(0.96);
	transition: opacity 180ms var(--easing), transform 220ms var(--easing), background-color 180ms var(--easing);
	z-index: -1;
}

.den-header__navlink::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 2px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--color-yellow), rgba(242, 183, 5, 0));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 220ms var(--easing);
}

.den-header__navlink:hover,
.den-header__navlink:focus-visible {
	color: var(--color-primary);
	transform: translateY(-1px);
}

.den-header__navlink:hover::before,
.den-header__navlink:focus-visible::before {
	opacity: 1;
	transform: scale(1);
	background: rgba(242, 183, 5, 0.14);
}

.den-header__navlink:hover::after,
.den-header__navlink:focus-visible::after {
	transform: scaleX(1);
}

.den-header__cta {
	width: 194px;
	height: 52px;
	border-radius: 10px;
	background: var(--color-primary);
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	font-family: var(--font-sans);
	text-transform: uppercase;
	letter-spacing: 0.4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border: none;
	position: relative;
	overflow: hidden;
	transition: transform 200ms var(--easing), box-shadow 200ms var(--easing), background-color 200ms var(--easing);
}

/* Shimmer sweep on hover */
.den-header__cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
	transform: translateX(-100%);
	transition: transform 420ms var(--easing);
}

.den-header__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(235, 67, 53, 0.32), 0 2px 8px rgba(235, 67, 53, 0.16);
	background: #d93a2e;
}

.den-header__cta:hover::before {
	transform: translateX(100%);
}

.den-header__cta:active {
	transform: translateY(0);
	box-shadow: 0 4px 12px rgba(235, 67, 53, 0.2);
}

.den-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--color-text);
}

.den-header .den-brand {
	color: #ffffff;
}

.den-header .den-brand__name {
	color: #ffffff;
}

.den-brand__mark {
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
	color: #111;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
}

.den-brand__name {
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 0.02em;
}

/* Buttons */
.den-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 800;
	text-decoration: none;
	border-radius: var(--radius-sm);
	padding: 12px 18px;
	transition: transform 180ms var(--easing), background-color 180ms var(--easing), border-color 180ms var(--easing),
		color 180ms var(--easing), box-shadow 180ms var(--easing);
	user-select: none;
}

.den-btn--sm {
	padding: 10px 16px;
	font-size: 14px;
	border-radius: 14px;
}

.den-btn--primary {
	background: var(--color-primary);
	color: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 16px 40px rgba(235, 67, 53, 0.2);
}

.den-btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 20px 56px rgba(235, 67, 53, 0.28);
}

.den-btn--ghost {
	background: var(--color-ghost);
	border: 1px solid var(--color-border);
	color: var(--color-text);
}

.den-header .den-btn--ghost {
	background: #000000;
	border-color: rgba(255, 255, 255, 0.15);
	color: #ffffff;
}

.den-header .den-btn--ghost:hover {
	background: rgba(0, 0, 0, 0.9);
	border-color: rgba(255, 255, 255, 0.25);
}

.den-btn--ghost:hover {
	transform: translateY(-1px);
	background: rgba(244, 245, 247, 0.16);
	border-color: rgba(244, 245, 247, 0.24);
}

/* Hero */
.den-hero {
	padding: 44px 0 42px;
}

#hero.den-hero {
	padding: 24px 24px 80px 24px;
	overflow: hidden;
}

.den-hero__inner {
	display: block;
}

@media (min-width: 901px) {
	/* Desktop fit: keep hero content inside viewport. */
	#hero.den-hero {
		padding: 24px 24px 80px 24px;
		overflow: hidden;
	}

	.den-hero__inner {
		max-height: var(--den-hero-max-height, calc(100vh - 92px));
		height: var(--den-hero-max-height, calc(100vh - 92px));
		display: flex;
		flex-direction: column;
		overflow: hidden;
	}

	.den-hero__topGrid {
		flex: 1 1 auto;
		height: auto;
	}

	.den-hero__rightCard,
	.den-hero__leftCard {
		height: auto !important;
	}

	.den-hero__rightCard {
		height: auto !important;
	}

	.den-hero__bottomGrid {
		flex: 0 0 248px;
		margin-top: 0 !important;
	}

	.den-hero__serviceCard,
	.den-hero__yrsCard {
		height: auto;
	}
}

.den-anim {
	opacity: 0;
	transform: translate3d(0, 18px, 0);
	transition: opacity 720ms var(--easing), transform 820ms var(--easing);
	transition-delay: var(--anim-delay, 0ms);
	will-change: opacity, transform;
}

.den-anim.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

html {
	scroll-behavior: smooth;
}

:where(section[id], article[id], div[id]) {
	scroll-margin-top: calc(var(--den-topbar-offset, 0px) + 112px);
}

.den-hero__inner {
	position: relative;
	gap: 24px;
}

.den-hero__topGrid,
.den-hero__bottomGrid {
	position: relative;
	z-index: 1;
}

.den-hero__grid {
	display: grid;
	grid-template-columns: 1fr 546px;
	gap: 34px;
	align-items: start;
}

.den-kicker {
	font-size: 14px;
	font-weight: 900;
	color: var(--color-muted);
	letter-spacing: 0.08em;
}

.den-hero__title {
	margin: 14px 0 0;
	font-size: var(--h1);
	line-height: 1.0;
	letter-spacing: -0.02em;
}

.den-hero__subtitle {
	margin: 14px 0 0;
	color: var(--color-muted);
	max-width: 560px;
}

.den-hero__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--color-text);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.65px;
	margin-top: 4px;
}

.den-hero__meta-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--color-yellow);
	display: inline-block;
}

.den-hero__headline {
	margin: 18px 0 0;
	line-height: 1;
}

.den-hero__headline-line {
	display: block;
	font-size: 96px;
	font-weight: 900;
	letter-spacing: -4.8px;
	font-style: italic;
	color: #000000;
}

.den-hero__headline-line--accent {
	color: var(--color-primary);
}

.den-hero__services {
	margin-top: 26px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 18px;
	max-width: 520px;
}

.den-service {
	display: flex;
	align-items: center;
	gap: 14px;
}

.den-service__icon {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex: 0 0 auto;
}

.den-service__icon img {
	width: 20px;
	height: 20px;
}

.den-service__num {
	position: absolute;
	bottom: -4px;
	right: -6px;
	font-size: 12px;
	font-weight: 900;
	color: #000000;
}

.den-service__icon--yellow {
	background: var(--color-yellow);
}
.den-service__icon--blue {
	background: #2d5da1;
}
.den-service__icon--white {
	background: #ffffff;
}
.den-service__icon--red {
	background: var(--color-primary);
}

.den-hero__right {
	display: flex;
}

.den-hero__ctaRow {
	display: flex;
	gap: 12px;
	gap: 12px;
	margin-top: 22px;
	align-items: stretch;
	max-width: 520px;
}

.den-hero__ctaFree {
	min-height: 72px;
	border-radius: 10px;
	width: 187.75px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--color-yellow);
	color: #000000;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.45px;
}

.den-hero__ctaYellow {
	/* marker class; all actual styles are in .den-hero__ctaFree */
}

.den-hero__ctaQuote {
	min-height: 72px;
	background: #000000;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	color: #ffffff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 0 18px;
	width: 214.2265625px;
	transition: transform 180ms var(--easing), box-shadow 180ms var(--easing);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.den-hero__ctaQuote:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.den-hero__ctaQuoteIcon {
	width: 24px;
	height: 24px;
}

.den-hero__ctaQuoteText {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.den-hero__ctaQuoteLabel {
	font-size: 11px;
	font-weight: 700;
	color: #99a1af;
	letter-spacing: 0.55px;
	line-height: 1.2;
}

.den-hero__ctaQuotePhone {
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
	color: #ffffff;
}

.den-hero-card {
	width: 100%;
	border-radius: 32px;
	background: #111111;
	overflow: hidden;
	position: relative;
}

.den-hero-card__media {
	position: relative;
	width: 100%;
	height: 654px;
}

.den-hero-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.den-hero-card__media-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}

.den-hero-card__quote {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 460px;
	max-width: calc(100% - 30px);
	padding-bottom: 26px;
}

/* ===== Updated Hero (Figma node 134:1090) ===== */
.den-hero__topGrid {
	display: grid;
	grid-template-columns: 1fr 546px;
	gap: 24px;
	/* Make left/right cards the same height. */
	align-items: stretch;
}

.den-hero__leftCard {
	background: #ffffff;
	border-radius: 32px;
	padding: 40px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: auto;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	position: relative;
}

.den-hero__leftCard .den-hero__fromChip,
.den-hero__leftCard .den-hero__headingBlock,
.den-hero__leftCard .den-hero__ctaRow,
.den-hero__rightCard .den-hero__rightMedia,
.den-hero__rightCard .den-hero__quoteCard {
	opacity: 0;
	transform: translate3d(0, 16px, 0);
	transition: opacity 700ms var(--easing), transform 860ms var(--easing);
}

.den-hero__leftCard.is-visible .den-hero__fromChip,
.den-hero__leftCard.is-visible .den-hero__headingBlock,
.den-hero__leftCard.is-visible .den-hero__ctaRow,
.den-hero__rightCard.is-visible .den-hero__rightMedia,
.den-hero__rightCard.is-visible .den-hero__quoteCard {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.den-hero__leftCard .den-hero__fromChip {
	transition-delay: 90ms;
}

.den-hero__leftCard .den-hero__headingBlock {
	transition-delay: 170ms;
}

.den-hero__leftCard .den-hero__ctaRow {
	transition-delay: 260ms;
}

.den-hero__rightCard .den-hero__rightMedia {
	transition-delay: 110ms;
}

.den-hero__rightCard .den-hero__quoteCard {
	transition-delay: 230ms;
}

.den-hero__leftSphere {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 999px;
	z-index: 0;
	pointer-events: none;
	filter: blur(48px);
	transition: transform 420ms var(--easing), opacity 420ms var(--easing), filter 420ms var(--easing), background-color 420ms var(--easing);
}

.den-hero__leftSphere--red {
	background: rgb(235 67 53 / 18%);
	top: -160px;
	left: -140px;
	right: auto;
}

.den-hero__leftSphere--yellow {
	background: rgba(242, 183, 5, 0.15); /* F2B705 @ 15% */
	bottom: -180px;
	left: auto;
	right: -140px;
}

.den-hero__leftCard.is-visible .den-hero__leftSphere--red {
	animation: denHeroSphereFloatRed 8.5s ease-in-out infinite;
}

.den-hero__leftCard.is-visible .den-hero__leftSphere--yellow {
	animation: denHeroSphereFloatYellow 10.5s ease-in-out infinite;
}

.den-hero__leftCard:hover .den-hero__leftSphere--red,
.den-hero__leftCard:focus-within .den-hero__leftSphere--red {
	transform: translate3d(14px, 12px, 0) scale(1.04);
	background: rgb(235 67 53 / 24%);
	filter: blur(52px);
}

.den-hero__leftCard:hover .den-hero__leftSphere--yellow,
.den-hero__leftCard:focus-within .den-hero__leftSphere--yellow {
	transform: translate3d(-16px, -14px, 0) scale(1.05);
	background: rgba(242, 183, 5, 0.22);
	filter: blur(54px);
}

@keyframes denHeroSphereFloatRed {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(8px, 10px, 0) scale(1.02);
	}
}

@keyframes denHeroSphereFloatYellow {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(-10px, -8px, 0) scale(1.025);
	}
}

.den-hero__fromChip,
.den-hero__heading,
.den-hero__subtitle,
.den-hero__ctaRow {
	position: relative;
	z-index: 1;
}

.den-hero__fromChip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.96);
	border-radius: 999px;
	padding: 0 21px 0 16px;
	height: 46px;
	border: 1px solid #dfe2e7;
	text-decoration: none;
	color: inherit;
	transition: transform 180ms var(--easing), box-shadow 180ms var(--easing), border-color 180ms var(--easing),
		background-color 180ms var(--easing);
}

.den-hero__fromChip:hover,
.den-hero__fromChip:focus-visible {
	transform: translate3d(3px, -2px, 0);
	border-color: var(--color-yellow);
	background: #ffffff;
	box-shadow: 0 16px 34px rgba(242, 183, 5, 0.1);
	outline: none;
}

.den-hero__fromChipLabel {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	color: #000000;
	text-transform: uppercase;
}

.den-hero__fromChipLogo {
	height: 32px;
	width: auto;
}

.den-hero__heading {
	margin: 0;
	line-height: 1;
}

.den-hero__headingBlock {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.den-hero__headingLine {
	display: block;
	font-style: italic;
	font-weight: 900;
	font-size: 88px;
	letter-spacing: -4.2px;
	line-height: 74px;
	text-transform: uppercase;
	font-family: "Figtree", sans-serif;
}

.den-hero__headingLine--top {
	color: #000000;
}

.den-hero__headingLine--bottom {
	color: var(--color-primary);
}

.den-hero__leftCard .den-hero__subtitle {
	margin: 0;
	color: var(--color-muted);
	max-width: 520px;
	font-size: 18px;
	line-height: 29px;
}

.den-hero__ctaRow {
	display: flex;
	gap: 16px;
	margin-top: 18px;
	flex-wrap: wrap;
}

.den-hero__leftCard .den-hero__ctaRow {
	margin-top: 0;
}

.den-hero__cta {
	height: 64px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.45px;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	transition: transform 200ms var(--easing), box-shadow 200ms var(--easing), background-color 200ms var(--easing);
}

.den-hero__cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
	transform: translateX(-100%);
	transition: transform 440ms var(--easing);
}

.den-hero__cta:hover::before {
	transform: translateX(100%);
}

.den-hero__cta:active {
	transform: scale(0.97);
}

.den-hero__cta--yellow {
	width: 172px;
	background: var(--color-yellow);
	color: #000000;
}

.den-hero__cta--yellow:hover {
	transform: translateY(-2px);
	background: #e5ac00;
	box-shadow: 0 12px 32px rgba(242, 183, 5, 0.4), 0 2px 8px rgba(242, 183, 5, 0.2);
}

.den-hero__cta--phone {
	width: auto;
	flex: 0 0 auto;
	background: #000000;
	color: #ffffff;
	gap: 10px;
	padding: 0 24px;
	justify-content: flex-start;
	white-space: nowrap;
}

.den-hero__cta--phone:hover {
	transform: translateY(-2px);
	background: #1a1a1a;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.14);
}

.den-hero__cta--phone:hover .den-hero__ctaPhoneIcon {
	transform: rotate(-12deg) scale(1.15);
	transition: transform 220ms var(--easing);
}

.den-hero__ctaPhoneIcon {
	width: 22px;
	height: 22px;
	transition: transform 220ms var(--easing);
}

.den-hero__ctaPhoneText {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.den-hero__ctaPhoneLabel {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.45px;
	color: #99a1af;
	line-height: 12px;
	text-transform: uppercase;
}

.den-hero__ctaPhoneNumber {
	font-size: 15px;
	font-weight: 900;
	line-height: 18px;
	color: #ffffff;
	white-space: nowrap;
}

.den-hero__rightCard {
	border-radius: 32px;
	background: #111111;
	overflow: hidden;
	position: relative;
	height: auto;
	/* Creates the inset space for the form (instead of absolute positioning). */
	padding: 36px;
}

.den-hero__rightMedia {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.den-hero__rightImg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.den-hero__rightGradient {
	position: absolute;
	inset: 0;
	/* Figma DC-Match 646-2020: bg-gradient-to-t
	   from rgba(0,0,0,0.95) -> via rgba(0,0,0,0.5) -> to rgba(0,0,0,0.3) */
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.95) 0%,
		rgba(0, 0, 0, 0.5) 50%,
		rgba(0, 0, 0, 0.3) 100%
	);
	transform: scale(1);
	transform-origin: center;
	transition: transform 320ms var(--easing);
	z-index: 0;
}

.den-hero__rightGradient:hover {
	transform: scale(1.08);
}

.den-hero__rightCard:hover .den-hero__rightGradient {
	transform: scale(1.08);
}

.den-hero__quoteCard {
	position: relative;
	z-index: 1;
	width: 100%;
}

.den-hero__quoteCard .den-quote-form {
	border-top: 6px solid var(--color-primary);
}

.den-hero__bottomGrid {
	margin-top: 24px;
	display: grid;
	/* Figma: black card 40%, yellow card 60% */
	grid-template-columns: 2fr 3fr;
	gap: 24px;
	align-items: stretch;
}

.den-hero__serviceCard {
	border-radius: 32px;
	background: linear-gradient(180deg, #0f1115 0%, #121212 100%);
	padding: 20px 24px;
	display: grid;
	gap: 14px;
	position: relative;
	overflow: hidden;
	transition: box-shadow 240ms var(--easing), transform 240ms var(--easing);
}

.den-hero__serviceCard::before {
	content: "";
	position: absolute;
	width: 256px;
	height: 256px;
	border-radius: 16777200px;
	opacity: 0.2;
	background: #2d5da1;
	filter: blur(60px);
	top: -96px;
	right: -76px;
	pointer-events: none;
}

.den-hero__serviceCard > * {
	position: relative;
	z-index: 1;
}

.den-hero__serviceCard:hover {
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
	transform: translateY(-2px);
}

.den-hero__serviceItem {
	display: flex;
	align-items: center;
	gap: 18px;
	transition: transform 200ms var(--easing);
}

.den-hero__serviceItem:hover {
	transform: translateX(4px);
}

.den-hero__serviceItem:hover .den-hero__serviceNumImg {
	transform: scale(1.12) rotate(8deg);
}

.den-hero__serviceNumImg {
	position: absolute;
	inset: 0;
	width: 40px;
	height: 40px;
	object-fit: contain;
	pointer-events: none;
	z-index: 0;
	transition: transform 220ms var(--easing);
}

.den-hero__serviceTitle {
	display: inline-block;
}

.den-hero__serviceNum {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 900;
	color: #000000;
	flex: 0 0 auto;
	position: relative;
	overflow: hidden;
}


.den-hero__serviceNum--1 {
	background: transparent;
}
.den-hero__serviceNum--2 {
	background: transparent;
}
.den-hero__serviceNum--8 {
	background: transparent;
}
.den-hero__serviceNum--6 {
	background: transparent;
}

/* Digits are inside sphere SVGs. */

.den-hero__serviceTitle {
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
}

.den-hero__yrsCard {
	border-radius: 32px;
	background: var(--color-yellow);
	padding: 28px 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
	transition: transform 240ms var(--easing), box-shadow 240ms var(--easing);
	cursor: default;
}

.den-hero__yrsCard:hover {
	transform: translateY(-2px) scale(1.005);
	box-shadow: 0 20px 50px rgba(242, 183, 5, 0.3);
}

.den-hero__yrsCard:hover .den-hero__yrsBig {
	letter-spacing: -2px;
	transition: letter-spacing 300ms var(--easing);
}

.den-hero__yrsBig {
	font-size: 72px;
	font-weight: 900;
	letter-spacing: -3.4px;
	line-height: 58px;
	color: #000000;
}

.den-hero__yrsSmall {
	margin-top: 8px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.55px;
	line-height: 29px;
	text-transform: uppercase;
	color: #000000;
}

.den-hero__yrsStar {
	position: absolute;
	top: -70px;
	right: -20px;
	width: 320px;
	height: auto;
	opacity: 0.75;
	pointer-events: none;
}

.den-hero__yrsCheck {
	position: absolute;
	top: 100px;
	right: 100px;
	width: 96px;
	height: 96px;
	background: #ffffff;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.den-hero__yrsCheckIcon {
	width: 48px;
	height: 48px;
}

.den-hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 22px;
}

/* Quote form */
.den-quote-form {
	background: #ffffff;
	border-radius: 24px;
	padding: 28px 28px 22px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(0, 0, 0, 0.06);
	position: relative;
	display: flex;
	flex-direction: column;
	height: auto;
}

.den-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	overflow: hidden;
}

.den-quote-form__title {
	margin: 0 0 12px;
	font-size: 28px;
	line-height: 1.05;
	font-weight: 600;
	color: #000000;
	text-align: center;
}

.den-grid--form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	align-content: start;
	height: auto;
}

.den-field__label {
	display: block;
	font-size: 14px;
	color: var(--color-muted);
	font-weight: 400;
	margin-bottom: 8px;
}

.den-field__input {
	width: 100%;
	background: #f4f4f4;
	border: 1px solid #f4f4f4;
	border-radius: 8px;
	padding: 12px 14px;
	color: #121212;
	font-size: 14px;
	outline: none;
	/* Ensure placeholder/value doesn't wrap onto 2 lines. */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.den-field__input::placeholder {
	color: #6a7282;
	opacity: 1;
}

.den-field__select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 14px 9px;
	padding-right: 40px;
}

.den-field__select option {
	background: #3f4045;
	color: #ffffff;
}

.den-field__input:focus {
	border-color: rgba(235, 67, 53, 0.55);
	box-shadow: 0 0 0 4px rgba(235, 67, 53, 0.14);
}

.den-field--full .den-field__input {
	resize: vertical;
	min-height: 56px;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
	text-overflow: clip;
}

.den-quote-form__submit {
	width: 100%;
	grid-column: 1 / -1 !important;
	margin-top: 4px;
	height: 54px;
	border-radius: 10px;
	background: #000000 !important;
	border: none !important;
	color: #ffffff !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	white-space: nowrap;
	text-align: center;
	justify-self: stretch;
	align-self: stretch;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: transform 200ms var(--easing), box-shadow 200ms var(--easing), background-color 200ms var(--easing) !important;
}

.den-quote-form__submit::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
	transform: translateX(-100%);
	transition: transform 460ms var(--easing);
}

.den-quote-form__submit:hover {
	transform: translateY(-2px) !important;
	background: #1a1a1a !important;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22) !important;
}

.den-quote-form__submit:hover::before {
	transform: translateX(100%);
}

.den-quote-form__submit:hover .den-quote-form__submitIcon {
	transform: translateX(4px);
}

.den-quote-form__submit:active {
	transform: scale(0.98) !important;
}

.den-quote-form__submitIcon {
	width: 18px;
	height: 18px;
	transition: transform 220ms var(--easing);
}

.den-quote-form__submitText {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	white-space: nowrap;
}

.den-quote-form__submitIcon {
	width: 18px;
	height: 18px;
}

.den-field--half,
.den-field--span-2,
.den-field--full {
	grid-column: 1 / -1;
}

@media (min-width: 640px) {
	.den-grid--form {
		grid-template-columns: 1fr 1fr;
	}

	.den-field--half {
		grid-column: auto;
	}

	.den-field--span-2,
	.den-field--full {
		grid-column: 1 / -1;
	}
}

.den-alert {
	border-radius: var(--radius-md);
	padding: 12px 14px;
	margin-bottom: 14px;
	border: 1px solid var(--color-border);
}

.den-alert--success {
	background: rgba(46, 204, 113, 0.14);
	border-color: rgba(46, 204, 113, 0.35);
}

.den-alert--warning {
	background: rgba(241, 196, 15, 0.14);
	border-color: rgba(241, 196, 15, 0.35);
}

.den-alert--error {
	background: rgba(235, 67, 53, 0.12);
	border-color: rgba(235, 67, 53, 0.3);
}

/* Sections */
.den-section {
	padding: 44px 0;
}


/* Footer */
.den-footer {
	background: #000000;
	padding: 80px 24px 0;
}

.den-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 48px;
}

.den-footer__brandCol,
.den-footer__col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.den-footer__brandCol {
	gap: 24px;
}

.den-footer__logo img {
	display: block;
	width: 240px;
	height: auto;
}

.den-footer__about {
	margin: 0;
	max-width: 254px;
	font-size: 14px;
	line-height: 22.75px;
	font-weight: 400;
	color: #99a1af;
}

.den-footer__socials {
	display: flex;
	align-items: center;
	gap: 14px;
}

.den-footer__socialLink {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	border: 1px solid #232323;
	background: #101010;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform 180ms var(--easing), border-color 180ms var(--easing), background-color 180ms var(--easing);
}

.den-footer__socialLink:hover {
	transform: translateY(-1px);
	border-color: rgba(242, 183, 5, 0.45);
	background: #161616;
}

.den-footer__socialIcon {
	display: block;
}

.den-footer__socialIcon--instagram {
	width: 18px;
	height: 18px;
}

.den-footer__socialIcon--star {
	width: 15px;
	height: 15px;
}

.den-footer__socialIcon--mail {
	width: 16px;
	height: 16px;
}

.den-footer__heading {
	margin: 0 0 24px;
	font-size: 18px;
	line-height: 27px;
	font-weight: 600;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	color: #ffffff;
}

.den-footer__list,
.den-footer__contactList {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.den-footer__list {
	gap: 12px;
}

.den-footer__contactList {
	gap: 16px;
}

.den-footer__item,
.den-footer__contactItem {
	font-size: 15px;
	line-height: 22.5px;
	font-weight: 400;
	color: #99a1af;
}

.den-footer__link,
.den-footer__contactText {
	color: #99a1af;
	text-decoration: none;
}

.den-footer__link {
	transition: color 180ms var(--easing);
}

.den-footer__link:hover,
.den-footer__legalLink:hover {
	color: #ffffff;
}

.den-footer__contactItem {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.den-footer__contactIcon {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	margin-top: 2px;
}

.den-footer__bottom {
	margin-top: 48px;
	padding: 17px 0 18px;
	border-top: 1px solid #1e2939;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.den-footer__copyright,
.den-footer__legalLink {
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
	color: #6a7282;
	text-decoration: none;
	margin: 0;
}

.den-footer__legal {
	display: flex;
	align-items: center;
	gap: 24px;
}

@media (max-width: 1100px) {
	.den-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.den-footer {
		padding: 64px 24px 0;
	}

	.den-footer__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.den-footer__about {
		max-width: 100%;
	}

	.den-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.den-footer__legal {
		flex-wrap: wrap;
		gap: 14px 20px;
	}
}

/* Mobile */
@media (max-width: 900px) {
	.den-container {
		width: min(var(--container), calc(100% - 32px));
	}

	.den-header__nav {
		display: none;
	}

	.den-header__inner {
		padding: 16px 0px;
		height: auto;
	}

	.den-hero {
		padding: 24px 0 16px;
	}

	.den-hero__topGrid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.den-hero__leftCard {
		padding: 24px;
		min-height: 440px;
		border-radius: 24px;
	}

	.den-hero__headingBlock {
		gap: 16px;
	}

	.den-hero__headingLine {
		font-size: 48px;
		letter-spacing: -2.4px;
		line-height: 40px;
	}

	.den-hero__leftCard .den-hero__subtitle {
		font-size: 16px;
		line-height: 26px;
		max-width: 309px;
	}

	.den-hero__ctaRow {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.den-hero__cta--yellow,
	.den-hero__cta--phone {
		width: 100%;
		height: 60px;
		border-radius: 12px;
	}

	.den-hero__rightCard {
		height: auto;
		min-height: 638px;
		padding: 24px;
		border-radius: 24px;
	}

	.den-hero__quoteCard {
		width: auto;
	}

	.den-hero__quoteCard .den-quote-form {
		padding: 40px 40px 34px;
		border-radius: 15px;
	}

	.den-hero__quoteCard .den-quote-form__title {
		font-size: 32px;
		line-height: 38.4px;
		letter-spacing: -0.8px;
		margin-bottom: 24px;
	}

	.den-hero__quoteCard .den-grid--form {
		gap: 12px;
	}

	.den-hero__quoteCard .den-field__input {
		height: 49px;
	}

	.den-hero__quoteCard .den-field--full .den-field__input {
		height: 49px;
		min-height: 49px;
	}

	.den-hero__quoteCard .den-quote-form__submit {
		height: 58.5px;
		border-radius: 8px;
		margin-top: 20px;
	}

	.den-hero__bottomGrid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.den-hero__serviceCard,
	.den-hero__yrsCard {
		border-radius: 24px;
	}

	.den-gallery {
		padding: 56px 0 56px;
	}

	.den-premium {
		padding: 56px 0;
	}

	.den-process {
		padding: 56px 0;
	}

	.den-reviews {
		padding: 56px 0;
	}

	.den-faq {
		padding: 56px 0 72px;
	}

}

/* =============================================
   GALLERY SECTION
   ============================================= */

.den-gallery {
	background: #111111;
	padding: 88px 24px 88px;
}

.den-gallery__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
}

.den-gallery__heading {
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin: 0 0 12px;
	display: flex;
	gap: 12px;
}

.den-gallery__heading-our {
	color: #ffffff;
}

.den-gallery__heading-work {
	color: var(--color-yellow);
}

.den-gallery__sub {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
	font-weight: 400;
}

.den-gallery__view-all {
	text-decoration: none;
	position: relative;
	display: block;
	width: 149px;
	height: 22px;
	padding: 0;
	border-bottom: 2px solid var(--color-primary);
	white-space: nowrap;
	transition: border-color 220ms var(--easing);
}

.den-gallery__view-allLabel {
	position: absolute;
	top: 0;
	left: 74.5px;
	transform: translateX(-50%);
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	color: #ffffff;
	text-align: center;
}

.den-gallery__view-all:hover .den-gallery__view-allLabel {
	color: var(--color-yellow);
}

/* Gallery layout: left single photo + right two flex rows */
.den-gallery__layout {
	display: flex;
	flex-direction: row;
	gap: 24px;
	min-height: 460px;
}

.den-gallery__col {
	min-width: 0;
}

.den-gallery__col--left {
	flex: 0 0 42%;
}

.den-gallery__col--right {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.den-gallery__row {
	display: flex;
	flex: 1 1 0;
	gap: 24px;
	min-height: 0;
}

.den-gallery__item {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	background: #1a1a1a;
	min-height: 0;
	flex: 1 1 auto;
}

.den-gallery__item--large {
	height: 100%;
}

.den-gallery__item--40 {
	flex: 0 0 calc(40% - 12px);
}

.den-gallery__item--60 {
	flex: 0 0 calc(60% - 12px);
}

.den-gallery__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 480ms var(--easing);
}

.den-gallery__item:hover .den-gallery__img {
	transform: scale(1.04);
}

/* Mobile: stack to 2-col */
@media (max-width: 768px) {
	.den-gallery {
		padding: 56px 0 64px;
	}

	.den-gallery__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin-bottom: 28px;
	}

	.den-gallery__layout {
		flex-direction: column;
		min-height: unset;
	}

	.den-gallery__col--left,
	.den-gallery__col--right,
	.den-gallery__row,
	.den-gallery__item--40,
	.den-gallery__item--60 {
		flex: 1 1 auto;
	}

	.den-gallery__row {
		flex-direction: column;
	}

	.den-gallery__item--large {
		aspect-ratio: 16 / 9;
	}

	.den-gallery__item--sm {
		aspect-ratio: 4 / 3;
	}
}

/* =============================================
   PREMIUM SERVICES SECTION
   ============================================= */

.den-premium {
	background: #ffffff;
	padding: 88px 24px;
}

.den-premium__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 44px;
}

.den-premium__title {
	margin: 0;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: -2.8px;
	line-height: 1;
	display: flex;
	flex-direction: column;
}

.den-premium__titleTop {
	color: #000000;
	font-size: 56px;
	line-height: 50px;
}

.den-premium__titleBottom {
	color: var(--color-primary);
	font-size: 56px;
	line-height: 50px;
}

.den-premium__sub {
	margin: 8px 0 0;
	font-size: 18px;
	line-height: 27px;
	color: var(--color-muted);
	max-width: 385px;
	text-align: right;
	font-weight: 400;
}

.den-premium__main {
	display: flex;
	gap: 24px;
}

.den-premium__movingCard {
	flex: 0 0 738px;
	height: 500px;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	background: #111111;
	display: block;
	text-decoration: none;
	transition: transform 260ms var(--easing), box-shadow 260ms var(--easing);
}

.den-premium__movingBg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	z-index: 0;
	transition: transform 360ms var(--easing);
}

.den-premium__movingCard::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.65) 90%);
}

.den-premium__movingCard:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.den-premium__movingCard:hover .den-premium__movingBg {
	transform: scale(1.045);
}

.den-premium__movingIcon {
	position: absolute;
	top: 40px;
	left: 40px;
	z-index: 3;
	width: 64px;
	height: 64px;
	border-radius: 999px;
	background: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 220ms var(--easing);
}

.den-premium__movingCard:hover .den-premium__movingIcon {
	transform: translateY(-2px) scale(1.04);
}

.den-premium__movingIconImg {
	width: 32px;
	height: 32px;
}

.den-premium__movingText {
	position: absolute;
	left: 40px;
	bottom: 40px;
	z-index: 3;
	max-width: 493px;
}

.den-premium__movingHeading {
	font-size: 36px;
	line-height: 45px;
	font-weight: 900;
	color: #ffffff;
}

.den-premium__movingDesc {
	margin-top: 12px;
	font-size: 16px;
	line-height: 26px;
	color: #d1d5dc;
	font-weight: 500;
}

.den-premium__rightCol {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

.den-premium__card {
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	transition: transform 240ms var(--easing), box-shadow 240ms var(--easing);
}

.den-premium__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
}

/* Assembly card (absolute placement to match Figma) */
.den-premium__card--assembly {
	background: #f4f4f4;
	height: 240px;
}

.den-premium__card--assembly::after {
	content: "";
	position: absolute;
	top: -18px;
	right: -18px;
	width: 64px;
	height: 64px;
	border-radius: 999px;
	background: rgba(242, 183, 5, 0.25);
}

.den-premium__card--assembly .den-premium__cardIconCircle {
	position: absolute;
	top: 68px;
	left: 32px;
	width: 48px;
	height: 48px;
	background: #ffffff;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
	transition: transform 220ms var(--easing);
}

.den-premium__card:hover .den-premium__cardIconCircle {
	transform: scale(1.06);
}

.den-premium__card--assembly .den-premium__cardIconImg {
	width: 24px;
	height: 24px;
	/* Use original stroke color (wrench svg is already dark). */
	filter: none;
}

.den-premium__card--assembly .den-premium__cardHeading {
	position: absolute;
	top: 66px;
	left: 104px;
	font-size: 24px;
	line-height: 36px;
	font-weight: 900;
	color: #000000;
}

.den-premium__card--assembly .den-premium__cardDesc {
	position: absolute;
	top: 128px;
	left: 32px;
	right: 32px;
	font-size: 15px;
	line-height: 22.5px;
	color: #4a5565;
	font-weight: 500;
}

.den-premium__bottomRow {
	display: flex;
	gap: 24px;
	height: 240px;
}

.den-premium__card--refelt {
	flex: 0 0 calc(60% - 12px);
	background: #f2b705;
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
}

.den-premium__cardTopLine {
	display: flex;
	gap: 16px;
	align-items: center;
}

.den-premium__cardIconImg--scissors {
	width: 28px;
	height: 28px;
}

.den-premium__cardHeading--refelt {
	font-size: 22px;
	line-height: 22px;
	font-weight: 900;
	color: #000000;
}

.den-premium__cardDesc--refelt {
	font-size: 14px;
	line-height: 21px;
	color: rgba(0, 0, 0, 0.8);
	font-weight: 500;
}

.den-premium__card--precision {
	flex: 0 0 calc(40% - 12px);
	background: var(--color-primary);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px 12px;
}

.den-premium__precisionIcon {
	width: 40px;
	height: 40px;
	margin-bottom: 12px;
	transition: transform 220ms var(--easing);
}

.den-premium__card:hover .den-premium__precisionIcon {
	transform: scale(1.06);
}

.den-premium__precisionTitle {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	text-align: center;
	font-size: 18px;
	line-height: 22px;
	font-weight: 900;
	color: #ffffff;
}

@media (max-width: 1100px) {
	.den-premium__movingCard {
		flex-basis: 58%;
	}
}

@media (max-width: 900px) {
	.den-premium {
		padding: 70px 0;
	}

	.den-premium__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin-bottom: 28px;
	}

	.den-premium__sub {
		text-align: left;
		max-width: none;
	}

	.den-premium__main {
		flex-direction: column;
	}

	.den-premium__movingCard {
		flex: 0 0 auto;
		width: 100%;
		height: 420px;
	}
}

.den-premium__card--refelt,
.den-premium__card--precision {
	/* keep consistent min-height on small viewports */
	min-height: 240px;
}

/* =============================================
   PROCESS SECTION (Figma node 660:2249)
   ============================================= */
.den-process {
	position: relative;
	background: #ffffff;
	padding: 88px 24px;
	overflow: hidden;
}

.den-process__sideBg {
	position: absolute;
	right: 0;
	top: 0;
	width: 480px;
	height: 840px;
	background: #f2f2f2;
	z-index: 0;
}

.den-process__wrap {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 80px;
}

.den-process__left {
	flex: 0 0 360px;
}

.den-process__title {
	margin: 0;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: -2.8px;
	line-height: 50px;
}

.den-process__titleLine {
	display: block;
	font-size: 56px;
}

.den-process__titleLine--top {
	color: #000000;
}

.den-process__titleLine--bottom {
	color: var(--color-primary);
}

.den-process__sub {
	margin: 18px 0 0;
	font-size: 18px;
	line-height: 27px;
	color: var(--color-muted);
	max-width: 360px;
}

.den-process__underline {
	width: 64px;
	height: 2px;
	background: var(--color-yellow);
	margin-top: 28px;
}

.den-process__right {
	flex: 0 0 800px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.den-process__card {
	position: relative;
	background: var(--color-yellow);
	border-radius: 20px;
	height: 168px;
	padding: 0;
	border: 1px solid #f3f4f6;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	transition: transform 220ms var(--easing), box-shadow 220ms var(--easing);
}

.den-process__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.den-process__numRing {
	position: absolute;
	left: 32px;
	top: 33px;
	width: 100px;
	height: 100px;
	border-radius: 999px;
	background: #f4f4f4;
	border: 6px solid #ffffff;
	box-sizing: border-box;
}

.den-process__num {
	position: absolute;
	left: 0;
	right: 0;
	top: 14px;
	text-align: center;
	font-weight: 900;
	color: var(--color-primary);
	font-size: 40px;
	line-height: 60px;
}

.den-process__iconCircle {
	position: absolute;
	left: 52px;
	top: 52px;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: #111111;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 220ms var(--easing), box-shadow 220ms var(--easing);
}

.den-process__card:hover .den-process__iconCircle {
	transform: scale(1.06);
}

.den-process__icon {
	width: 24px;
	height: 24px;
	display: block;
}

.den-process__cardText {
	position: absolute;
	left: 156px;
	top: 32px;
	right: 32px;
	width: auto;
}

.den-process__cardHeading {
	font-weight: 900;
	font-size: 28px;
	line-height: 42px;
	color: #000000;
}

.den-process__cardDesc {
	margin-top: 0;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #000000;
	word-break: normal;
	overflow-wrap: anywhere;
}

@media (max-width: 1050px) {
	.den-process__wrap {
		flex-direction: column;
		gap: 24px;
	}

	.den-process__left {
		flex: 1 1 auto;
	}

	.den-process__right {
		flex: 1 1 auto;
		width: 100%;
	}

	.den-process__sideBg {
		display: none;
	}

	.den-process__card {
		width: 100%;
	}

	.den-process__cardText {
		width: calc(100% - 156px - 32px);
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.den-btn {
		transition: none;
	}

	.den-anim {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* =============================================
   GTA COVERAGE SECTION
   ============================================= */
.den-coverage {
	position: relative;
	padding: 0;
	min-height: 420px;
	background: transparent;
	overflow: hidden;
}

.den-coverage__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.den-coverage__bgImg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* We already use the correct Figma-exported background image. */
	transform: scale(1.04);
}

.den-coverage__overlay {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, 0.85);
}

.den-coverage__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 88px 0;
}

.den-coverage__left {
	flex: 0 0 490px;
	color: #ffffff;
	height: 254px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	padding-right: 32px;
}

.den-coverage__panel {
	display: flex;
	align-items: center;
	gap: 48px;
	width: 100%;
	padding: 62px 49px;
	background: rgb(17 17 17 / 57%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.den-coverage__titleRow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.den-coverage__pin {
	width: 24px;
	height: 24px;
	filter: none;
}

.den-coverage__pinWrap {
	width: 48px;
	height: 48px;
	background: #f2b705;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.den-coverage__title {
	margin: 0;
	font-weight: 900;
	letter-spacing: -1px;
	font-family: var(--font-sans);
	font-size: 40px;
	line-height: 60px;
	color: #ffffff;
	text-transform: uppercase;
	white-space: nowrap;
}

.den-coverage__titleLine {
	font-size: 40px;
	line-height: 60px;
	color: #ffffff;
	text-transform: uppercase;
}

.den-coverage__titleLine--2 {
	color: var(--color-primary);
}

.den-coverage__sub {
	margin: 0 0 0;
	font-size: 18px;
	line-height: 29px;
	color: #d1d5dc;
	max-width: 449px;
}

.den-coverage__cta {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	width: 256.578px;
	height: 54.5px;
	border-radius: 10px;
	padding: 0;
}

.den-coverage__cta:hover {
	transform: translateY(-1px);
}

.den-coverage__right {
	flex: 1 1 auto;
	min-width: 0;
	height: 309px;
	display: flex;
	align-items: flex-start;
}

.den-coverage__city {
	position: relative;
	padding-left: 20px;
	min-height: 27px;
	transition: transform 180ms var(--easing);
}

.den-coverage__city:hover {
	transform: translateX(4px);
}

.den-coverage__dot {
	position: absolute;
	left: 0;
	top: 9.5px;
	width: 8px;
	height: 8px;
	background: #eb4335;
	border-radius: 999px;
	transition: transform 180ms var(--easing), box-shadow 180ms var(--easing);
}

.den-coverage__city:hover .den-coverage__dot {
	transform: scale(1.18);
	box-shadow: 0 0 0 6px rgba(235, 67, 53, 0.12);
}

.den-coverage__cityName {
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	font-weight: 500;
	line-height: 27px;
	white-space: nowrap;
	transition: color 180ms var(--easing);
}

.den-coverage__city:hover .den-coverage__cityName {
	color: #ffffff;
}

.den-coverage__citiesGrid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-template-rows: repeat(7, minmax(0, 1fr));
	gap: 24px 32px;
}

@media (max-width: 980px) {
	.den-coverage__inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 44px 0;
	}

	.den-coverage__panel {
		flex-direction: column;
		width: 100%;
		padding: 32px 18px;
		gap: 22px;
	}

	.den-coverage__left {
		height: auto;
		flex: 0 0 auto;
		width: 100%;
	}

	.den-coverage__right {
		height: auto;
		width: 100%;
	}

	.den-coverage__citiesGrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto;
		gap: 18px 12px;
	}

	.den-coverage__cityName {
		white-space: normal;
	}
}

/* =============================================
   REVIEWS SECTION
   ============================================= */
.den-reviews {
	background: #f9f9f9;
	padding: 88px 24px;
	overflow: hidden;
}

.den-reviews__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 26px;
	border-bottom: 2px solid var(--color-yellow);
	margin-bottom: 48px;
}

.den-reviews__title {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 56px;
	line-height: 48px;
	font-weight: 900;
	letter-spacing: -1.2px;
	text-transform: uppercase;
	color: #000000;
}

.den-reviews__summary {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	text-decoration: none;
	color: inherit;
	padding: 10px 12px;
	border-radius: 14px;
	transition: transform 180ms var(--easing), background-color 180ms var(--easing), box-shadow 180ms var(--easing);
}

.den-reviews__summary:hover,
.den-reviews__summary:focus-visible {
	transform: translateY(-1px);
	background: rgba(0, 0, 0, 0.035);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	outline: none;
}

.den-reviews__summaryMeta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: flex-end;
}

.den-reviews__summaryLabel {
	font-size: 14px;
	line-height: 21px;
	font-weight: 700;
	color: var(--color-muted);
	text-transform: uppercase;
}

.den-reviews__summaryCount {
	font-size: 13px;
	line-height: 18px;
	font-weight: 500;
	color: rgba(106, 114, 130, 0.85);
}

.den-reviews__stars {
	display: flex;
	gap: 4px;
}

.den-reviews__star {
	width: 20px;
	height: 20px;
}

.den-reviews__rating {
	font-size: 56px;
	line-height: 56px;
	font-weight: 900;
	color: #000000;
}

.den-reviews__slider {
	overflow: hidden;
}

.den-reviews__track {
	display: flex;
	gap: 24px;
	will-change: transform;
	transition: transform 540ms var(--easing);
}

.den-reviews__card {
	position: relative;
	flex: 0 0 calc((100% - 48px) / 3);
	height: 248px;
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.den-reviews__card--light {
	background: #ffffff;
	color: #000000;
}

.den-reviews__card--dark {
	background: #111111;
	color: #ffffff;
}

.den-reviews__card--yellow {
	background: #f2b705;
	color: #000000;
}

.den-reviews__cardText {
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	max-width: calc(100% - 20px);
}

.den-reviews__cardFooter {
	position: absolute;
	left: 32px;
	right: 32px;
	bottom: 32px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.den-reviews__avatar {
	width: 48px;
	height: 48px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 27px;
	font-weight: 900;
	color: #0a0a0a;
	background: rgba(209, 213, 220, 0.3);
	flex: 0 0 auto;
}

.den-reviews__card--dark .den-reviews__avatar,
.den-reviews__card--yellow .den-reviews__avatar {
	background: #ffffff;
}

.den-reviews__person {
	display: flex;
	flex-direction: column;
}

.den-reviews__name {
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
}

.den-reviews__role {
	font-size: 13px;
	line-height: 19.5px;
	font-weight: 500;
	opacity: 0.6;
}

.den-reviews__quote {
	position: absolute;
	right: 32px;
	bottom: 24px;
	width: 40px;
	height: 40px;
}

.den-reviews__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 28px;
}

.den-reviews__dotBtn {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: none;
	padding: 0;
	background: rgba(0, 0, 0, 0.14);
	cursor: pointer;
	transition: transform 180ms var(--easing), background-color 180ms var(--easing), width 180ms var(--easing);
}

.den-reviews__dotBtn:hover {
	transform: scale(1.12);
	background: rgba(0, 0, 0, 0.28);
}

.den-reviews__dotBtn.is-active {
	width: 28px;
	background: var(--color-primary);
}

@media (max-width: 900px) {
	.den-reviews {
		padding: 88px 0;
	}

	.den-reviews__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}

	.den-reviews__title {
		font-size: 40px;
		line-height: 38px;
	}

	.den-reviews__summary {
		align-items: flex-end;
	}

	.den-reviews__summaryMeta {
		align-items: flex-start;
	}

	.den-reviews__card {
		flex-basis: 100%;
		height: auto;
		min-height: 248px;
	}
}

/* =============================================
   FAQ SECTION
   ============================================= */
.den-faq {
	background: #f9f9f9;
	padding: 88px 0 120px;
}

.den-faq__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	margin-bottom: 64px;
	text-align: center;
}

.den-faq__title {
	margin: 0;
	font-size: 56px;
	line-height: 57.6px;
	font-weight: 900;
	letter-spacing: -3.2px;
	text-transform: uppercase;
	color: #000000;
}

.den-faq__title span {
	color: var(--color-primary);
}

.den-faq__sub {
	margin: 0;
	max-width: 534px;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	color: var(--color-muted);
}

.den-faq__stack {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 24px;
}

.den-faq__row {
	display: flex;
	gap: 24px;
	align-items: stretch;
}

.den-faq__row--first .den-faq__card {
	height: 260.5px;
}

.den-faq__row--second .den-faq__card {
	height: 294px;
}

.den-faq__w40 {
	flex: 0 0 calc(40% - 12px);
}

.den-faq__w60 {
	flex: 0 0 calc(60% - 12px);
}

.den-faq__card {
	position: relative;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
	transition: transform 220ms var(--easing), box-shadow 220ms var(--easing);
}

.den-faq__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.den-faq__card--white {
	background: #ffffff;
	border: 1px solid #f3f4f6;
	padding: 41px;
}

.den-faq__card--dark {
	background: #111111;
	color: #ffffff;
	padding: 40px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.den-faq__card--red {
	background: #eb4335;
	color: #ffffff;
	padding: 40px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.den-faq__card--yellow {
	background: #f2b705;
	color: #000000;
	padding: 40px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.den-faq__card--white .den-faq__cardTitle,
.den-faq__card--dark .den-faq__cardTitle,
.den-faq__card--yellow .den-faq__cardTitle,
.den-faq__card--red .den-faq__cardTitle {
	margin: 0 0 20px 68px;
	font-weight: 700;
	letter-spacing: -0.7px;
}

.den-faq__card--white .den-faq__cardTitle,
.den-faq__card--dark .den-faq__cardTitle {
	font-size: 28px;
	line-height: 35px;
}

.den-faq__card--red .den-faq__cardTitle,
.den-faq__card--yellow .den-faq__cardTitle {
	font-size: 24px;
	line-height: 30px;
	max-width: 474px;
}

.den-faq__cardText {
	margin: 0 0 0 68px;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
}

.den-faq__card--white .den-faq__cardText,
.den-faq__card--dark .den-faq__cardText {
}

.den-faq__card--red .den-faq__cardText {
	max-width: 232px;
	color: rgba(255, 255, 255, 0.9);
}

.den-faq__card--yellow .den-faq__cardText {
	max-width: 517px;
	color: rgba(0, 0, 0, 0.8);
}

.den-faq__card--white .den-faq__cardText {
	max-width: 514px;
	color: var(--color-muted);
}

.den-faq__card--dark .den-faq__cardText {
	max-width: 331px;
	color: #99a1af;
}

.den-faq__qicon {
	position: absolute;
	top: 40px;
	left: 40px;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	line-height: 33px;
	font-weight: 900;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 220ms var(--easing);
}

.den-faq__card:hover .den-faq__qicon {
	transform: scale(1.05);
}

.den-faq__qicon--yellow {
	background: #f2b705;
	color: #000000;
	box-shadow: none;
}

.den-faq__qicon--red {
	background: #eb4335;
	color: #ffffff;
}

.den-faq__qicon--whiteRed {
	background: #ffffff;
	color: #eb4335;
}

.den-faq__qicon--blackYellow {
	background: #000000;
	color: #f2b705;
}

.den-faq__targetDecor {
	position: absolute;
	right: -16px;
	bottom: -16px;
	width: 160px;
	height: 160px;
	opacity: 0.2;
	transition: transform 320ms var(--easing), opacity 220ms var(--easing);
}

.den-faq__card:hover .den-faq__targetDecor {
	opacity: 0.28;
	transform: rotate(6deg) scale(1.04);
}

.den-faq__targetLayer,
.den-faq__clockOuter {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.den-faq__targetLayer--mid {
	inset: 25%;
	width: 50%;
	height: 50%;
}

.den-faq__targetLayer--inner {
	inset: 41.67%;
	width: 16.66%;
	height: 16.66%;
}

.den-faq__clockDecor {
	position: absolute;
	right: -8px;
	top: 38px;
	width: 256px;
	height: 256px;
	opacity: 0.1;
	transition: transform 320ms var(--easing), opacity 220ms var(--easing);
}

.den-faq__card:hover .den-faq__clockDecor {
	opacity: 0.15;
	transform: scale(1.03);
}

.den-faq__clockHand {
	position: absolute;
	left: 50%;
	top: 25%;
	width: 17%;
	height: 33%;
	transform: translateX(-50%);
}

.den-faq__support {
	background: #ffffff;
	border: 1px solid #f3f4f6;
	border-radius: 32px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
	padding: 40px 41px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.den-faq__supportLeft {
	display: flex;
	align-items: center;
	gap: 24px;
}

.den-faq__supportIconWrap {
	width: 64px;
	height: 64px;
	border-radius: 999px;
	background: #f4f4f4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.den-faq__supportIcon {
	width: 28px;
	height: 28px;
	filter: brightness(0);
}

.den-faq__supportTitle {
	font-size: 24px;
	line-height: 36px;
	font-weight: 700;
	color: #000000;
	letter-spacing: -0.6px;
}

.den-faq__supportSub {
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: var(--color-muted);
}

.den-faq__supportBtn {
	width: 223px;
	height: 56px;
	background: #000000;
	border-radius: 12px;
}

@media (max-width: 900px) {
	.den-faq {
		padding: 88px 0;
	}

	.den-faq__title {
		font-size: 40px;
		line-height: 42px;
		letter-spacing: -2px;
	}

	.den-faq__sub {
		font-size: 18px;
		line-height: 28px;
	}

	.den-faq__stack,
	.den-faq__row {
		flex-direction: column;
	}

	.den-faq__w40,
	.den-faq__w60 {
		flex: 1 1 auto;
	}

	.den-faq__row--first .den-faq__card,
	.den-faq__row--second .den-faq__card {
		height: auto;
	}

	.den-faq__support {
		flex-direction: column;
		align-items: stretch;
	}

	.den-faq__supportLeft {
		align-items: flex-start;
	}

	.den-faq__supportBtn {
		width: 100%;
	}
}

/* =============================================
   READY CTA SECTION
   ============================================= */
.den-ready {
	position: relative;
	background: #000000;
	min-height: 700px;
	overflow: hidden;
}

.den-ready__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.2;
}

.den-ready__bgImg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.den-ready__overlayLeft {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	background: rgba(235, 67, 53, 0.95);
	z-index: 1;
}

.den-ready__inner {
	position: relative;
	z-index: 2;
	min-height: 700px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}

.den-ready__left {
	padding: 40px 0;
	color: #ffffff;
	max-width: 560px;
}

.den-ready__title {
	margin: 0;
	font-size: 64px;
	line-height: 57.6px;
	font-weight: 900;
	letter-spacing: -3.2px;
	text-transform: uppercase;
}

.den-ready__sub {
	margin: 34px 0 0;
	max-width: 386px;
	font-size: 18px;
	line-height: 27px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

.den-ready__contacts {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.den-ready__contactItem {
	display: flex;
	align-items: center;
	gap: 20px;
	transition: transform 180ms var(--easing);
}

.den-ready__contactItem:hover {
	transform: translateX(4px);
}

.den-ready__contactIcon {
	width: 56px;
	height: 56px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 180ms var(--easing), box-shadow 180ms var(--easing);
}

.den-ready__contactItem:hover .den-ready__contactIcon {
	transform: scale(1.05);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.den-ready__contactIcon--white {
	background: #ffffff;
}

.den-ready__contactIcon--black {
	background: #000000;
}

.den-ready__contactImg {
	width: 28px;
	height: 28px;
}

.den-ready__contactImg--phone {
	filter: none;
}

.den-ready__contactText {
	display: flex;
	flex-direction: column;
}

.den-ready__contactLabel {
	font-size: 13px;
	line-height: 19.5px;
	font-weight: 700;
	letter-spacing: 0.65px;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
}

.den-ready__contactValue {
	font-size: 24px;
	line-height: 36px;
	font-weight: 900;
	color: #ffffff;
	text-decoration: none;
}

.den-ready__right {
	display: flex;
	justify-content: flex-end;
	padding: 55px 0;
}

.den-ready__formCard {
	width: 460px;
	max-width: 100%;
	background: #ffffff;
	border-radius: 15px;
	box-shadow: 0 34px 64px rgba(0, 0, 0, 0.15);
	border-top: 6px solid var(--color-primary);
	padding: 34px 40px 40px;
}

.den-ready__formCard .den-quote-form {
	box-shadow: none;
	border: none;
	padding: 0;
	border-radius: 0;
}

.den-ready__formCard .den-quote-form__title {
	font-size: 32px;
	line-height: 38.4px;
	letter-spacing: -0.8px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.den-ready__formCard .den-grid--form {
	gap: 12px;
}

.den-ready__formCard .den-field__input {
	height: 49px;
}

.den-ready__formCard .den-field--full .den-field__input {
	height: 49px;
	min-height: 49px;
}

.den-ready__formCard .den-quote-form__submit {
	height: 58.5px;
	border-radius: 8px;
	margin-top: 20px;
}

@media (max-width: 1100px) {
	.den-ready__inner {
		grid-template-columns: 1fr;
	}

	.den-ready__overlayLeft {
		width: 100%;
		height: 50%;
	}

	.den-ready__left {
		max-width: none;
		padding-top: 64px;
	}

	.den-ready__right {
		justify-content: flex-start;
		padding-top: 0;
		padding-bottom: 64px;
	}
}

@media (max-width: 700px) {
	.den-ready__title {
		font-size: 48px;
		line-height: 44px;
	}

	.den-ready__contactValue {
		font-size: 28px;
	}

	.den-ready__formCard {
		padding: 26px 20px 24px;
	}
}

/* =============================================
   FINAL CTA STRIP
   ============================================= */
.den-final-cta {
	position: relative;
	background: #f2b705;
	padding: 80px 24px;
	overflow: hidden;
}

.den-final-cta__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.den-final-cta__title {
	margin: 0;
	font-size: 40px;
	line-height: 60px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	color: #000000;
}

.den-final-cta__actions {
	display: flex;
	align-items: center;
	gap: 24px;
}

.den-final-cta__btn {
	height: 59px;
	border-radius: 10px;
	padding: 0 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 18px;
	line-height: 27px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	transition: transform 180ms var(--easing), box-shadow 180ms var(--easing), background-color 180ms var(--easing);
}

.den-final-cta__btn--dark {
	min-width: 224px;
	background: #000000;
	color: #ffffff;
}

.den-final-cta__btn--red {
	min-width: 228px;
	background: #eb4335;
	color: #ffffff;
}

.den-final-cta__btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.den-final-cta__phoneIcon {
	width: 20px;
	height: 20px;
}

.den-final-cta__decor {
	position: absolute;
	mix-blend-mode: color-burn;
	pointer-events: none;
	z-index: 1;
}

.den-final-cta__decorImg {
	display: block;
	width: 100%;
	height: 100%;
}

.den-final-cta__decor--rightTop {
	right: -95px;
	top: -156px;
	width: 414px;
	height: 414px;
}

.den-final-cta__decor--leftBottom {
	left: -106px;
	bottom: -165px;
	width: 305px;
	height: 305px;
}

.den-final-cta__decor--rightInner {
	right: 10%;
	top: -137px;
	width: 305px;
	height: 305px;
}

@media (max-width: 900px) {
	.den-final-cta {
		padding: 64px 24px;
	}

	.den-final-cta__title {
		font-size: 30px;
		line-height: 42px;
	}

	.den-final-cta__actions {
		width: 100%;
		flex-direction: column;
		gap: 14px;
	}

	.den-final-cta__btn {
		width: min(460px, 100%);
	}

	.den-final-cta__decor--rightInner {
		display: none;
	}
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.den-gallery-page {
	background:
		radial-gradient(circle at top left, rgba(235, 67, 53, 0.12), transparent 28%),
		radial-gradient(circle at top right, rgba(242, 183, 5, 0.12), transparent 24%),
		#0d0d0d;
	min-height: 100vh;
	padding-bottom: 0;
}

/* Hero bar */
.den-gallery-page__hero {
	padding: 34px 0 24px;
}

.den-gallery-page__heroPanel {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(13, 13, 13, 0.94) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
	border-radius: 28px;
	padding: 28px;
}

.den-gallery-page__heroPanel::before,
.den-gallery-page__heroPanel::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	filter: blur(70px);
	pointer-events: none;
}

.den-gallery-page__heroPanel::before {
	width: 240px;
	height: 240px;
	top: -80px;
	right: -60px;
	background: rgba(242, 183, 5, 0.16);
}

.den-gallery-page__heroPanel::after {
	width: 220px;
	height: 220px;
	left: -70px;
	bottom: -90px;
	background: rgba(235, 67, 53, 0.12);
}

.den-gallery-page__heroTop {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
}

.den-gallery-page__heroInner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: stretch;
	gap: 28px;
}

.den-gallery-page__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.02em;
	transition: color 180ms var(--easing);
	flex-shrink: 0;
}

.den-gallery-page__back:hover {
	color: #ffffff;
}

.den-gallery-page__heroText {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.den-gallery-page__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	font-size: 13px;
	line-height: 18px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.54);
}

.den-gallery-page__title {
	margin: 0;
	font-size: 68px;
	line-height: 0.92;
	font-weight: 900;
	letter-spacing: -3px;
	text-transform: uppercase;
	color: #ffffff;
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
}

.den-gallery-page__titleAccent {
	color: var(--color-yellow);
}

.den-gallery-page__sub {
	margin: 22px 0 0;
	max-width: 680px;
	font-size: 18px;
	line-height: 30px;
	color: rgba(255, 255, 255, 0.68);
	font-weight: 500;
}

.den-gallery-page__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.den-gallery-page__stat {
	padding: 18px 18px 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(10px);
}

.den-gallery-page__statNum {
	font-size: 28px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: -1px;
	color: #ffffff;
}

.den-gallery-page__statLabel {
	margin-top: 8px;
	font-size: 13px;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.52);
}

.den-gallery-page__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.den-gallery-page__actionBtn {
	min-width: 220px;
	height: 64px;
	padding: 0 28px;
	border-radius: 16px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.den-gallery-page__actions .den-btn--ghost {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.den-gallery-page__actions .den-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(255, 255, 255, 0.18);
}

.den-gallery-page__featureCard {
	width: min(100%, 420px);
	flex: 0 0 420px;
	position: relative;
	padding: 16px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.den-gallery-page__featureBadge {
	position: absolute;
	top: 28px;
	left: 28px;
	z-index: 1;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.56);
	border: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ffffff;
}

.den-gallery-page__featureImg {
	display: block;
	width: 100%;
	aspect-ratio: 0.88;
	object-fit: cover;
	border-radius: 18px;
}

.den-gallery-page__featureMeta {
	padding: 18px 10px 6px;
}

.den-gallery-page__featureTitle {
	font-size: 24px;
	line-height: 30px;
	font-weight: 800;
	letter-spacing: -0.8px;
	color: #ffffff;
}

.den-gallery-page__featureSub {
	margin-top: 8px;
	font-size: 14px;
	line-height: 22px;
	color: rgba(255, 255, 255, 0.56);
}

.den-gallery-page__instagram {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	padding: 8px 16px;
	flex-shrink: 0;
	transition: color 180ms var(--easing), border-color 180ms var(--easing), background-color 180ms var(--easing);
}

.den-gallery-page__instagram:hover {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.06);
}

/* Masonry grid */
.den-gallery-page__grid {
	padding: 28px 0 56px;
	columns: 4;
	column-gap: 16px;
}

.den-gallery-page__item {
	display: block;
	width: 100%;
	break-inside: avoid;
	margin-bottom: 16px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	border: none;
	padding: 0;
	background: transparent;
}

.den-gallery-page__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 12px;
	transition: transform 380ms var(--easing), filter 380ms var(--easing);
}

.den-gallery-page__overlay {
	position: absolute;
	inset: 0;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 280ms var(--easing), background-color 280ms var(--easing);
}

.den-gallery-page__item:hover .den-gallery-page__img {
	transform: scale(1.04);
	filter: brightness(0.82);
}

.den-gallery-page__item:hover .den-gallery-page__overlay {
	opacity: 1;
	background: rgba(0, 0, 0, 0.28);
}

/* Bottom CTA strip */
.den-gallery-page__cta {
	background: #111111;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	padding: 48px 0;
}

.den-gallery-page__ctaInner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.den-gallery-page__ctaText {
	margin: 0;
	font-size: 26px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.5px;
}

.den-gallery-page__ctaBtn {
	flex-shrink: 0;
	height: 52px;
	padding: 0 32px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

/* Lightbox */
.den-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.96);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: den-lb-in 220ms var(--easing);
}

.den-lightbox[hidden] {
	display: none;
}

@keyframes den-lb-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.den-lightbox__imgWrap {
	max-width: calc(100vw - 160px);
	max-height: calc(100vh - 80px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.den-lightbox__img {
	max-width: 100%;
	max-height: calc(100vh - 80px);
	border-radius: 10px;
	display: block;
	animation: den-lb-img-in 260ms var(--easing);
	object-fit: contain;
}

@keyframes den-lb-img-in {
	from { opacity: 0; transform: scale(0.96); }
	to   { opacity: 1; transform: scale(1); }
}

.den-lightbox__close {
	position: fixed;
	top: 20px;
	right: 24px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	cursor: pointer;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 160ms var(--easing);
	z-index: 2;
}

.den-lightbox__close:hover {
	background: rgba(255, 255, 255, 0.2);
}

.den-lightbox__nav {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.1);
	border: none;
	cursor: pointer;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 160ms var(--easing), transform 160ms var(--easing);
	z-index: 2;
}

.den-lightbox__nav:hover {
	background: rgba(255, 255, 255, 0.22);
	transform: translateY(-50%) scale(1.05);
}

.den-lightbox__nav--prev { left: 16px; }
.den-lightbox__nav--next { right: 16px; }

.den-lightbox__counter {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	pointer-events: none;
	background: rgba(0, 0, 0, 0.4);
	padding: 5px 14px;
	border-radius: 999px;
}

/* Gallery page responsive */
@media (max-width: 1200px) {
	.den-gallery-page__heroInner {
		flex-direction: column;
	}

	.den-gallery-page__featureCard {
		width: 100%;
		flex-basis: auto;
	}

	.den-gallery-page__grid {
		columns: 3;
	}
}

@media (max-width: 800px) {
	.den-gallery-page__grid {
		columns: 2;
	}

	.den-gallery-page__heroPanel {
		padding: 20px;
		border-radius: 22px;
	}

	.den-gallery-page__heroTop {
		flex-wrap: wrap;
		margin-bottom: 18px;
	}

	.den-gallery-page__heroInner {
		gap: 20px;
	}

	.den-gallery-page__title {
		font-size: 44px;
		letter-spacing: -2px;
	}

	.den-gallery-page__sub {
		font-size: 16px;
		line-height: 26px;
	}

	.den-gallery-page__stats {
		grid-template-columns: 1fr;
	}

	.den-gallery-page__ctaInner {
		flex-direction: column;
		text-align: center;
	}

	.den-gallery-page__ctaBtn {
		width: 100%;
		max-width: 380px;
	}

	.den-lightbox__imgWrap {
		max-width: calc(100vw - 80px);
	}
}

@media (max-width: 500px) {
	.den-gallery-page__grid {
		columns: 1;
		column-gap: 0;
	}

	.den-gallery-page__hero {
		padding: 24px 0 16px;
	}

	.den-gallery-page__title {
		font-size: 34px;
		line-height: 0.98;
	}

	.den-gallery-page__back,
	.den-gallery-page__instagram {
		width: 100%;
		justify-content: center;
	}

	.den-gallery-page__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.den-gallery-page__actionBtn {
		width: 100%;
	}
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.den-legal-page {
	background:
		radial-gradient(circle at top left, rgba(235, 67, 53, 0.1), transparent 24%),
		radial-gradient(circle at top right, rgba(242, 183, 5, 0.1), transparent 22%),
		#0d0d0d;
	min-height: 100vh;
}

.den-legal-page__hero {
	padding: 36px 0 18px;
}

.den-legal-page__heroInner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding: 32px;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(14, 14, 14, 0.94) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.den-legal-page__heroCopy {
	max-width: 820px;
}

.den-legal-page__eyebrow {
	margin-bottom: 14px;
	font-size: 13px;
	line-height: 18px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.den-legal-page__title {
	margin: 0;
	font-size: 58px;
	line-height: 0.95;
	font-weight: 900;
	letter-spacing: -2.5px;
	color: #ffffff;
	text-transform: uppercase;
}

.den-legal-page__intro {
	margin: 18px 0 0;
	max-width: 760px;
	font-size: 18px;
	line-height: 30px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.68);
}

.den-legal-page__updated {
	margin-top: 16px;
	font-size: 13px;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.42);
}

.den-legal-page__heroActions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.den-legal-page__heroBtn {
	min-width: 220px;
	height: 58px;
	padding: 0 24px;
	border-radius: 16px;
	font-size: 14px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.den-legal-page__heroBtn--ghost {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.den-legal-page__heroBtn--ghost:hover {
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(255, 255, 255, 0.18);
}

.den-legal-page__content {
	padding: 18px 0 88px;
}

.den-legal-page__contentInner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.den-legal-page__card {
	padding: 28px 28px 26px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.den-legal-page__card--full {
	grid-column: 1 / -1;
}

.den-legal-page__sectionTitle {
	margin: 0 0 14px;
	font-size: 24px;
	line-height: 30px;
	font-weight: 800;
	letter-spacing: -0.6px;
	color: #ffffff;
}

.den-legal-page__paragraph {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 28px;
	color: rgba(255, 255, 255, 0.72);
}

.den-legal-page__paragraph:last-child {
	margin-bottom: 0;
}

.den-legal-page__list {
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.den-legal-page__listItem {
	position: relative;
	padding-left: 18px;
	font-size: 16px;
	line-height: 28px;
	color: rgba(255, 255, 255, 0.72);
}

.den-legal-page__listItem::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--color-yellow);
}

.den-legal-page__wysiwyg {
	color: rgba(255, 255, 255, 0.72);
}

.den-legal-page__wysiwyg h2,
.den-legal-page__wysiwyg h3,
.den-legal-page__wysiwyg h4 {
	margin: 0 0 14px;
	font-size: 24px;
	line-height: 30px;
	font-weight: 800;
	letter-spacing: -0.6px;
	color: #ffffff;
}

.den-legal-page__wysiwyg p,
.den-legal-page__wysiwyg li {
	font-size: 16px;
	line-height: 28px;
}

.den-legal-page__wysiwyg p {
	margin: 0 0 12px;
}

.den-legal-page__wysiwyg ul,
.den-legal-page__wysiwyg ol {
	margin: 14px 0 0 18px;
}

@media (max-width: 1100px) {
	.den-legal-page__heroInner {
		flex-direction: column;
		align-items: flex-start;
	}

	.den-legal-page__contentInner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.den-legal-page__hero {
		padding-top: 24px;
	}

	.den-legal-page__heroInner {
		padding: 22px;
		border-radius: 22px;
	}

	.den-legal-page__title {
		font-size: 38px;
		letter-spacing: -1.8px;
	}

	.den-legal-page__intro,
	.den-legal-page__paragraph,
	.den-legal-page__listItem {
		font-size: 15px;
		line-height: 26px;
	}

	.den-legal-page__heroActions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.den-legal-page__heroBtn {
		width: 100%;
	}

	.den-legal-page__card {
		padding: 22px 20px;
		border-radius: 20px;
	}
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.den-services-page {
	background:
		radial-gradient(circle at top left, rgba(235, 67, 53, 0.1), transparent 24%),
		radial-gradient(circle at top right, rgba(242, 183, 5, 0.1), transparent 22%),
		#0d0d0d;
	min-height: 100vh;
}

.den-services-page__hero {
	padding: 36px 0 18px;
}

.den-services-page__heroInner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
	gap: 24px;
	align-items: stretch;
}

.den-services-page__heroCopy,
.den-services-page__quickNav {
	padding: 32px;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(14, 14, 14, 0.94) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.den-services-page__eyebrow {
	margin-bottom: 14px;
	font-size: 13px;
	line-height: 18px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.den-services-page__title {
	margin: 0;
	font-size: 58px;
	line-height: 0.95;
	font-weight: 900;
	letter-spacing: -2.5px;
	color: #ffffff;
	text-transform: uppercase;
}

.den-services-page__intro {
	margin: 20px 0 0;
	max-width: 760px;
	font-size: 18px;
	line-height: 30px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.68);
}

.den-services-page__heroActions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.den-services-page__heroBtn {
	min-width: 220px;
	height: 58px;
	padding: 0 24px;
	border-radius: 16px;
	font-size: 14px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.den-services-page__heroBtn--ghost {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.den-services-page__heroBtn--ghost:hover {
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(255, 255, 255, 0.18);
}

.den-services-page__quickNav {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.den-services-page__quickLink {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 18px;
	border-radius: 18px;
	text-decoration: none;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 180ms var(--easing), background-color 180ms var(--easing), border-color 180ms var(--easing);
}

.den-services-page__quickLink:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.16);
}

.den-services-page__quickLabel {
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
}

.den-services-page__quickArrow {
	font-size: 24px;
	line-height: 1;
	color: var(--color-yellow);
}

.den-services-page__list {
	padding: 18px 0 88px;
}

.den-services-page__listInner {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.den-services-page__card {
	display: grid;
	grid-template-columns: minmax(320px, 480px) minmax(0, 1fr);
	gap: 24px;
	padding: 24px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
	scroll-margin-top: 120px;
}

.den-services-page__card--reverse {
	grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
}

.den-services-page__card--reverse .den-services-page__media {
	order: 2;
}

.den-services-page__media {
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	min-height: 420px;
}

.den-services-page__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms var(--easing), filter 420ms var(--easing);
}

.den-services-page__card:hover .den-services-page__img {
	transform: scale(1.04);
	filter: saturate(1.02) contrast(1.02);
}

.den-services-page__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 8px 8px 8px 4px;
}

.den-services-page__cardEyebrow {
	font-size: 13px;
	line-height: 18px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.den-services-page__cardTitle {
	margin: 14px 0 0;
	font-size: 42px;
	line-height: 0.98;
	font-weight: 900;
	letter-spacing: -1.8px;
	color: #ffffff;
	text-transform: uppercase;
}

.den-services-page__cardText {
	margin: 18px 0 0;
	font-size: 17px;
	line-height: 30px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	max-width: 640px;
}

.den-services-page__bulletList {
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.den-services-page__bullet {
	position: relative;
	padding-left: 18px;
	font-size: 15px;
	line-height: 26px;
	color: rgba(255, 255, 255, 0.72);
}

.den-services-page__bullet::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--color-yellow);
}

.den-services-page__cardActions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 26px;
}

.den-services-page__cardBtn {
	height: 52px;
	padding: 0 26px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.den-services-page__inlineLink {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: color 180ms var(--easing), transform 180ms var(--easing);
}

.den-services-page__inlineLink:hover {
	color: #ffffff;
	transform: translateX(2px);
}

.den-services-page__card--light,
.den-services-page__card--yellow {
	background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1100px) {
	.den-services-page__heroInner {
		grid-template-columns: 1fr;
	}

	.den-services-page__card,
	.den-services-page__card--reverse {
		grid-template-columns: 1fr;
	}

	.den-services-page__card--reverse .den-services-page__media {
		order: 0;
	}
}

@media (max-width: 700px) {
	.den-services-page__hero {
		padding-top: 24px;
	}

	.den-services-page__heroCopy,
	.den-services-page__quickNav {
		padding: 22px;
		border-radius: 22px;
	}

	.den-services-page__title {
		font-size: 38px;
		letter-spacing: -1.8px;
	}

	.den-services-page__intro,
	.den-services-page__cardText,
	.den-services-page__bullet {
		font-size: 15px;
		line-height: 26px;
	}

	.den-services-page__heroActions,
	.den-services-page__cardActions {
		flex-direction: column;
		align-items: stretch;
	}

	.den-services-page__heroBtn,
	.den-services-page__cardBtn {
		width: 100%;
	}

	.den-services-page__card {
		padding: 18px;
		border-radius: 22px;
	}

	.den-services-page__media {
		min-height: 280px;
	}

	.den-services-page__cardTitle {
		font-size: 32px;
	}
}

