:root {
	--bg: #05070d;
	--bg2: #080c14;
	--card: #0d121b;
	--card2: #121824;
	--text: #fff;
	--muted: #a6a8b3;
	--soft: #d9d9e2;
	--pink: #e926b8;
	--purple: #7f2dff;
	--border: rgba(255, 255, 255, .12);
	--border2: rgba(233, 38, 184, .35);
	--heading: 'Space Grotesk', sans-serif;
	--body: 'Poppins', sans-serif;
	--radius: 24px;
	--shadow: 0 20px 80px rgba(0, 0, 0, .45)
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	background: radial-gradient(circle at 70% 10%, rgba(126, 45, 255, .14), transparent 30%), linear-gradient(180deg, #05070d, #03050a);
	color: var(--text);
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden
}

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

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

.dh-container {
	width: min(100% - 48px, 1440px);
	margin-inline: auto
}

.dh-section {
	padding: 72px 0
}

.dh-eyebrow {
	margin: 0 0 14px;
	color: var(--pink);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em
}

h1,
h2,
h3 {
	font-family: var(--heading);
	letter-spacing: -.04em;
	line-height: 1.06;
	margin: 0
}

h1 {
	font-size: clamp(48px, 5.5vw, 92px)
}

h2 {
	font-size: clamp(34px, 3.4vw, 58px)
}

h3 {
	font-size: 22px
}

.dh-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border-radius: 12px;
	font-weight: 700
}

.dh-btn--primary {
	background: linear-gradient(135deg, var(--pink), var(--purple));
	padding: 16px 28px;
	box-shadow: 0 14px 40px rgba(233, 38, 184, .3)
}

.dh-header {
	position: sticky;
	top: 0;
	z-index: 99;
	padding: 22px 28px;
	background: rgba(5, 7, 13, .76);
	backdrop-filter: blur(18px)
}

.dh-header__inner {
	min-height: 74px;
	border: 1px solid var(--border);
	border-radius: 28px;
	background: rgba(10, 14, 22, .86);
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 48px;
	position: relative
}

.dh-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--heading);
	font-weight: 800
}

.dh-logo__mark {
	width: 54px;
	height: 34px;
	border-radius: 18px 4px 18px 4px;
	background: #fff;
	color: #05070d;
	display: grid;
	place-items: center;
	font-size: 28px
}

.dh-logo__text {
	font-size: 34px;
	line-height: .8;
	letter-spacing: .08em
}

.dh-logo__text small {
	display: block;
	font: 600 10px var(--body);
	letter-spacing: .28em;
	color: #d5d5dc;
	margin-top: 9px
}

.dh-nav {
	display: flex;
	align-items: center;
	gap: 58px
}

.dh-nav>a,
.dh-nav__dropdown-btn {
	font: 500 18px var(--body);
	color: #f2eff8;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 28px 0
}

.dh-nav>a:hover,
.dh-nav__dropdown-btn:hover {
	color: var(--pink)
}

.dh-nav__dropdown-btn {
	display: flex;
	gap: 8px;
	align-items: center
}

.dh-nav__dropdown {
	position: static
}

.dh-call-btn {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	background: linear-gradient(135deg, #d92a98, #7328d8);
	padding: 13px 28px;
	border-radius: 13px;
	font-weight: 600;
	font-size: 17px
}

.dh-menu-toggle {
	display: none;
	background: transparent;
	border: 0;
	width: 42px
}

.dh-menu-toggle span {
	display: block;
	height: 2px;
	background: #fff;
	margin: 7px 0;
	border-radius: 99px
}

.dh-mega {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 12px);
	background: linear-gradient(135deg, rgba(12, 17, 25, .98), rgba(11, 13, 22, .98));
	border: 1px solid var(--border);
	border-radius: 0 0 26px 26px;
	padding: 40px 48px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	transition: .25s ease;
	box-shadow: 0 45px 80px rgba(0, 0, 0, .55)
}

.dh-nav__dropdown:hover .dh-mega,
.dh-nav__dropdown.is-active .dh-mega {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

.dh-mega__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr) 1.15fr;
	gap: 34px
}

.dh-mega__col {
	border-right: 1px solid var(--border);
	padding-right: 24px
}

.dh-mega__title {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: #df78ff;
	font-weight: 700;
	margin: 0 0 22px
}

.dh-mega__item {
	display: flex;
	gap: 16px;
	margin: 0 0 20px;
	color: #fff
}

.dh-mega__item span {
	font-size: 24px;
	color: #e7e7ee;
	min-width: 28px
}

.dh-mega__item strong {
	display: block;
	font-size: 17px;
	font-weight: 500
}

.dh-mega__item small {
	display: block;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45
}

.dh-mega__item:hover strong {
	color: var(--pink)
}

.dh-mega__cta {
	border: 1px solid var(--border2);
	border-radius: 22px;
	background: radial-gradient(circle at 80% 30%, rgba(126, 45, 255, .28), transparent 55%), rgba(255, 255, 255, .035);
	padding: 34px
}

.dh-mega__cta-icon {
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(151, 67, 255, .55);
	border-radius: 50%;
	color: #d642ff;
	font-size: 24px
}

.dh-mega__cta h3 {
	font-size: 26px;
	margin: 22px 0 14px
}

.dh-mega__cta p {
	color: var(--muted);
	margin: 0 0 24px
}

.dh-mega__cta a {
	display: flex;
	justify-content: center;
	gap: 12px;
	padding: 14px;
	border-radius: 11px;
	background: linear-gradient(135deg, #ee2aa7, #7e2cff);
	font-weight: 700
}

.dh-mega__cta small {
	display: block;
	text-align: center;
	margin-top: 22px;
	color: #fff
}

.dh-hero {
	min-height: 760px;
	display: flex;
	align-items: center;
	padding: 70px 0 50px;
	position: relative;
	overflow: hidden
}

.dh-hero:after {
	content: "";
	position: absolute;
	right: 8%;
	top: 11%;
	width: 640px;
	height: 640px;
	border-radius: 50%;
	border: 1px solid rgba(233, 38, 184, .24);
	box-shadow: 0 0 0 70px rgba(126, 45, 255, .05), 0 0 0 140px rgba(233, 38, 184, .035);
	pointer-events: none
}

.dh-hero__grid {
	display: grid;
	grid-template-columns: 1.03fr .97fr;
	align-items: center;
	gap: 50px;
	position: relative;
	z-index: 1
}

.dh-hero h1 span {
	background: linear-gradient(135deg, #ff2db8, #8738ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent
}

.dh-hero__desc {
	max-width: 570px;
	color: var(--muted);
	font-size: 18px;
	margin: 28px 0
}

.dh-hero__actions {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-bottom: 82px
}

.dh-showreel {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 600
}

.dh-showreel span {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border: 1px solid var(--border);
	border-radius: 50%
}

.dh-trusted small {
	display: block;
	text-transform: uppercase;
	color: #8d919d;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	margin-bottom: 18px
}

.dh-trusted div {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	color: #a6a8b3;
	font-size: 25px;
	align-items: center
}

.dh-hero__visual {
	position: relative;
	min-height: 590px
}

.dh-hawk-placeholder {
	position: absolute;
	inset: 0;
	border-radius: 36px;
	background: radial-gradient(circle at 62% 39%, #f321ae 0 2%, transparent 8%), radial-gradient(ellipse at 61% 45%, #1a1f29 0 18%, #0a0e15 38%, transparent 68%), linear-gradient(135deg, transparent 25%, rgba(233, 38, 184, .22));
	clip-path: polygon(20% 3%, 100% 0, 100% 100%, 34% 100%, 49% 60%);
	filter: drop-shadow(0 20px 80px rgba(233, 38, 184, .25))
}

.dh-stat-card {
	position: absolute;
	right: 0;
	bottom: 40px;
	width: 340px;
	padding: 28px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: rgba(5, 7, 13, .78);
	backdrop-filter: blur(18px)
}

.dh-stat-card strong {
	display: block;
	color: var(--pink);
	font-size: 54px;
	font-family: var(--heading);
	line-height: 1
}

.dh-stat-card small {
	font-weight: 700
}

.dh-stat-card p {
	color: #d6d6dd;
	margin: 8px 0 18px
}

.dh-stat-card a {
	color: var(--pink);
	font-weight: 700
}

.dh-about__grid {
	display: grid;
	grid-template-columns: .88fr 1.12fr;
	gap: 70px;
	align-items: center
}

.dh-about__content p:not(.dh-eyebrow) {
	color: #d7d8df;
	max-width: 640px
}

.dh-metrics {
	display: flex;
	gap: 55px;
	margin-top: 48px
}

.dh-metrics div+div {
	border-left: 1px solid var(--border);
	padding-left: 55px
}

.dh-metrics strong {
	display: block;
	font: 700 44px var(--heading)
}

.dh-metrics span {
	color: #d5d5dc
}

.dh-about__media {
	position: relative
}

.dh-office-card {
	height: 390px;
	border-radius: 22px;
	background: linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)), radial-gradient(circle at 65% 30%, rgba(233, 38, 184, .55), transparent 20%), linear-gradient(135deg, #35221c, #151923 55%, #173224);
	border: 1px solid var(--border);
	position: relative;
	overflow: hidden
}

.dh-office-card:after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 45%;
	background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 2px, transparent 2px 95px)
}

.dh-office-card span {
	position: absolute;
	top: 42px;
	right: 210px;
	color: #ff65df;
	font: 500 38px var(--heading);
	line-height: 1.08;
	text-shadow: 0 0 20px rgba(233, 38, 184, .8)
}

.dh-quote-card {
	margin-top: 22px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, .045);
	border-radius: 19px;
	padding: 34px
}

.dh-quote-card b {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	background: var(--pink);
	font-size: 38px;
	line-height: 0
}

.dh-quote-card p {
	font-weight: 600
}

.dh-quote-card small {
	color: var(--muted)
}

.dh-services h2 {
	margin-bottom: 34px
}

.dh-service-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px
}

.dh-service-card {
	min-height: 230px;
	border: 1px solid var(--border);
	border-radius: 13px;
	background: rgba(255, 255, 255, .035);
	padding: 28px;
	transition: .25s
}

.dh-service-card:hover {
	transform: translateY(-6px);
	border-color: var(--border2);
	background: rgba(233, 38, 184, .06)
}

.dh-service-card>span {
	display: block;
	color: var(--pink);
	font-size: 38px;
	margin-bottom: 22px
}

.dh-service-card h3 {
	font-size: 18px;
	margin-bottom: 12px
}

.dh-service-card p {
	font-size: 13px;
	color: #c7c8d0;
	margin: 0
}

.dh-inline-link {
	margin-top: 22px
}

.dh-inline-link a,
.dh-section-head>a,
.dh-work-card a {
	color: var(--pink);
	font-weight: 700
}

.dh-section-head {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: end;
	margin-bottom: 30px
}

.dh-work-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px
}

.dh-work-card {
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	background: rgba(255, 255, 255, .035)
}

.dh-work-card>div:last-child {
	padding: 24px
}

.dh-work-card small {
	color: var(--pink);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 11px
}

.dh-work-card h3 {
	font-size: 23px;
	margin: 6px 0
}

.dh-work-card p {
	color: #c9cbd4
}

.dh-work-img {
	height: 230px;
	background: linear-gradient(135deg, #151923, #2e3340)
}

.dh-work-img--one {
	background: radial-gradient(circle at 35% 50%, #48515e, transparent 22%), linear-gradient(135deg, #090c12, #202632)
}

.dh-work-img--two {
	background: radial-gradient(circle at 58% 45%, #fff, transparent 18%), linear-gradient(135deg, #111827, #343a46)
}

.dh-work-img--three {
	background: radial-gradient(circle at 50% 40%, #f5f0e7, transparent 22%), linear-gradient(135deg, #11150e, #36513f)
}

.dh-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px
}

.dh-testimonial-grid article {
	border: 1px solid var(--border);
	border-radius: 14px;
	background: rgba(255, 255, 255, .035);
	padding: 30px
}

.dh-testimonial-grid b {
	color: var(--pink);
	font-size: 54px;
	line-height: 0
}

.dh-testimonial-grid p {
	color: #ddd
}

.dh-testimonial-grid strong {
	display: block
}

.dh-testimonial-grid small {
	color: var(--muted)
}

.dh-arrows button {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: transparent;
	color: #fff;
	margin-left: 10px
}



.dh-page {
	min-height: 50vh
}

.dh-page-content {
	color: #d6d7dd
}

@media (max-width:1200px) {
	.dh-nav {
		gap: 28px
	}

	.dh-mega__grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.dh-mega__cta {
		grid-column: 1/-1
	}

	.dh-service-grid {
		grid-template-columns: repeat(3, 1fr)
	}

	.dh-footer-main {
		grid-template-columns: repeat(2, 1fr)
	}

	.dh-footer-contact,
	.dh-footer-col {
		border-left: 0;
		padding-left: 0
	}

	.dh-footer-cta {
		grid-template-columns: 1fr
	}

	.dh-footer-cta>a {
		width: max-content
	}
}

@media (max-width:900px) {
	.dh-header {
		padding: 14px
	}

	.dh-header__inner {
		padding: 0 20px
	}

	.dh-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: calc(100% + 10px);
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: #0b1018;
		border: 1px solid var(--border);
		border-radius: 18px;
		padding: 16px
	}

	.dh-nav.is-open {
		display: flex
	}

	.dh-nav>a,
	.dh-nav__dropdown-btn {
		padding: 14px
	}

	.dh-menu-toggle {
		display: block
	}

	.dh-call-btn {
		display: none
	}

	.dh-mega {
		position: static;
		display: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		padding: 18px;
		border-radius: 18px
	}

	.dh-nav__dropdown.is-active .dh-mega {
		display: block
	}

	.dh-mega__grid {
		grid-template-columns: 1fr
	}

	.dh-mega__col {
		border-right: 0
	}

	.dh-hero__grid,
	.dh-about__grid,
	.dh-work-grid,
	.dh-testimonial-grid {
		grid-template-columns: 1fr
	}

	.dh-hero {
		padding-top: 45px
	}

	.dh-hero__actions {
		margin-bottom: 45px
	}

	.dh-hero__visual {
		min-height: 420px
	}

	.dh-service-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.dh-footer-main {
		grid-template-columns: 1fr
	}

	.dh-footer-bottom {
		flex-direction: column;
		align-items: flex-start
	}

	.dh-footer-bottom nav {
		flex-wrap: wrap
	}

	.dh-footer-cta {
		padding: 34px
	}

	.dh-container {
		width: min(100% - 28px, 1440px)
	}
}

@media (max-width:560px) {
	h1 {
		font-size: 43px
	}

	.dh-section {
		padding: 52px 0
	}

	.dh-logo__text {
		font-size: 25px
	}

	.dh-logo__mark {
		width: 44px
	}

	.dh-hero__actions {
		align-items: flex-start;
		flex-direction: column
	}

	.dh-trusted div {
		gap: 22px;
		font-size: 20px
	}

	.dh-stat-card {
		left: 14px;
		right: 14px;
		width: auto
	}

	.dh-service-grid {
		grid-template-columns: 1fr
	}

	.dh-metrics {
		gap: 24px
	}

	.dh-metrics div+div {
		padding-left: 24px
	}

	.dh-work-img {
		height: 180px
	}

	.dh-section-head {
		align-items: flex-start;
		flex-direction: column
	}

	.dh-footer-cta__icon {
		width: 78px;
		height: 78px
	}

	.dh-footer-cta h2 {
		font-size: 34px
	}

	.dh-footer-cta p {
		font-size: 16px
	}

	.dh-footer-cta>a {
		width: 100%;
		justify-content: center;
		font-size: 16px;
		padding: 16px
	}

	.dh-footer-main,
	.dh-footer-bottom {
		padding: 28px
	}

	.dh-footer-bottom nav {
		gap: 18px
	}

	.dh-office-card span {
		right: 35px;
		font-size: 30px
	}
}

:root {
  --dh-bg: #05080f;
  --dh-card: #0b1018;
  --dh-card-soft: #101620;
  --dh-border: rgba(255, 255, 255, 0.12);
  --dh-border-soft: rgba(255, 255, 255, 0.08);
  --dh-text: #ffffff;
  --dh-muted: rgba(255, 255, 255, 0.68);
  --dh-pink: #ec2bbf;
  --dh-purple: #7c2cff;
  --dh-gradient: linear-gradient(135deg, #ee2c9f 0%, #7d2cff 100%);
  --dh-heading: 'Space Grotesk', sans-serif;
  --dh-body: 'Poppins', sans-serif;
}

body {
  background: var(--dh-bg);
  font-family: var(--dh-body);
}

body.dh-menu-open {
  overflow: hidden;
}

.dh-header {
  position: sticky;
  top: 24px;
  z-index: 9999;
  width: 100%;
  padding: 0 28px;
}

.dh-header__wrap {
  max-width: 1720px;
  margin: 0 auto;
}

.dh-header__inner {
  height: 86px;
  display: grid;
  grid-template-columns: 250px 1fr 220px;
  align-items: center;
  gap: 24px;
  padding: 0 38px;
  background:
    linear-gradient(180deg, rgba(13, 18, 27, 0.96), rgba(7, 10, 16, 0.96)),
    rgba(8, 11, 18, 0.92);
  border: 1px solid var(--dh-border);
  border-radius: 28px;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.dh-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.dh-logo img {
  width: 205px;
  max-width: 100%;
  height: auto;
  display: block;
}

.dh-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  height: 100%;
}

.dh-nav > a,
.dh-nav__dropdown-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 86px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--dh-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.25s ease;
}

.dh-nav > a:hover,
.dh-nav__dropdown:hover .dh-nav__dropdown-btn,
.dh-nav__dropdown-btn:hover {
  color: #f44bd2;
}

.dh-nav__dropdown-btn::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f146d4, transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: all 0.25s ease;
}

.dh-nav__dropdown:hover .dh-nav__dropdown-btn::after,
.dh-nav__dropdown-btn:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.dh-nav__dropdown {
  height: 100%;
  display: flex;
  align-items: center;
}

.dh-call-btn {
  justify-self: end;
  min-width: 190px;
  height: 50px;
  padding: 0 28px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  background: var(--dh-gradient);
  box-shadow: 0 12px 32px rgba(190, 39, 190, 0.28);
  transition: all 0.25s ease;
}

.dh-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(190, 39, 190, 0.38);
  color: #ffffff;
}

.dh-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--dh-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.dh-menu-toggle span {
  width: 21px;
  height: 2px;
  border-radius: 20px;
  background: #ffffff;
  display: block;
}

/* Mega menu positioning */
.dh-nav__dropdown .dh-mega-menu {
  position: fixed;
  left: 50%;
  top: 120px;
  transform: translateX(-50%) translateY(10px);
  width: min(1660px, calc(100vw - 56px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
}

.dh-nav__dropdown:hover .dh-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Mobile Overlay */
.dh-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

body.dh-menu-open .dh-mobile-overlay {
  opacity: 1;
  visibility: visible;
}

/* Mobile Off Canvas */
.dh-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: min(390px, 88vw);
  height: 100vh;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(236, 43, 191, 0.18), transparent 34%),
    linear-gradient(180deg, #0b1018 0%, #05080f 100%);
  border-right: 1px solid var(--dh-border);
  box-shadow: 30px 0 80px rgba(0, 0, 0, 0.52);
  transform: translateX(-104%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

body.dh-menu-open .dh-mobile-menu {
  transform: translateX(0);
}

.dh-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--dh-border-soft);
}

.dh-mobile-logo img {
  width: 180px;
  display: block;
}

.dh-mobile-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--dh-border);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.dh-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 26px 0;
}

.dh-mobile-nav > a,
.dh-mobile-services__btn {
  min-height: 54px;
  width: 100%;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-family: var(--dh-body);
  font-weight: 400;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--dh-border-soft);
  cursor: pointer;
}

.dh-mobile-services__btn span {
  font-size: 24px;
  color: var(--dh-pink);
  transition: transform 0.25s ease;
}

.dh-mobile-services.is-open .dh-mobile-services__btn span {
  transform: rotate(45deg);
}

.dh-mobile-services__panel {
  display: none;
  padding: 10px 0 16px 16px;
  border-bottom: 1px solid var(--dh-border-soft);
}

.dh-mobile-services.is-open .dh-mobile-services__panel {
  display: grid;
}

.dh-mobile-services__panel a {
  padding: 11px 0;
  color: var(--dh-muted);
  font-size: 15px;
  text-decoration: none;
}

.dh-mobile-services__panel a:hover {
  color: var(--dh-pink);
}

.dh-mobile-call-btn {
  height: 54px;
  margin-top: 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  background: var(--dh-gradient);
  box-shadow: 0 14px 40px rgba(190, 39, 190, 0.32);
}

/* Tablet */
@media (max-width: 1180px) {
  .dh-header__inner {
    grid-template-columns: 210px 1fr 190px;
    padding: 0 26px;
  }

  .dh-nav {
    gap: 28px;
  }

  .dh-logo img {
    width: 180px;
  }

  .dh-nav > a,
  .dh-nav__dropdown-btn {
    font-size: 15px;
  }

  .dh-call-btn {
    min-width: 165px;
    font-size: 15px;
    padding: 0 20px;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .dh-header {
    top: 14px;
    padding: 0 14px;
  }

  .dh-header__inner {
    height: 72px;
    display: flex;
    justify-content: space-between;
    padding: 0 18px;
    border-radius: 22px;
  }

  .dh-logo img {
    width: 170px;
  }

  .dh-nav,
  .dh-call-btn {
    display: none;
  }

  .dh-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .dh-header {
    padding: 0 10px;
  }

  .dh-header__inner {
    height: 68px;
    padding: 0 14px;
    border-radius: 20px;
  }

  .dh-logo img {
    width: 148px;
  }

  .dh-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .dh-mobile-menu {
    width: 86vw;
    padding: 20px;
  }

  .dh-mobile-logo img {
    width: 155px;
  }
}

/* ================================
   DHAWKS FOOTER - SHORT / COMPACT
================================ */

.dh-footer {
  position: relative;
  padding: 44px 0 34px;
  background:
    radial-gradient(circle at 84% 0%, rgba(126, 45, 255, 0.16), transparent 30%),
    radial-gradient(circle at 8% 0%, rgba(233, 38, 184, 0.08), transparent 30%),
    #05080f;
  overflow: hidden;
}

.dh-footer .dh-container {
  width: min(100% - 64px, 1760px);
  margin-inline: auto;
}

/* CTA */

.dh-footer-cta {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 150px;
  margin-bottom: 48px;
  padding: 28px 54px;
  border: 1px solid rgba(233, 38, 184, 0.52);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 58%, rgba(126, 45, 255, 0.42), transparent 34%),
    radial-gradient(circle at 2% 0%, rgba(233, 38, 184, 0.62), transparent 31%),
    linear-gradient(135deg, rgba(24, 12, 40, 0.98), rgba(6, 9, 17, 0.98));
  overflow: hidden;
}

.dh-footer-cta::after {
  content: "";
  position: absolute;
  right: 22%;
  top: -240px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 56px rgba(255, 255, 255, 0.016),
    0 0 0 112px rgba(255, 255, 255, 0.012),
    0 0 0 168px rgba(255, 255, 255, 0.008);
  pointer-events: none;
}

.dh-footer-cta__icon {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  border: 1px solid rgba(233, 38, 184, 0.52);
  color: var(--pink);
  background:
    radial-gradient(circle at 70% 22%, rgba(126, 45, 255, 0.28), transparent 48%),
    rgba(0, 0, 0, 0.28);
}

.dh-footer-cta__icon svg {
  width: 42px;
  height: 42px;
}

.dh-footer-cta__content {
  position: relative;
  z-index: 2;
}

.dh-footer-cta h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(32px, 2.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.dh-footer-cta h2 span,
.dh-footer-cta p span {
  background: linear-gradient(135deg, #ff42ce, #9b46ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dh-footer-cta p {
  max-width: 740px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.5;
}

.dh-footer-cta__btn {
  position: relative;
  z-index: 2;
  width: 360px;
  height: 62px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 13px;
  background: #ffffff;
  color: #c51f87;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  transition: all 0.25s ease;
}

.dh-footer-cta__btn:hover {
  transform: translateY(-2px);
  color: #8b24e8;
}

/* Main Footer Card */

.dh-footer-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(12, 17, 26, 0.88), rgba(7, 11, 18, 0.92)),
    rgba(10, 14, 22, 0.8);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.dh-footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.9fr 0.9fr 1.1fr;
  gap: 28px;
  padding: 42px 48px 38px;
}

.dh-footer-brand {
  padding-right: 28px;
}

.dh-footer-logo {
  display: inline-flex;
  align-items: center;
}

.dh-footer-logo img {
  width: 220px;
  display: block;
}

.dh-footer-brand p {
  max-width: 340px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.dh-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 340px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.dh-socials a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.dh-socials a:hover {
  color: var(--pink);
  border-color: rgba(233, 38, 184, 0.55);
  transform: translateY(-2px);
}

/* Columns */

.dh-footer-col,
.dh-footer-contact {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.dh-footer h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-family: var(--heading);
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.dh-footer-heading-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  color: var(--pink);
}

.dh-footer-heading-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.dh-footer-col a {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease;
}

.dh-footer-col a span {
  color: var(--pink);
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.dh-footer-col a:hover {
  color: #ffffff;
}

.dh-footer-col a:hover span {
  transform: translateX(4px);
}

/* Contact */

.dh-footer-contact > p {
  max-width: 300px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.dh-contact-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.dh-contact-row:last-child {
  border-bottom: 0;
}

.dh-contact-row > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
  color: var(--pink);
}

.dh-contact-row svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.dh-contact-row small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.dh-contact-row a,
.dh-contact-row p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.42;
  text-decoration: none;
}

/* Bottom */

.dh-footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dh-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.dh-footer-bottom p > span {
  color: var(--pink);
}

.dh-footer-secure {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dh-footer-secure span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--pink);
}

.dh-footer-secure svg {
  width: 24px;
  height: 24px;
}

.dh-footer-bottom nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 34px;
}

.dh-footer-bottom nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
}

.dh-footer-bottom nav a:hover {
  color: var(--pink);
}

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

@media (max-width: 1366px) {
  .dh-footer .dh-container {
    width: min(100% - 48px, 1500px);
  }

  .dh-footer-main {
    grid-template-columns: 1.2fr 0.78fr 0.9fr 0.9fr 1.15fr;
    gap: 24px;
    padding: 38px 40px 34px;
  }

  .dh-footer-col,
  .dh-footer-contact {
    padding-left: 24px;
  }

  .dh-footer-logo img {
    width: 200px;
  }

  .dh-footer-brand p {
    font-size: 14px;
  }

  .dh-footer-col a {
    font-size: 13px;
  }

  .dh-contact-row a,
  .dh-contact-row p {
    font-size: 14px;
  }

  .dh-footer h3 {
    font-size: 19px;
  }
}

@media (max-width: 1180px) {
  .dh-footer-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .dh-footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .dh-footer-brand p {
    max-width: 580px;
    margin-top: 22px;
  }

  .dh-socials {
    margin-top: 22px;
  }

  .dh-footer-cta {
    grid-template-columns: 74px 1fr;
    min-height: auto;
    padding: 28px 34px;
  }

  .dh-footer-cta__icon {
    width: 74px;
    height: 74px;
  }

  .dh-footer-cta__icon svg {
    width: 34px;
    height: 34px;
  }

  .dh-footer-cta__btn {
    grid-column: 2;
    width: max-content;
    height: 54px;
    font-size: 15px;
  }

  .dh-footer-bottom {
    grid-template-columns: 1fr;
  }

  .dh-footer-secure,
  .dh-footer-bottom nav {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .dh-footer {
    padding: 30px 0 24px;
  }

  .dh-footer .dh-container {
    width: min(100% - 24px, 1760px);
  }

  .dh-footer-cta {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding: 18px;
    margin-bottom: 24px;
    border-radius: 17px;
  }

  .dh-footer-cta__icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .dh-footer-cta__icon svg {
    width: 24px;
    height: 24px;
  }

  .dh-footer-cta h2 {
    font-size: 22px;
    line-height: 1.12;
  }

  .dh-footer-cta p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.45;
  }

  .dh-footer-cta__btn {
    grid-column: 1 / -1;
    width: 100%;
    height: 44px;
    border-radius: 11px;
    font-size: 13px;
  }

  .dh-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    padding: 22px;
  }

  .dh-footer-brand {
    grid-column: 1 / -1;
  }

  .dh-footer-logo img {
    width: 158px;
  }

  .dh-footer-brand p {
    max-width: 100%;
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.55;
  }

  .dh-socials {
    display: grid;
    grid-template-columns: repeat(4, 38px);
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
  }

  .dh-socials a {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .dh-footer-col,
  .dh-footer-contact {
    padding-left: 0;
    border-left: 0;
  }

  .dh-footer h3 {
    gap: 8px;
    margin-bottom: 12px;
    font-size: 15px;
  }

  .dh-footer-heading-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .dh-footer-heading-icon svg {
    width: 20px;
    height: 20px;
  }

  .dh-footer-col a {
    min-height: auto;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .dh-footer-col a span {
    font-size: 15px;
  }

  .dh-footer-contact {
    grid-column: 1 / -1;
  }

  .dh-footer-contact > p {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.45;
  }

  .dh-contact-row {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 9px 0;
  }

  .dh-contact-row > span {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .dh-contact-row svg {
    width: 15px;
    height: 15px;
  }

  .dh-contact-row small {
    font-size: 11px;
  }

  .dh-contact-row a,
  .dh-contact-row p {
    font-size: 12px;
  }

  .dh-footer-bottom {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 17px 22px;
  }

  .dh-footer-bottom p,
  .dh-footer-bottom nav a {
    font-size: 11px;
  }

  .dh-footer-secure {
    gap: 7px;
  }

  .dh-footer-secure span {
    width: 20px;
    height: 20px;
  }

  .dh-footer-secure svg {
    width: 18px;
    height: 18px;
  }

  .dh-footer-bottom nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 9px 16px;
  }
}

@media (max-width: 430px) {
  .dh-footer-main {
    padding: 20px;
    gap: 20px 14px;
  }

  .dh-footer h3 {
    font-size: 14px;
  }

  .dh-footer-col a {
    font-size: 11.5px;
  }

  .dh-footer-bottom nav {
    grid-template-columns: 1fr;
  }
}

/* ================================
   DHAWKS HOMEPAGE FINAL
================================ */

.dh-site-main {
  overflow: hidden;
}

.dh-home-container {
  width: min(100% - 56px, 1680px);
  margin-inline: auto;
}

.dh-creative-bg {
  position: relative;
  background:
    radial-gradient(circle at 74% 10%, rgba(126, 45, 255, 0.18), transparent 32%),
    radial-gradient(circle at 84% 24%, rgba(233, 38, 184, 0.14), transparent 28%),
    linear-gradient(180deg, #05070d 0%, #03050a 100%);
}

.dh-creative-bg::before,
.dh-about-section::before,
.dh-services-section::before,
.dh-work-section::before,
.dh-testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.11;
  pointer-events: none;
}

.dh-kicker {
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dh-home-hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  padding: 92px 0 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}



.dh-hero-content {
  position: relative;
  z-index: 4;
}

.dh-hero-content h1 {
  max-width: 860px;
  font-family: var(--heading);
  font-size: clamp(48px, 5vw, 88px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  color: #ffffff;
}

.dh-hero-content h1 span {
  background: linear-gradient(135deg, #ff2db8, #8a35ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dh-hero-desc {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.dh-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.dh-primary-btn {
  min-width: 190px;
  height: 54px;
  padding: 0 28px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #ec2bbf, #7c2cff);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(233, 38, 184, 0.26);
  transition: all 0.25s ease;
}

.dh-primary-btn:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

.dh-showreel-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.dh-play-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  transition: all 0.25s ease;
}

.dh-play-icon svg {
  width: 18px;
  height: 18px;
}

.dh-showreel-btn:hover .dh-play-icon {
  border-color: rgba(233, 38, 184, 0.72);
  color: var(--pink);
  box-shadow: 0 0 28px rgba(233, 38, 184, 0.28);
}

.dh-trusted {
  margin-top: 86px;
}

.dh-trusted small {
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dh-trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 42px;
}

.dh-trusted-logos span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 22px;
  font-weight: 800;
  filter: grayscale(1);
}

.dh-hero-visual {
  position: relative;
  min-height: 650px;
}

.dh-hawk-img {
  position: absolute;
  right: -50px;
  top: -40px;
  width: min(820px, 100%);
  z-index: 3;
  filter:
    drop-shadow(0 28px 90px rgba(233, 38, 184, 0.22))
    drop-shadow(0 12px 50px rgba(126, 45, 255, 0.22));
  animation: dhFloat 5s ease-in-out infinite;
}

.dh-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(233, 38, 184, 0.36);
  z-index: 1;
  animation: dhRotate 18s linear infinite;
}

.dh-orbit-one {
  width: 560px;
  height: 560px;
  right: 80px;
  top: 8px;
}

.dh-orbit-two {
  width: 710px;
  height: 710px;
  right: 0;
  top: -70px;
  border-color: rgba(126, 45, 255, 0.22);
  animation-duration: 26s;
}

.dh-orbit-three {
  width: 390px;
  height: 390px;
  right: 160px;
  top: 90px;
  border-color: rgba(233, 38, 184, 0.2);
  animation-duration: 14s;
}

.dh-floating-stat {
  position: absolute;
  z-index: 5;
  right: 10px;
  bottom: 70px;
  width: 360px;
  padding: 30px;
  border-radius: 17px;
  background:
    linear-gradient(180deg, rgba(8, 10, 18, 0.9), rgba(5, 7, 13, 0.82)),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.dh-stat-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.dh-stat-label span {
  width: 24px;
  height: 24px;
  color: var(--pink);
}

.dh-stat-label svg {
  width: 24px;
  height: 24px;
}

.dh-floating-stat strong {
  display: block;
  margin-top: 24px;
  font-family: var(--heading);
  font-size: 58px;
  line-height: 1;
  color: var(--pink);
}

.dh-floating-stat p {
  margin: 10px 0 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.dh-floating-stat a {
  color: var(--pink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

/* Animated gradient border */
.dh-animated-border {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.11);
  overflow: hidden;
}

.dh-animated-border::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  background: conic-gradient(
    from var(--dh-angle, 0deg),
    transparent 0deg,
    transparent 70deg,
    rgba(233, 38, 184, 0.85) 110deg,
    rgba(126, 45, 255, 0.85) 150deg,
    transparent 210deg,
    transparent 360deg
  );
  opacity: 0;
  animation: dhBorderSpin 4s linear infinite;
  transition: opacity 0.3s ease;
}

.dh-animated-border::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(13, 18, 27, 0.94), rgba(6, 9, 16, 0.94));
}

.dh-animated-border:hover::before,
.dh-floating-stat::before,
.dh-about-quote::before {
  opacity: 1;
}

/* About */

.dh-about-section,
.dh-services-section,
.dh-work-section,
.dh-testimonials-section {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(233, 38, 184, 0.06), transparent 28%),
    linear-gradient(180deg, #03050a, #05070d);
}

.dh-about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 76px;
  align-items: center;
}

.dh-about-content h2,
.dh-section-heading h2,
.dh-work-head h2 {
  margin: 0;
  font-family: var(--heading);
  color: #ffffff;
  font-size: clamp(34px, 3.3vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.dh-about-content p:not(.dh-kicker) {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.dh-about-stats {
  display: flex;
  align-items: center;
  gap: 54px;
  margin-top: 56px;
}

.dh-about-stats div + div {
  padding-left: 54px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.dh-about-stats strong {
  display: block;
  font-family: var(--heading);
  font-size: 48px;
  line-height: 1;
  color: #ffffff;
}

.dh-about-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.dh-about-media {
  position: relative;
}

.dh-about-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.dh-about-img-wrap img {
  width: 100%;
  display: block;
}

.dh-glow-card {
  position: relative;
}

.dh-glow-card::after {
  content: "";
  position: absolute;
  inset: auto 12% -32px 12%;
  height: 70px;
  background: linear-gradient(90deg, rgba(233, 38, 184, 0.28), rgba(126, 45, 255, 0.24));
  filter: blur(36px);
  opacity: 0.8;
  pointer-events: none;
}

.dh-about-quote {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 22px;
  align-items: start;
  margin: -2px 0 0 0;
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.dh-quote-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--pink);
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  font-family: serif;
}

.dh-about-quote p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.dh-about-quote small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
}

.dh-quote-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.dh-quote-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.dh-quote-dots .active {
  background: var(--pink);
}

.dh-quote-arrows {
  display: flex;
  gap: 12px;
  align-self: end;
}

.dh-quote-arrows button,
.dh-slider-arrows button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dh-quote-arrows button:hover,
.dh-slider-arrows button:hover {
  border-color: rgba(233, 38, 184, 0.6);
  color: var(--pink);
}

/* Services */

.dh-section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 38px;
}

.dh-service-grid-home {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.dh-service-box {
  min-height: 230px;
  padding: 28px 24px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.028);
  transition: all 0.3s ease;
}

.dh-service-box:hover {
  transform: translateY(-8px);
}

.dh-service-icon {
  width: 44px;
  height: 44px;
  display: block;
  margin-bottom: 30px;
  color: var(--pink);
}

.dh-service-icon svg {
  width: 44px;
  height: 44px;
}

.dh-service-box h3 {
  margin: 0 0 12px;
  font-family: var(--heading);
  color: #ffffff;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.dh-service-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.6;
}

.dh-requirement-link {
  position: relative;
  z-index: 2;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.dh-requirement-link a {
  color: var(--pink);
  font-weight: 800;
  text-decoration: none;
}

/* Work */

.dh-work-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}

.dh-work-head > a {
  color: var(--pink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.dh-work-grid-home {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.dh-work-card-home {
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.dh-work-card-home:hover {
  transform: translateY(-8px);
}

.dh-work-img {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.dh-work-img-one {
  background:
    radial-gradient(circle at 38% 50%, rgba(42, 231, 255, 0.42), transparent 5%),
    radial-gradient(circle at 42% 52%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(135deg, #04070c, #161b22 55%, #252b35);
}

.dh-work-img-two {
  background:
    radial-gradient(circle at 52% 35%, rgba(255, 255, 255, 0.9), transparent 16%),
    radial-gradient(circle at 68% 50%, rgba(233, 38, 184, 0.18), transparent 20%),
    linear-gradient(135deg, #111827, #2f3540);
}

.dh-work-img-three {
  background:
    radial-gradient(circle at 48% 40%, rgba(255, 255, 255, 0.92), transparent 18%),
    radial-gradient(circle at 70% 24%, rgba(20, 140, 82, 0.38), transparent 26%),
    linear-gradient(135deg, #10150f, #31473a);
}

.dh-work-content {
  padding: 26px;
}

.dh-work-content small {
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dh-work-content h3 {
  margin: 8px 0 10px;
  font-family: var(--heading);
  color: #ffffff;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.dh-work-content p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.6;
}

.dh-work-content a {
  color: var(--pink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

/* Testimonials */

.dh-testimonial-grid-home {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.dh-slider-arrows {
  display: flex;
  gap: 12px;
}

.dh-testimonial-card {
  min-height: 240px;
  padding: 34px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.03);
}

.dh-testimonial-card > span {
  display: block;
  color: var(--pink);
  font-size: 62px;
  line-height: 0.75;
  font-family: serif;
}

.dh-testimonial-card p {
  margin: 16px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.7;
}

.dh-testimonial-card strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
}

.dh-testimonial-card small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
}

/* Animations */

@property --dh-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes dhBorderSpin {
  to {
    --dh-angle: 360deg;
  }
}

@keyframes dhFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes dhRotate {
  to {
    transform: rotate(360deg);
  }
}

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

@media (max-width: 1366px) {
  .dh-home-container {
    width: min(100% - 48px, 1440px);
  }

  .dh-home-hero {
    min-height: 720px;
  }

  .dh-hero-content h1 {
    font-size: clamp(46px, 4.8vw, 74px);
  }

  .dh-hawk-img {
    width: 700px;
  }

  .dh-floating-stat {
    width: 330px;
  }

  .dh-service-grid-home {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1180px) {
  .dh-hero-grid,
  .dh-about-grid {
    grid-template-columns: 1fr;
  }

  .dh-home-hero {
    padding-top: 70px;
  }

  .dh-hero-visual {
    min-height: 560px;
  }

  .dh-hawk-img {
    right: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: none;
  }

  .dh-floating-stat {
    right: 30px;
  }

  .dh-about-grid {
    gap: 48px;
  }

  .dh-work-grid-home,
  .dh-testimonial-grid-home {
    grid-template-columns: 1fr;
  }

  .dh-work-img {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .dh-home-container {
    width: min(100% - 28px, 1440px);
  }

  .dh-home-hero,
  .dh-about-section,
  .dh-services-section,
  .dh-work-section,
  .dh-testimonials-section {
    padding: 58px 0;
  }

  .dh-hero-content h1 {
    font-size: 43px;
  }

  .dh-hero-desc {
    font-size: 14px;
  }

  .dh-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .dh-primary-btn {
    width: 100%;
  }

  .dh-trusted {
    margin-top: 48px;
  }

  .dh-trusted-logos {
    gap: 22px;
  }

  .dh-trusted-logos span {
    font-size: 16px;
  }

  .dh-hero-visual {
    min-height: 430px;
  }

  .dh-hawk-img {
    top: 0;
    width: 440px;
  }

  .dh-orbit-one {
    width: 330px;
    height: 330px;
    right: 10px;
    top: 24px;
  }

  .dh-orbit-two {
    width: 420px;
    height: 420px;
    right: -34px;
    top: -20px;
  }

  .dh-orbit-three {
    width: 250px;
    height: 250px;
    right: 44px;
    top: 70px;
  }

  .dh-floating-stat {
    width: calc(100% - 24px);
    right: 12px;
    bottom: 10px;
    padding: 22px;
  }

  .dh-floating-stat strong {
    font-size: 42px;
  }

  .dh-about-content h2,
  .dh-section-heading h2,
  .dh-work-head h2 {
    font-size: 34px;
  }

  .dh-about-content p:not(.dh-kicker) {
    font-size: 14px;
  }

  .dh-about-stats {
    gap: 28px;
    margin-top: 36px;
  }

  .dh-about-stats div + div {
    padding-left: 28px;
  }

  .dh-about-stats strong {
    font-size: 36px;
  }

  .dh-about-quote {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .dh-quote-arrows {
    justify-self: end;
  }

  .dh-service-grid-home {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .dh-service-box {
    min-height: 205px;
    padding: 22px 18px;
  }

  .dh-service-icon {
    margin-bottom: 20px;
  }

  .dh-service-box h3 {
    font-size: 15px;
  }

  .dh-service-box p {
    font-size: 12px;
  }

  .dh-work-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .dh-work-img {
    height: 210px;
  }

  .dh-work-content {
    padding: 22px;
  }

  .dh-slider-arrows {
    display: none;
  }
}

@media (max-width: 480px) {
  .dh-hero-content h1 {
    font-size: 38px;
  }

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

  .dh-about-stats {
    flex-direction: column;
    align-items: flex-start;
  }

  .dh-about-stats div + div {
    padding-left: 0;
    border-left: 0;
  }

  .dh-testimonial-card {
    padding: 24px;
  }
}

/* =========================================
   DHAWKS ABOUT PAGE - FINAL
========================================= */

.dha-about-page {
  --dha-bg: #05070d;
  --dha-card: rgba(255, 255, 255, 0.035);
  --dha-card-strong: rgba(14, 18, 28, 0.92);
  --dha-border: rgba(255, 255, 255, 0.12);
  --dha-muted: rgba(255, 255, 255, 0.68);
  --dha-soft: rgba(255, 255, 255, 0.82);
  --dha-pink: var(--pink, #e926b8);
  --dha-purple: var(--purple, #7f2dff);
  background: #05070d;
  color: #ffffff;
  overflow: hidden;
}

.dha-about-page * {
  box-sizing: border-box;
}

.dha-about-container {
  width: min(100% - 56px, 1680px);
  margin-inline: auto;
}

.dha-about-kicker {
  margin: 0 0 16px;
  color: var(--dha-pink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dha-about-page h1,
.dha-about-page h2,
.dha-about-page h3 {
  font-family: var(--heading, 'Space Grotesk', sans-serif);
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.05em;
}

.dha-about-page p {
  font-family: var(--body, 'Poppins', sans-serif);
}

.dha-about-hero,
.dha-about-story,
.dha-about-mission,
.dha-about-difference,
.dha-about-system,
.dha-about-culture,
.dha-about-numbers,
.dha-about-final-cta {
  position: relative;
  padding: 78px 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(233, 38, 184, 0.08), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(126, 45, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #05070d, #03050a);
}

.dha-about-hero::before,
.dha-about-story::before,
.dha-about-mission::before,
.dha-about-difference::before,
.dha-about-system::before,
.dha-about-culture::before,
.dha-about-numbers::before,
.dha-about-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.11;
  pointer-events: none;
}

.dha-about-hero {
  padding-top: 118px;
  min-height: 720px;
}

.dha-about-hero__grid,
.dha-about-story__grid,
.dha-about-difference__grid,
.dha-about-culture__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 78px;
}

.dha-about-hero__content h1 {
  max-width: 780px;
  font-size: clamp(48px, 4.9vw, 86px);
  line-height: 1.04;
}

.dha-about-hero__content h1 span,
.dha-about-final-cta__content h2 span {
  background: linear-gradient(135deg, #ff35c8, #8a35ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dha-about-hero__content p {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--dha-muted);
  font-size: 17px;
  line-height: 1.75;
}

.dha-about-hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.dha-about-btn {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--dha-pink), var(--dha-purple));
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(233, 38, 184, 0.25);
  transition: all 0.25s ease;
}

.dha-about-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.dha-about-btn--outline {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(233, 38, 184, 0.42);
  box-shadow: none;
}

.dha-about-hero__visual {
  position: relative;
}

.dha-about-image-card {
  position: relative;
  z-index: 3;
  border-radius: 24px;
  overflow: hidden;
  min-height: 390px;
  background: #0b1018;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.4);
}

.dha-about-image-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  display: block;
}

.dha-about-stat-row {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: calc(100% - 80px);
  margin: -44px auto 0;
}

.dha-about-stat-card {
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--dha-border);
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(16, 21, 32, 0.94), rgba(7, 10, 17, 0.94));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dha-about-stat-card span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  color: var(--dha-pink);
}

.dha-about-stat-card svg {
  width: 24px;
  height: 24px;
}

.dha-about-stat-card strong {
  display: inline-block;
  margin-left: 12px;
  font-family: var(--heading, 'Space Grotesk', sans-serif);
  font-size: 30px;
  line-height: 1;
}

.dha-about-stat-card small {
  display: block;
  margin-top: 7px;
  color: var(--dha-muted);
  font-size: 12px;
}

.dha-about-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.dha-about-orbit--one {
  width: 720px;
  height: 300px;
  top: -50px;
  right: -80px;
  border: 1px solid rgba(233, 38, 184, 0.32);
  transform: rotate(6deg);
}

.dha-about-orbit--two {
  width: 520px;
  height: 220px;
  top: 40px;
  right: -20px;
  border: 1px solid rgba(126, 45, 255, 0.22);
  transform: rotate(-8deg);
}

/* Animated border */

.dha-about-border-spin {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--dha-border);
}

.dha-about-border-spin::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(
    from var(--dha-angle, 0deg),
    transparent 0deg,
    transparent 80deg,
    rgba(233, 38, 184, 0.9) 125deg,
    rgba(126, 45, 255, 0.9) 165deg,
    transparent 225deg,
    transparent 360deg
  );
  opacity: 0;
  animation: dhaBorderRotate 4s linear infinite;
  transition: opacity 0.3s ease;
}

.dha-about-border-spin::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(12, 17, 26, 0.96), rgba(5, 8, 14, 0.96));
}

.dha-about-border-spin:hover::before,
.dha-about-image-card::before,
.dha-about-mission__card::before,
.dha-about-final-cta__card::before {
  opacity: 1;
}

@property --dha-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes dhaBorderRotate {
  to {
    --dha-angle: 360deg;
  }
}

/* Story */

.dha-about-story {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dha-about-story__text h2,
.dha-about-mission__card h2,
.dha-about-difference__head h2,
.dha-about-system__head h2,
.dha-about-culture__head h2,
.dha-about-final-cta__content h2 {
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 1.08;
}

.dha-about-story__text p {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--dha-muted);
  font-size: 16px;
  line-height: 1.75;
}

.dha-about-principles {
  display: grid;
  gap: 14px;
}

.dha-about-principle {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border-radius: 16px;
  background: var(--dha-card);
}

.dha-about-principle span {
  width: 58px;
  height: 58px;
  color: var(--dha-pink);
}

.dha-about-principle svg {
  width: 58px;
  height: 58px;
}

.dha-about-principle h3 {
  font-size: 24px;
  line-height: 1.1;
}

.dha-about-principle p {
  margin: 8px 0 0;
  color: var(--dha-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Mission */

.dha-about-mission__card {
  position: relative;
  z-index: 2;
  padding: 42px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 20%, rgba(126, 45, 255, 0.18), transparent 32%),
    radial-gradient(circle at 8% 16%, rgba(233, 38, 184, 0.15), transparent 28%),
    var(--dha-card);
}

.dha-about-mission__head {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 22px;
}

.dha-about-mission__head span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(233, 38, 184, 0.35);
  color: var(--dha-pink);
  background: rgba(255, 255, 255, 0.035);
}

.dha-about-mission__head svg {
  width: 36px;
  height: 36px;
}

.dha-about-mission__card > p {
  max-width: 920px;
  margin: 28px 0 0 94px;
  color: var(--dha-soft);
  font-size: 18px;
  line-height: 1.65;
}

.dha-about-mission__blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  padding: 22px;
  border: 1px solid var(--dha-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.dha-about-mission__blocks div {
  padding: 0 28px;
}

.dha-about-mission__blocks div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.dha-about-mission__blocks strong {
  display: block;
  font-family: var(--heading, 'Space Grotesk', sans-serif);
  font-size: 18px;
  color: #ffffff;
}

.dha-about-mission__blocks small {
  display: block;
  margin-top: 6px;
  color: var(--dha-muted);
  font-size: 13px;
  line-height: 1.45;
}

/* Difference */

.dha-about-difference__grid {
  align-items: start;
}

.dha-about-difference__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.dha-about-diff-card {
  padding: 26px;
  border-radius: 16px;
  background: var(--dha-card);
  min-height: 180px;
}

.dha-about-diff-card span {
  width: 48px;
  height: 48px;
  display: block;
  color: var(--dha-pink);
  margin-bottom: 22px;
}

.dha-about-diff-card svg {
  width: 48px;
  height: 48px;
}

.dha-about-diff-card h3 {
  font-size: 21px;
}

.dha-about-diff-card p {
  margin: 10px 0 0;
  color: var(--dha-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* System */

.dha-about-system__head {
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}

.dha-about-system__flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.dha-about-system__flow::before {
  content: "";
  position: absolute;
  top: 43px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 38, 184, 0.75), rgba(126, 45, 255, 0.75), transparent);
  box-shadow: 0 0 24px rgba(233, 38, 184, 0.32);
}

.dha-about-system__item {
  position: relative;
  text-align: center;
  padding-top: 4px;
}

.dha-about-system__icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(233, 38, 184, 0.5);
  background:
    radial-gradient(circle, rgba(233, 38, 184, 0.22), rgba(255, 255, 255, 0.03) 60%);
  box-shadow: 0 0 30px rgba(233, 38, 184, 0.22);
}

.dha-about-system__icon span {
  width: 30px;
  height: 30px;
  display: block;
  border: 2px solid var(--dha-pink);
  border-radius: 10px;
  transform: rotate(45deg);
}

.dha-about-system__item h3 {
  font-size: 17px;
  line-height: 1.25;
}

.dha-about-system__item p {
  max-width: 160px;
  margin: 8px auto 0;
  color: var(--dha-muted);
  font-size: 12px;
  line-height: 1.45;
}

/* Culture */

.dha-about-culture__grid {
  grid-template-columns: 0.5fr 1.5fr;
}

.dha-about-culture__visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 390px;
}

.dha-about-culture__visual img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
}

.culture-chip {
  position: absolute;
  z-index: 3;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--dha-border);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(15, 20, 30, 0.9), rgba(5, 8, 14, 0.86));
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.chip-one {
  top: 28px;
  left: 32px;
}

.chip-two {
  top: 30px;
  right: 34px;
}

.chip-three {
  bottom: 38px;
  left: 36px;
}

.chip-four {
  bottom: 38px;
  right: 34px;
}

/* Numbers */

.dha-about-numbers__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 18px;
  background: var(--dha-card);
  padding: 28px 34px;
}

.dha-about-numbers__grid div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  column-gap: 18px;
}

.dha-about-numbers__grid div + div {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.dha-about-numbers__grid span {
  grid-row: span 2;
  color: var(--dha-pink);
}

.dha-about-numbers__grid svg {
  width: 44px;
  height: 44px;
}

.dha-about-numbers__grid strong {
  font-family: var(--heading, 'Space Grotesk', sans-serif);
  font-size: 42px;
  line-height: 1;
}

.dha-about-numbers__grid small {
  color: var(--dha-muted);
  font-size: 13px;
}

/* Final CTA */

.dha-about-final-cta__card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.8fr;
  align-items: center;
  gap: 42px;
  min-height: 250px;
  padding: 36px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 8% 50%, rgba(233, 38, 184, 0.16), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(126, 45, 255, 0.16), transparent 30%),
    var(--dha-card);
  overflow: hidden;
}

.dha-about-final-cta__hawk {
  position: relative;
  min-height: 210px;
}

.dha-about-final-cta__hawk img {
  position: absolute;
  left: -30px;
  top: -40px;
  width: 390px;
  max-width: none;
  filter: drop-shadow(0 20px 70px rgba(233, 38, 184, 0.25));
}

.dha-about-final-cta__content h2 {
  font-size: clamp(34px, 3vw, 52px);
}

.dha-about-final-cta__content p {
  max-width: 480px;
  margin: 18px 0 0;
  color: var(--dha-muted);
  font-size: 16px;
  line-height: 1.6;
}

.dha-about-final-cta__actions {
  display: grid;
  gap: 16px;
}

.dha-about-final-cta__actions .dha-about-btn {
  width: 100%;
}

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

@media (max-width: 1366px) {
  .dha-about-container {
    width: min(100% - 48px, 1440px);
  }

  .dha-about-hero__content h1 {
    font-size: clamp(44px, 4.5vw, 72px);
  }

  .dha-about-hero,
  .dha-about-story,
  .dha-about-mission,
  .dha-about-difference,
  .dha-about-system,
  .dha-about-culture,
  .dha-about-numbers,
  .dha-about-final-cta {
    padding: 64px 0;
  }

  .dha-about-hero {
    padding-top: 108px;
  }

  .dha-about-system__flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 18px;
  }

  .dha-about-system__flow::before {
    display: none;
  }
}

@media (max-width: 1180px) {
  .dha-about-hero__grid,
  .dha-about-story__grid,
  .dha-about-difference__grid,
  .dha-about-culture__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dha-about-culture__grid {
    gap: 28px;
  }

  .dha-about-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .dha-about-numbers__grid div + div {
    padding-left: 0;
    border-left: 0;
  }

  .dha-about-final-cta__card {
    grid-template-columns: 1fr;
  }

  .dha-about-final-cta__hawk {
    min-height: 250px;
  }

  .dha-about-final-cta__hawk img {
    left: 0;
    top: -60px;
    width: 500px;
  }
}

@media (max-width: 767px) {
  .dha-about-container {
    width: min(100% - 28px, 1440px);
  }

  .dha-about-hero,
  .dha-about-story,
  .dha-about-mission,
  .dha-about-difference,
  .dha-about-system,
  .dha-about-culture,
  .dha-about-numbers,
  .dha-about-final-cta {
    padding: 48px 0;
  }

  .dha-about-hero {
    padding-top: 86px;
  }

  .dha-about-hero__content h1 {
    font-size: 42px;
  }

  .dha-about-hero__content p,
  .dha-about-story__text p {
    font-size: 14px;
    line-height: 1.65;
  }

  .dha-about-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dha-about-btn {
    width: 100%;
  }

  .dha-about-image-card,
  .dha-about-image-card img {
    min-height: 280px;
  }

  .dha-about-stat-row {
    width: 100%;
    grid-template-columns: 1fr;
    margin: 16px 0 0;
  }

  .dha-about-stat-card {
    min-height: auto;
  }

  .dha-about-orbit {
    display: none;
  }

  .dha-about-story__text h2,
  .dha-about-mission__card h2,
  .dha-about-difference__head h2,
  .dha-about-system__head h2,
  .dha-about-culture__head h2,
  .dha-about-final-cta__content h2 {
    font-size: 34px;
  }

  .dha-about-principle {
    grid-template-columns: 54px 1fr;
    padding: 20px;
  }

  .dha-about-principle span,
  .dha-about-principle svg {
    width: 44px;
    height: 44px;
  }

  .dha-about-principle h3 {
    font-size: 20px;
  }

  .dha-about-mission__card {
    padding: 24px;
  }

  .dha-about-mission__head {
    grid-template-columns: 54px 1fr;
  }

  .dha-about-mission__head span {
    width: 54px;
    height: 54px;
  }

  .dha-about-mission__card > p {
    margin: 22px 0 0;
    font-size: 15px;
  }

  .dha-about-mission__blocks {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .dha-about-mission__blocks div {
    padding: 0;
  }

  .dha-about-mission__blocks div + div {
    border-left: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .dha-about-difference__cards {
    grid-template-columns: 1fr;
  }

  .dha-about-system__flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .dha-about-system__icon {
    width: 66px;
    height: 66px;
  }

  .dha-about-culture__visual,
  .dha-about-culture__visual img {
    min-height: 320px;
    height: 320px;
  }

  .culture-chip {
    min-height: 36px;
    padding: 0 14px;
    font-size: 11px;
  }

  .chip-one {
    top: 16px;
    left: 16px;
  }

  .chip-two {
    top: 16px;
    right: 16px;
  }

  .chip-three {
    bottom: 16px;
    left: 16px;
  }

  .chip-four {
    bottom: 16px;
    right: 16px;
  }

  .dha-about-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px;
    gap: 20px;
  }

  .dha-about-numbers__grid div {
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
  }

  .dha-about-numbers__grid svg {
    width: 34px;
    height: 34px;
  }

  .dha-about-numbers__grid strong {
    font-size: 30px;
  }

  .dha-about-numbers__grid small {
    font-size: 11px;
  }

  .dha-about-final-cta__card {
    padding: 24px;
    gap: 24px;
  }

  .dha-about-final-cta__hawk {
    min-height: 190px;
  }

  .dha-about-final-cta__hawk img {
    width: 360px;
    top: -60px;
    left: -40px;
  }
}

@media (max-width: 480px) {
  .dha-about-hero__content h1 {
    font-size: 37px;
  }

  .dha-about-system__flow {
    grid-template-columns: 1fr;
  }

  .dha-about-numbers__grid {
    grid-template-columns: 1fr;
  }

  .dha-about-culture__visual,
  .dha-about-culture__visual img {
    min-height: 280px;
    height: 280px;
  }

  .culture-chip {
    position: static;
    margin: 8px;
  }

  .dha-about-culture__visual {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
  }

  .dha-about-culture__visual img {
    position: absolute;
    inset: 0;
    z-index: -1;
  }
}

/* =========================================
   ABOUT PAGE CAPABILITIES - FINAL RESPONSIVE
========================================= */

.dha-about-system {
  position: relative;
  padding: 76px 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(126, 45, 255, 0.16), transparent 32%),
    radial-gradient(circle at 12% 16%, rgba(233, 38, 184, 0.08), transparent 28%),
    linear-gradient(180deg, #05070d, #03050a);
  overflow: hidden;
}

.dha-about-system__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 54px;
  align-items: center;
}

.dha-about-system__head {
  margin: 0;
}

.dha-about-system__head h2 {
  font-size: clamp(34px, 3.3vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.dha-about-system__flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.dha-about-system__flow::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 38, 184, 0.75),
    rgba(126, 45, 255, 0.75),
    transparent
  );
  box-shadow: 0 0 28px rgba(233, 38, 184, 0.34);
  z-index: 0;
}

.dha-about-system__item {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 8px;
}

.dha-about-system__icon {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink, #e926b8);
  border: 1px solid rgba(233, 38, 184, 0.42);
  background:
    radial-gradient(circle, rgba(233, 38, 184, 0.18), rgba(255, 255, 255, 0.025) 62%),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    0 0 36px rgba(233, 38, 184, 0.18),
    inset 0 0 22px rgba(126, 45, 255, 0.08);
}

.dha-about-system__icon::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 3px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.95;
}

.dha-about-system__icon svg {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  color: var(--pink, #e926b8);
  stroke: currentColor;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.25s ease;
}

.dha-about-system__item:hover .dha-about-system__icon::before {
  opacity: 0.25;
}

.dha-about-system__item:hover .dha-about-system__icon svg {
  opacity: 1;
  transform: scale(1);
}

.dha-about-system__item h3 {
  margin: 0;
  font-family: var(--heading, 'Space Grotesk', sans-serif);
  font-size: 17px;
  line-height: 1.22;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.dha-about-system__item p {
  max-width: 160px;
  margin: 9px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

/* Laptop */
@media (max-width: 1366px) {
  .dha-about-system__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .dha-about-system__flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 22px;
  }

  .dha-about-system__flow::before {
    display: none;
  }

  .dha-about-system__item {
    padding: 26px 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
  }
}

/* Tablet */
@media (max-width: 991px) {
  .dha-about-system {
    padding: 58px 0;
  }

  .dha-about-system__flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .dha-about-system__item {
    padding: 24px 16px;
  }

  .dha-about-system__icon {
    width: 78px;
    height: 78px;
    margin-bottom: 18px;
  }

  .dha-about-system__icon::before {
    inset: 12px;
    border-radius: 15px;
    border-width: 2px;
  }

  .dha-about-system__icon svg {
    width: 28px;
    height: 28px;
    opacity: 1;
    transform: scale(1);
  }

  .dha-about-system__item h3 {
    font-size: 16px;
  }

  .dha-about-system__item p {
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .dha-about-system {
    padding: 48px 0;
  }

  .dha-about-system__head h2 {
    font-size: 34px;
  }

  .dha-about-system__flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .dha-about-system__item {
    padding: 20px 12px;
    border-radius: 14px;
  }

  .dha-about-system__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
  }

  .dha-about-system__icon::before {
    inset: 10px;
    border-radius: 12px;
  }

  .dha-about-system__icon svg {
    width: 23px;
    height: 23px;
  }

  .dha-about-system__item h3 {
    font-size: 14px;
  }

  .dha-about-system__item p {
    max-width: 130px;
    font-size: 11px;
    line-height: 1.4;
  }
}

/* Very Small Mobile */
@media (max-width: 380px) {
  .dha-about-system__flow {
    grid-template-columns: 1fr;
  }

  .dha-about-system__item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: center;
    text-align: left;
  }

  .dha-about-system__icon {
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .dha-about-system__item p {
    margin-left: 0;
    margin-right: 0;
  }
}

/* =========================================
   DHAWKS CONTACT PAGE
========================================= */

.dhc-contact-page {
  --dhc-bg: #05070d;
  --dhc-card: rgba(255, 255, 255, 0.035);
  --dhc-card-strong: rgba(12, 17, 26, 0.94);
  --dhc-border: rgba(255, 255, 255, 0.12);
  --dhc-muted: rgba(255, 255, 255, 0.68);
  --dhc-soft: rgba(255, 255, 255, 0.84);
  --dhc-pink: var(--pink, #e926b8);
  --dhc-purple: var(--purple, #7f2dff);
  background: #05070d;
  color: #ffffff;
  overflow: hidden;
}

.dhc-contact-page * {
  box-sizing: border-box;
}

.dhc-container {
  width: min(100% - 56px, 1680px);
  margin-inline: auto;
}

.dhc-contact-hero,
.dhc-contact-main,
.dhc-service-strip,
.dhc-final-cta {
  position: relative;
  padding: 78px 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(233, 38, 184, 0.08), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(126, 45, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #05070d, #03050a);
}

.dhc-contact-hero::before,
.dhc-contact-main::before,
.dhc-service-strip::before,
.dhc-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.1;
  pointer-events: none;
}

.dhc-kicker {
  margin: 0 0 16px;
  color: var(--dhc-pink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dhc-contact-page h1,
.dhc-contact-page h2,
.dhc-contact-page h3 {
  margin: 0;
  font-family: var(--heading, 'Space Grotesk', sans-serif);
  color: #ffffff;
  letter-spacing: -0.05em;
}

.dhc-contact-page p,
.dhc-contact-page a,
.dhc-contact-page input,
.dhc-contact-page select,
.dhc-contact-page textarea,
.dhc-contact-page label,
.dhc-contact-page button {
  font-family: var(--body, 'Poppins', sans-serif);
}

/* HERO */

.dhc-contact-hero {
  padding-top: 122px;
}

.dhc-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 72px;
  align-items: center;
}

.dhc-hero-content h1 {
  max-width: 850px;
  font-size: clamp(54px, 5vw, 92px);
  line-height: 1.03;
}

.dhc-hero-content h1 span,
.dhc-final-card h2 span {
  background: linear-gradient(135deg, #ff35c8, #8a35ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dhc-hero-content > p {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--dhc-muted);
  font-size: 17px;
  line-height: 1.75;
}

.dhc-hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 860px;
  margin-top: 46px;
}

.dhc-hero-points div {
  min-height: 96px;
  padding: 20px;
  border: 1px solid var(--dhc-border);
  border-radius: 16px;
  background: var(--dhc-card);
}

.dhc-hero-points span {
  display: block;
  margin-bottom: 14px;
  color: var(--dhc-pink);
  font-size: 13px;
  font-weight: 900;
}

.dhc-hero-points strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
}

.dhc-hero-card {
  position: relative;
  padding: 38px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 18%, rgba(126, 45, 255, 0.2), transparent 34%),
    var(--dhc-card);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.dhc-card-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(233, 38, 184, 0.42);
  background: rgba(255, 255, 255, 0.035);
  color: var(--dhc-pink);
  margin-bottom: 28px;
}

.dhc-card-icon svg {
  width: 34px;
  height: 34px;
}

.dhc-hero-card h2 {
  font-size: 36px;
  line-height: 1.08;
}

.dhc-hero-card p {
  margin: 18px 0 28px;
  color: var(--dhc-muted);
  font-size: 15px;
  line-height: 1.65;
}

.dhc-call-button {
  min-height: 56px;
  padding: 0 22px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: linear-gradient(135deg, var(--dhc-pink), var(--dhc-purple));
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(233, 38, 184, 0.24);
}

.dhc-call-button span {
  width: 22px;
  height: 22px;
}

.dhc-call-button svg {
  width: 22px;
  height: 22px;
}

.dhc-quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.dhc-quick-stats div {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--dhc-border);
  background: rgba(255, 255, 255, 0.025);
}

.dhc-quick-stats strong {
  display: block;
  font-family: var(--heading, 'Space Grotesk', sans-serif);
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
}

.dhc-quick-stats small {
  display: block;
  margin-top: 8px;
  color: var(--dhc-muted);
  font-size: 12px;
}

/* Animated Border */

.dhc-border-spin {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--dhc-border);
}

.dhc-border-spin::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(
    from var(--dhc-angle, 0deg),
    transparent 0deg,
    transparent 80deg,
    rgba(233, 38, 184, 0.9) 125deg,
    rgba(126, 45, 255, 0.9) 165deg,
    transparent 225deg,
    transparent 360deg
  );
  opacity: 0;
  animation: dhcBorderRotate 4s linear infinite;
  transition: opacity 0.3s ease;
}

.dhc-border-spin::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(12, 17, 26, 0.97), rgba(5, 8, 14, 0.96));
}

.dhc-border-spin:hover::before,
.dhc-hero-card::before,
.dhc-form-card::before,
.dhc-final-card::before {
  opacity: 1;
}

@property --dhc-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes dhcBorderRotate {
  to {
    --dhc-angle: 360deg;
  }
}

/* MAIN CONTACT */

.dhc-contact-main {
  padding-top: 40px;
}

.dhc-main-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 34px;
  align-items: start;
}

.dhc-form-card {
  padding: 42px;
  border-radius: 22px;
  background: var(--dhc-card);
}

.dhc-section-head {
  margin-bottom: 34px;
}

.dhc-section-head h2 {
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1.08;
}

.dhc-section-head > p:not(.dhc-kicker) {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--dhc-muted);
  font-size: 15px;
  line-height: 1.65;
}

.dhc-contact-form {
  display: grid;
  gap: 22px;
}

.dhc-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.dhc-field {
  display: grid;
  gap: 9px;
}

.dhc-field label {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.dhc-field input,
.dhc-field select,
.dhc-field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
}

.dhc-field textarea {
  min-height: 150px;
  padding: 18px;
  resize: vertical;
}

.dhc-field input::placeholder,
.dhc-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.dhc-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 24px,
    calc(100% - 16px) 24px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.dhc-field select option {
  background: #0b1018;
  color: #ffffff;
}

.dhc-field input:focus,
.dhc-field select:focus,
.dhc-field textarea:focus {
  border-color: rgba(233, 38, 184, 0.72);
  box-shadow: 0 0 0 4px rgba(233, 38, 184, 0.08);
}

.dhc-submit-btn {
  width: max-content;
  min-height: 58px;
  padding: 0 34px;
  border: 0;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--dhc-pink), var(--dhc-purple));
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(233, 38, 184, 0.24);
  transition: all 0.25s ease;
}

.dhc-submit-btn:hover {
  transform: translateY(-3px);
}

.dhc-form-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.5;
}

/* INFO PANEL */

.dhc-info-panel {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 130px;
}

.dhc-info-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 17px;
  background: var(--dhc-card);
}

.dhc-info-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  border: 1px solid var(--dhc-border);
  color: var(--dhc-pink);
  background: rgba(255, 255, 255, 0.035);
}

.dhc-info-icon svg {
  width: 24px;
  height: 24px;
}

.dhc-info-card small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.dhc-info-card a,
.dhc-info-card p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
}

.dhc-social-card,
.dhc-hours-card {
  padding: 24px;
  border-radius: 17px;
  border: 1px solid var(--dhc-border);
  background: var(--dhc-card);
}

.dhc-social-card h3,
.dhc-hours-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.dhc-socials {
  display: flex;
  gap: 14px;
}

.dhc-socials a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid var(--dhc-border);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.035);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.dhc-socials a:hover {
  color: var(--dhc-pink);
  border-color: rgba(233, 38, 184, 0.6);
}

.dhc-hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--dhc-border);
}

.dhc-hours-card div:last-child {
  border-bottom: 0;
}

.dhc-hours-card span {
  color: var(--dhc-muted);
  font-size: 13px;
}

.dhc-hours-card strong {
  color: #ffffff;
  font-size: 13px;
  text-align: right;
}

/* SERVICE STRIP */

.dhc-service-strip {
  padding: 56px 0;
}

.dhc-service-strip__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.dhc-service-chip {
  min-height: 92px;
  padding: 22px;
  border: 1px solid var(--dhc-border);
  border-radius: 16px;
  background: var(--dhc-card);
}

.dhc-service-chip span {
  display: block;
  margin-bottom: 12px;
  color: var(--dhc-pink);
  font-size: 12px;
  font-weight: 900;
}

.dhc-service-chip strong {
  color: #ffffff;
  font-size: 16px;
}

/* FINAL CTA */

.dhc-final-cta {
  padding-top: 36px;
}

.dhc-final-card {
  position: relative;
  z-index: 2;
  min-height: 210px;
  padding: 44px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  background:
    radial-gradient(circle at 85% 28%, rgba(126, 45, 255, 0.22), transparent 34%),
    radial-gradient(circle at 10% 20%, rgba(233, 38, 184, 0.14), transparent 28%),
    var(--dhc-card);
}

.dhc-final-card h2 {
  font-size: clamp(34px, 3.3vw, 58px);
  line-height: 1.08;
}

.dhc-final-btn {
  min-width: 220px;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--dhc-pink), var(--dhc-purple));
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(233, 38, 184, 0.24);
}

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

@media (max-width: 1366px) {
  .dhc-container {
    width: min(100% - 48px, 1440px);
  }

  .dhc-contact-hero,
  .dhc-contact-main,
  .dhc-service-strip,
  .dhc-final-cta {
    padding: 64px 0;
  }

  .dhc-contact-hero {
    padding-top: 108px;
  }

  .dhc-hero-content h1 {
    font-size: clamp(48px, 4.5vw, 76px);
  }

  .dhc-hero-grid {
    gap: 48px;
  }
}

@media (max-width: 1180px) {
  .dhc-hero-grid,
  .dhc-main-grid {
    grid-template-columns: 1fr;
  }

  .dhc-info-panel {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .dhc-social-card,
  .dhc-hours-card {
    grid-column: span 1;
  }

  .dhc-service-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dhc-final-card {
    grid-template-columns: 1fr;
  }

  .dhc-final-btn {
    width: max-content;
  }
}

@media (max-width: 767px) {
  .dhc-container {
    width: min(100% - 28px, 1440px);
  }

  .dhc-contact-hero,
  .dhc-contact-main,
  .dhc-service-strip,
  .dhc-final-cta {
    padding: 48px 0;
  }

  .dhc-contact-hero {
    padding-top: 88px;
  }

  .dhc-hero-content h1 {
    font-size: 42px;
  }

  .dhc-hero-content > p {
    font-size: 14px;
    line-height: 1.65;
  }

  .dhc-hero-points {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 34px;
  }

  .dhc-hero-points div {
    min-height: auto;
    padding: 18px;
  }

  .dhc-hero-card,
  .dhc-form-card,
  .dhc-final-card {
    padding: 24px;
    border-radius: 18px;
  }

  .dhc-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }

  .dhc-card-icon svg {
    width: 28px;
    height: 28px;
  }

  .dhc-hero-card h2,
  .dhc-section-head h2,
  .dhc-final-card h2 {
    font-size: 32px;
  }

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

  .dhc-form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dhc-contact-form {
    gap: 18px;
  }

  .dhc-field input,
  .dhc-field select,
  .dhc-field textarea {
    min-height: 52px;
    font-size: 13px;
  }

  .dhc-field textarea {
    min-height: 130px;
  }

  .dhc-submit-btn {
    width: 100%;
    justify-content: center;
  }

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

  .dhc-info-card {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }

  .dhc-info-icon {
    width: 48px;
    height: 48px;
  }

  .dhc-info-card a,
  .dhc-info-card p {
    font-size: 14px;
  }

  .dhc-service-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .dhc-service-chip {
    min-height: auto;
    padding: 18px;
  }

  .dhc-service-chip strong {
    font-size: 14px;
  }

  .dhc-final-btn {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .dhc-hero-content h1 {
    font-size: 37px;
  }

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

  .dhc-socials {
    display: grid;
    grid-template-columns: repeat(4, 42px);
    gap: 10px;
  }

  .dhc-socials a {
    width: 42px;
    height: 42px;
  }

  .dhc-hours-card div {
    flex-direction: column;
    gap: 4px;
  }

  .dhc-hours-card strong {
    text-align: left;
  }
}

/* =========================================
   DHAWKS SEO SERVICE PAGE
========================================= */

.dhs-seo-page {
  --seo-bg: #05070d;
  --seo-card: rgba(255, 255, 255, 0.035);
  --seo-border: rgba(255, 255, 255, 0.12);
  --seo-muted: rgba(255, 255, 255, 0.68);
  --seo-soft: rgba(255, 255, 255, 0.84);
  --seo-pink: var(--pink, #e926b8);
  --seo-purple: var(--purple, #7f2dff);
  background: #05070d;
  color: #ffffff;
  overflow: hidden;
}

.dhs-seo-page * {
  box-sizing: border-box;
}

.dhs-seo-container {
  width: min(100% - 56px, 1680px);
  margin-inline: auto;
}

.dhs-seo-hero,
.dhs-seo-problem,
.dhs-seo-approach,
.dhs-seo-services,
.dhs-seo-growth,
.dhs-seo-industries,
.dhs-seo-deliverables,
.dhs-seo-metrics,
.dhs-seo-cases,
.dhs-seo-faq,
.dhs-seo-final {
  position: relative;
  padding: 82px 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(233, 38, 184, 0.08), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(126, 45, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #05070d, #03050a);
}

.dhs-seo-hero::before,
.dhs-seo-problem::before,
.dhs-seo-approach::before,
.dhs-seo-services::before,
.dhs-seo-growth::before,
.dhs-seo-industries::before,
.dhs-seo-deliverables::before,
.dhs-seo-metrics::before,
.dhs-seo-cases::before,
.dhs-seo-faq::before,
.dhs-seo-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.1;
  pointer-events: none;
}

.dhs-seo-kicker {
  margin: 0 0 16px;
  color: var(--seo-pink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dhs-seo-page h1,
.dhs-seo-page h2,
.dhs-seo-page h3 {
  font-family: var(--heading, 'Space Grotesk', sans-serif);
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.05em;
}

.dhs-seo-page p,
.dhs-seo-page a,
.dhs-seo-page summary,
.dhs-seo-page small {
  font-family: var(--body, 'Poppins', sans-serif);
}

/* HERO */

.dhs-seo-hero {
  padding-top: 120px;
  min-height: 760px;
  display: flex;
  align-items: center;
}

.dhs-seo-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 72px;
}

.dhs-seo-hero__content h1 {
  max-width: 870px;
  font-size: clamp(52px, 5vw, 92px);
  line-height: 1.03;
}

.dhs-seo-hero__content h1 span,
.dhs-seo-final__card h2 span {
  background: linear-gradient(135deg, #ff35c8, #8a35ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dhs-seo-hero__content > p {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--seo-muted);
  font-size: 17px;
  line-height: 1.75;
}

.dhs-seo-hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}

.dhs-seo-btn {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--seo-pink), var(--seo-purple));
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(233, 38, 184, 0.24);
  transition: all 0.25s ease;
}

.dhs-seo-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.dhs-seo-btn--outline {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(233, 38, 184, 0.42);
  box-shadow: none;
}

.dhs-seo-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.dhs-seo-trust-points span {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 100px;
  border: 1px solid var(--seo-border);
  display: inline-flex;
  align-items: center;
  color: var(--seo-soft);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 700;
}

/* Dashboard */

.dhs-seo-dashboard {
  position: relative;
  min-height: 560px;
  padding: 32px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 15%, rgba(126, 45, 255, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.4);
}

.dhs-seo-searchbar {
  min-height: 62px;
  padding: 0 22px;
  border-radius: 15px;
  border: 1px solid var(--seo-border);
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.dhs-seo-searchbar span,
.dhs-seo-searchbar svg {
  width: 22px;
  height: 22px;
  color: var(--seo-pink);
}

.dhs-seo-searchbar strong {
  font-size: 15px;
  color: #ffffff;
}

.dhs-seo-dashboard__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.dhs-seo-dashboard__top div,
.dhs-seo-graph-card,
.dhs-seo-keyword-stack div {
  border: 1px solid var(--seo-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.dhs-seo-dashboard__top div {
  padding: 24px;
}

.dhs-seo-dashboard__top small,
.dhs-seo-graph-head span {
  display: block;
  color: var(--seo-muted);
  font-size: 12px;
}

.dhs-seo-dashboard__top strong {
  display: block;
  margin-top: 10px;
  font-family: var(--heading, 'Space Grotesk', sans-serif);
  font-size: 42px;
  line-height: 1;
  color: var(--seo-pink);
}

.dhs-seo-dashboard__top p {
  margin: 8px 0 0;
  color: var(--seo-muted);
  font-size: 13px;
}

.dhs-seo-graph-card {
  padding: 24px;
  margin-top: 22px;
}

.dhs-seo-graph-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dhs-seo-graph-head strong {
  color: var(--seo-pink);
}

.dhs-seo-graph {
  height: 170px;
  display: flex;
  align-items: end;
  gap: 14px;
}

.dhs-seo-graph span {
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, var(--seo-pink), var(--seo-purple));
  box-shadow: 0 0 22px rgba(233, 38, 184, 0.25);
}

.dhs-seo-keyword-stack {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.dhs-seo-keyword-stack div {
  min-height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.dhs-seo-keyword-stack span {
  color: var(--seo-pink);
  font-weight: 900;
}

.dhs-seo-keyword-stack p {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
}

.dhs-seo-floating-card {
  position: absolute;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(233, 38, 184, 0.45);
  background: rgba(10, 14, 22, 0.86);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.card-one {
  top: -18px;
  right: 60px;
}

.card-two {
  bottom: 28px;
  right: -22px;
}

/* Animated Border */

.dhs-seo-border-spin {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--seo-border);
}

.dhs-seo-border-spin::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(
    from var(--seo-angle, 0deg),
    transparent 0deg,
    transparent 80deg,
    rgba(233, 38, 184, 0.9) 125deg,
    rgba(126, 45, 255, 0.9) 165deg,
    transparent 225deg,
    transparent 360deg
  );
  opacity: 0;
  animation: seoBorderRotate 4s linear infinite;
  transition: opacity 0.3s ease;
}

.dhs-seo-border-spin::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(12, 17, 26, 0.97), rgba(5, 8, 14, 0.96));
}

.dhs-seo-border-spin:hover::before,
.dhs-seo-dashboard::before,
.dhs-seo-final__card::before,
.dhs-seo-metrics__card::before {
  opacity: 1;
}

@property --seo-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes seoBorderRotate {
  to {
    --seo-angle: 360deg;
  }
}

/* General Sections */

.dhs-seo-two-col {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 72px;
}

.dhs-seo-section-head {
  position: relative;
  z-index: 2;
}

.dhs-seo-section-head--center {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.dhs-seo-section-head h2 {
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 1.08;
}

.dhs-seo-section-head > p:not(.dhs-seo-kicker) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--seo-muted);
  font-size: 16px;
  line-height: 1.7;
}

.dhs-seo-section-head--center > p:not(.dhs-seo-kicker) {
  margin-inline: auto;
}

/* Problem */

.dhs-seo-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.dhs-seo-problem-card {
  min-height: 205px;
  padding: 26px;
  border-radius: 17px;
  background: var(--seo-card);
}

.dhs-seo-problem-card span {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(233, 38, 184, 0.12);
  color: var(--seo-pink);
  font-weight: 900;
}

.dhs-seo-problem-card h3,
.dhs-seo-process-card h3,
.dhs-seo-service-card h3,
.dhs-seo-industry-card h3,
.dhs-seo-case-card h3 {
  font-size: 22px;
  line-height: 1.15;
}

.dhs-seo-problem-card p,
.dhs-seo-process-card p,
.dhs-seo-service-card p,
.dhs-seo-industry-card p,
.dhs-seo-case-card p {
  margin: 12px 0 0;
  color: var(--seo-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Process */

.dhs-seo-process {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dhs-seo-process-card {
  min-height: 230px;
  padding: 28px;
  border-radius: 17px;
  background: var(--seo-card);
}

.dhs-seo-process-card > span,
.dhs-seo-service-card > span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--seo-pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* Services */

.dhs-seo-service-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.dhs-seo-service-card {
  min-height: 280px;
  padding: 26px;
  border-radius: 17px;
  background: var(--seo-card);
}

/* Growth Engine */

.dhs-seo-growth__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: center;
}

.dhs-seo-engine {
  min-height: 520px;
  border-radius: 24px;
  background: var(--seo-card);
  position: relative;
  overflow: hidden;
}

.dhs-seo-engine::after {
  content: "";
  position: absolute;
  inset: 70px;
  border-radius: 50%;
  border: 1px solid rgba(233, 38, 184, 0.24);
  box-shadow:
    0 0 0 70px rgba(126, 45, 255, 0.04),
    0 0 0 140px rgba(233, 38, 184, 0.03);
}

.dhs-seo-engine__center {
  position: absolute;
  inset: 50%;
  width: 260px;
  min-height: 150px;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(233, 38, 184, 0.45);
  background: rgba(5, 8, 14, 0.86);
}

.dhs-seo-engine__center strong {
  font-family: var(--heading, 'Space Grotesk', sans-serif);
  font-size: 24px;
}

.dhs-seo-engine__center p {
  margin: 10px 0 0;
  color: var(--seo-muted);
  font-size: 13px;
  line-height: 1.5;
}

.dhs-seo-engine .node {
  position: absolute;
  z-index: 4;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--seo-border);
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.node-1 { top: 70px; left: 70px; }
.node-2 { top: 78px; right: 90px; }
.node-3 { top: 220px; left: 42px; }
.node-4 { top: 220px; right: 42px; }
.node-5 { bottom: 78px; left: 105px; }
.node-6 { bottom: 78px; right: 100px; }

/* Industries */

.dhs-seo-industry-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.dhs-seo-industry-card {
  min-height: 205px;
  padding: 26px;
  border-radius: 17px;
  background: var(--seo-card);
}

.dhs-seo-mini-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 13px;
  border: 1px solid rgba(233, 38, 184, 0.42);
  background:
    linear-gradient(135deg, rgba(233, 38, 184, 0.2), rgba(126, 45, 255, 0.16)),
    rgba(255, 255, 255, 0.035);
}

/* Deliverables */

.dhs-seo-checklist {
  padding: 30px;
  border-radius: 20px;
  background: var(--seo-card);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 22px;
}

.dhs-seo-checklist div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.dhs-seo-checklist span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(233, 38, 184, 0.12);
  color: var(--seo-pink);
  font-size: 13px;
  font-weight: 900;
}

.dhs-seo-checklist p {
  margin: 2px 0 0;
  color: var(--seo-soft);
  font-size: 14px;
  line-height: 1.45;
}

/* Metrics */

.dhs-seo-metrics__card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 20px;
  padding: 30px;
  background: var(--seo-card);
}

.dhs-seo-metrics__card div {
  text-align: center;
}

.dhs-seo-metrics__card div + div {
  border-left: 1px solid var(--seo-border);
}

.dhs-seo-metrics__card strong {
  display: block;
  font-family: var(--heading, 'Space Grotesk', sans-serif);
  font-size: 42px;
  line-height: 1;
  color: #ffffff;
}

.dhs-seo-metrics__card small {
  display: block;
  margin-top: 10px;
  color: var(--seo-muted);
  font-size: 13px;
}

.dhs-seo-metrics-note {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--seo-muted);
  text-align: center;
  font-size: 15px;
}

/* Cases */

.dhs-seo-case-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.dhs-seo-case-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--seo-card);
}

.dhs-seo-case-visual {
  height: 230px;
  background-size: cover;
  background-position: center;
}

.visual-one {
  background:
    radial-gradient(circle at 40% 40%, rgba(233, 38, 184, 0.35), transparent 18%),
    linear-gradient(135deg, #101622, #222b3a);
}

.visual-two {
  background:
    radial-gradient(circle at 56% 46%, rgba(126, 45, 255, 0.38), transparent 20%),
    linear-gradient(135deg, #101018, #253044);
}

.visual-three {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(135deg, #11150e, #36513f);
}

.dhs-seo-case-card > div:last-child {
  padding: 26px;
}

.dhs-seo-case-card small {
  color: var(--seo-pink);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.dhs-seo-case-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--seo-pink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

/* FAQ */

.dhs-seo-two-col--faq {
  grid-template-columns: 0.72fr 1.28fr;
}

.dhs-seo-faq-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.dhs-seo-faq-item {
  border: 1px solid var(--seo-border);
  border-radius: 16px;
  background: var(--seo-card);
  overflow: hidden;
}

.dhs-seo-faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.dhs-seo-faq-item summary::-webkit-details-marker {
  display: none;
}

.dhs-seo-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--seo-pink);
  font-size: 24px;
  line-height: 1;
}

.dhs-seo-faq-item[open] summary::after {
  content: "−";
}

.dhs-seo-faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--seo-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Final CTA */

.dhs-seo-final__card {
  position: relative;
  z-index: 2;
  min-height: 260px;
  padding: 46px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  background:
    radial-gradient(circle at 85% 20%, rgba(126, 45, 255, 0.22), transparent 34%),
    radial-gradient(circle at 10% 20%, rgba(233, 38, 184, 0.14), transparent 28%),
    var(--seo-card);
}

.dhs-seo-final__card h2 {
  max-width: 900px;
  font-size: clamp(34px, 3.3vw, 58px);
  line-height: 1.08;
}

.dhs-seo-final__actions {
  display: grid;
  gap: 16px;
  min-width: 280px;
}

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

@media (max-width: 1366px) {
  .dhs-seo-container {
    width: min(100% - 48px, 1440px);
  }

  .dhs-seo-hero,
  .dhs-seo-problem,
  .dhs-seo-approach,
  .dhs-seo-services,
  .dhs-seo-growth,
  .dhs-seo-industries,
  .dhs-seo-deliverables,
  .dhs-seo-metrics,
  .dhs-seo-cases,
  .dhs-seo-faq,
  .dhs-seo-final {
    padding: 68px 0;
  }

  .dhs-seo-hero {
    padding-top: 108px;
    min-height: 700px;
  }

  .dhs-seo-hero__content h1 {
    font-size: clamp(48px, 4.5vw, 76px);
  }

  .dhs-seo-service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1180px) {
  .dhs-seo-hero__grid,
  .dhs-seo-two-col,
  .dhs-seo-growth__grid,
  .dhs-seo-two-col--faq {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .dhs-seo-dashboard {
    min-height: auto;
  }

  .dhs-seo-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .dhs-seo-service-grid,
  .dhs-seo-industry-grid,
  .dhs-seo-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dhs-seo-engine {
    min-height: 480px;
  }

  .dhs-seo-final__card {
    grid-template-columns: 1fr;
  }

  .dhs-seo-final__actions {
    min-width: 0;
    width: max-content;
  }
}

@media (max-width: 767px) {
  .dhs-seo-container {
    width: min(100% - 28px, 1440px);
  }

  .dhs-seo-hero,
  .dhs-seo-problem,
  .dhs-seo-approach,
  .dhs-seo-services,
  .dhs-seo-growth,
  .dhs-seo-industries,
  .dhs-seo-deliverables,
  .dhs-seo-metrics,
  .dhs-seo-cases,
  .dhs-seo-faq,
  .dhs-seo-final {
    padding: 52px 0;
  }

  .dhs-seo-hero {
    padding-top: 88px;
  }

  .dhs-seo-hero__content h1 {
    font-size: 42px;
  }

  .dhs-seo-hero__content > p,
  .dhs-seo-section-head > p:not(.dhs-seo-kicker) {
    font-size: 14px;
    line-height: 1.65;
  }

  .dhs-seo-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dhs-seo-btn {
    width: 100%;
  }

  .dhs-seo-trust-points {
    gap: 10px;
  }

  .dhs-seo-trust-points span {
    min-height: 38px;
    font-size: 12px;
  }

  .dhs-seo-dashboard {
    padding: 22px;
    border-radius: 18px;
  }

  .dhs-seo-dashboard__top,
  .dhs-seo-problem-grid,
  .dhs-seo-process,
  .dhs-seo-service-grid,
  .dhs-seo-industry-grid,
  .dhs-seo-case-grid,
  .dhs-seo-checklist {
    grid-template-columns: 1fr;
  }

  .dhs-seo-floating-card {
    position: static;
    margin-top: 14px;
    width: max-content;
  }

  .dhs-seo-section-head h2 {
    font-size: 34px;
  }

  .dhs-seo-problem-card,
  .dhs-seo-process-card,
  .dhs-seo-service-card,
  .dhs-seo-industry-card {
    min-height: auto;
    padding: 22px;
  }

  .dhs-seo-engine {
    min-height: auto;
    padding: 22px;
    display: grid;
    gap: 14px;
  }

  .dhs-seo-engine::after {
    display: none;
  }

  .dhs-seo-engine__center {
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
  }

  .dhs-seo-engine .node {
    position: relative;
    inset: auto;
    width: 100%;
    justify-content: center;
  }

  .dhs-seo-metrics__card {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
    padding: 24px;
  }

  .dhs-seo-metrics__card div + div {
    border-left: 0;
  }

  .dhs-seo-metrics__card strong {
    font-size: 32px;
  }

  .dhs-seo-case-visual {
    height: 190px;
  }

  .dhs-seo-faq-item summary {
    padding: 18px;
    font-size: 14px;
  }

  .dhs-seo-faq-item p {
    padding: 0 18px 18px;
    font-size: 13px;
  }

  .dhs-seo-final__card {
    padding: 24px;
  }

  .dhs-seo-final__card h2 {
    font-size: 32px;
  }

  .dhs-seo-final__actions {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .dhs-seo-hero__content h1 {
    font-size: 36px;
  }

  .dhs-seo-section-head h2 {
    font-size: 30px;
  }

  .dhs-seo-searchbar {
    padding: 0 14px;
  }

  .dhs-seo-searchbar strong {
    font-size: 12px;
  }

  .dhs-seo-graph {
    height: 130px;
  }

  .dhs-seo-metrics__card {
    grid-template-columns: 1fr;
  }

  .dhs-seo-metrics__card div {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--seo-border);
  }

  .dhs-seo-metrics__card div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

/* =========================================
   SERVICE PAGES FIX:
   Problem Icons + Who We Help Icons + Growth System UI
========================================= */


/* -----------------------------------------
   1. THE PROBLEM SECTION ICON FIX
----------------------------------------- */

.dhs-seo-problem-card span {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 0;
  color: var(--seo-pink, #e926b8);
  border: 1px solid rgba(233, 38, 184, 0.38);
  background:
    radial-gradient(circle at 65% 25%, rgba(126, 45, 255, 0.24), transparent 48%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 0 28px rgba(233, 38, 184, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dhs-seo-problem-card span::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: currentColor;
  clip-path: polygon(50% 0%, 100% 88%, 0% 88%);
  opacity: 0.95;
}

.dhs-seo-problem-card span::after {
  content: "!";
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  color: #05070d;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}


/* -----------------------------------------
   2. WHO WE HELP ICON FIX
----------------------------------------- */

.dhs-seo-mini-icon {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 15px;
  border: 1px solid rgba(233, 38, 184, 0.42);
  background:
    radial-gradient(circle at 70% 22%, rgba(126, 45, 255, 0.24), transparent 48%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 0 28px rgba(233, 38, 184, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dhs-seo-mini-icon::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 2px solid var(--seo-pink, #e926b8);
  border-radius: 9px;
  transform: rotate(45deg);
}

.dhs-seo-mini-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--seo-pink, #e926b8);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 18px rgba(233, 38, 184, 0.65);
}


/* -----------------------------------------
   3. IMPROVED GROWTH SYSTEM SECTION
----------------------------------------- */

.dhs-seo-growth__grid {
  align-items: center;
}

.dhs-seo-engine {
  position: relative;
  min-height: auto;
  padding: 34px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 5%, rgba(126, 45, 255, 0.18), transparent 38%),
    radial-gradient(circle at 50% 95%, rgba(233, 38, 184, 0.14), transparent 35%),
    rgba(255, 255, 255, 0.035);
}

.dhs-seo-engine::after {
  display: none;
}

.dhs-seo-engine::before {
  opacity: 1;
}

.dhs-seo-engine {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dhs-seo-engine__center {
  position: relative;
  inset: auto;
  transform: none;
  width: 100%;
  min-height: 160px;
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
  border-radius: 20px;
  border: 1px solid rgba(233, 38, 184, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(233, 38, 184, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(13, 18, 27, 0.94), rgba(5, 8, 14, 0.94));
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dhs-seo-engine__center::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px solid rgba(233, 38, 184, 0.22);
  box-shadow:
    0 0 0 42px rgba(126, 45, 255, 0.035),
    0 0 44px rgba(233, 38, 184, 0.16);
  pointer-events: none;
}

.dhs-seo-engine__center strong,
.dhs-seo-engine__center p {
  position: relative;
  z-index: 2;
}

.dhs-seo-engine__center strong {
  max-width: 360px;
  font-family: var(--heading, 'Space Grotesk', sans-serif);
  font-size: 32px;
  line-height: 1.18;
  color: #ffffff;
}

.dhs-seo-engine__center p {
  max-width: 440px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.dhs-seo-engine .node {
  position: relative !important;
  inset: auto !important;
  min-height: 62px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(15, 20, 30, 0.82), rgba(7, 10, 17, 0.88));
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
}

.dhs-seo-engine .node::before {
  content: "";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 9px;
  border: 2px solid var(--seo-pink, #e926b8);
  transform: rotate(45deg);
  box-shadow: 0 0 22px rgba(233, 38, 184, 0.22);
}

.dhs-seo-engine .node:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 38, 184, 0.48);
  color: #ffffff;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.26),
    0 0 28px rgba(233, 38, 184, 0.12);
}


/* -----------------------------------------
   4. MAKE CARDS MORE CONSISTENT
----------------------------------------- */

.dhs-seo-problem-card,
.dhs-seo-industry-card,
.dhs-seo-service-card,
.dhs-seo-process-card {
  transition: all 0.25s ease;
}

.dhs-seo-problem-card:hover,
.dhs-seo-industry-card:hover,
.dhs-seo-service-card:hover,
.dhs-seo-process-card:hover {
  transform: translateY(-5px);
}


/* -----------------------------------------
   5. RESPONSIVE FIXES
----------------------------------------- */

@media (max-width: 1180px) {
  .dhs-seo-growth__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .dhs-seo-engine {
    padding: 28px;
  }

  .dhs-seo-engine__center {
    min-height: 145px;
  }
}

@media (max-width: 767px) {
  .dhs-seo-problem-card span,
  .dhs-seo-mini-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
  }

  .dhs-seo-problem-card span::before {
    width: 21px;
    height: 21px;
  }

  .dhs-seo-problem-card span::after {
    top: 12px;
    font-size: 13px;
  }

  .dhs-seo-mini-icon::before {
    inset: 12px;
    border-radius: 7px;
  }

  .dhs-seo-mini-icon::after {
    width: 7px;
    height: 7px;
  }

  .dhs-seo-engine {
    grid-template-columns: 1fr;
    padding: 22px;
    border-radius: 18px;
    gap: 12px;
  }

  .dhs-seo-engine__center {
    min-height: 135px;
    padding: 24px;
    border-radius: 16px;
  }

  .dhs-seo-engine__center::before {
    width: 130px;
    height: 130px;
    box-shadow:
      0 0 0 28px rgba(126, 45, 255, 0.035),
      0 0 34px rgba(233, 38, 184, 0.14);
  }

  .dhs-seo-engine__center strong {
    font-size: 24px;
  }

  .dhs-seo-engine__center p {
    font-size: 12px;
  }

  .dhs-seo-engine .node {
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 12px;
  }

  .dhs-seo-engine .node::before {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    border-radius: 7px;
    border-width: 2px;
  }
}

@media (max-width: 430px) {
  .dhs-seo-engine {
    padding: 18px;
  }

  .dhs-seo-engine__center strong {
    font-size: 22px;
  }

  .dhs-seo-engine .node {
    font-size: 11.5px;
  }
}

/* =========================================
   SERVICE PAGES - RELATIVE PROBLEM ICONS
========================================= */

.dhs-seo-problem-card .dhs-problem-icon {
  position: relative;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  font-size: initial;
  color: var(--seo-pink, #e926b8);
  border: 1px solid rgba(233, 38, 184, 0.42);
  background:
    radial-gradient(circle at 70% 22%, rgba(126, 45, 255, 0.26), transparent 48%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 0 30px rgba(233, 38, 184, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dhs-seo-problem-card .dhs-problem-icon::before,
.dhs-seo-problem-card .dhs-problem-icon::after {
  display: none !important;
  content: none !important;
}

.dhs-seo-problem-card .dhs-problem-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  stroke: currentColor;
  position: relative;
  z-index: 2;
}

.dhs-seo-problem-card .dhs-problem-icon:hover {
  border-color: rgba(233, 38, 184, 0.72);
  box-shadow:
    0 0 36px rgba(233, 38, 184, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (max-width: 767px) {
  .dhs-seo-problem-card .dhs-problem-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 13px;
  }

  .dhs-seo-problem-card .dhs-problem-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* =========================================================
   DHawks Projects Page - Clean Static Border Version
========================================================= */

.dhp-projects-page,
.dhp-single-project {
  background:
    radial-gradient(circle at 20% 10%, rgba(205, 36, 190, 0.14), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(93, 74, 255, 0.16), transparent 34%),
    #05070d;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.dhp-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.dhp-kicker {
  margin: 0 0 14px;
  color: #ef3bd4;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 800;
}

.dhp-projects-hero {
  padding: 145px 0 70px;
  position: relative;
}

.dhp-projects-hero__grid,
.dhp-single-hero__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.dhp-projects-hero__content h1,
.dhp-single-hero__content h1 {
  margin: 0;
  max-width: 680px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(44px, 5.5vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: #f7f7fb;
}

.dhp-projects-hero__content h1 span,
.dhp-single-hero__content h1 span {
  background: linear-gradient(90deg, #ef3bd4, #7b4cff, #28d7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dhp-projects-hero__content > p:not(.dhp-kicker),
.dhp-single-hero__content > p:not(.dhp-kicker),
.dhp-section-head p,
.dhp-content-card p,
.dhp-project-card__body p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  font-size: 15.5px;
}

.dhp-projects-hero__content > p:not(.dhp-kicker),
.dhp-single-hero__content > p:not(.dhp-kicker) {
  max-width: 560px;
  margin: 24px 0 0;
}

.dhp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.dhp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 9px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, #ec2fba, #7b3cff, #1aa7ff);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(136, 61, 255, 0.25);
  transition: 0.3s ease;
}

.dhp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(236, 47, 186, 0.28);
}

.dhp-btn--outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.dhp-btn span {
  transition: 0.3s ease;
}

.dhp-btn:hover span {
  transform: translateX(4px);
}

/* Static glass border - no rotating animation */
.dhp-border-spin {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #070a12;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.35);
}

.dhp-border-spin::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(239, 59, 212, 0.65),
    rgba(123, 76, 255, 0.35),
    rgba(40, 215, 255, 0.45),
    rgba(255, 255, 255, 0.08)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
}

.dhp-border-spin::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 15% 10%, rgba(239, 59, 212, 0.08), transparent 32%),
    radial-gradient(circle at 85% 90%, rgba(40, 215, 255, 0.06), transparent 34%);
  pointer-events: none;
  z-index: 0;
}

.dhp-border-spin > * {
  position: relative;
  z-index: 1;
}

/* Hero Impact Card */

.dhp-impact-card {
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(18px);
}

.dhp-impact-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.dhp-impact-card__head div {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.84);
}

.dhp-mini-icon {
  color: #ef3bd4;
}

.dhp-filter-pill {
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.dhp-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dhp-impact-box {
  min-height: 112px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dhp-impact-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ef3bd4;
  border-radius: 10px;
  background: rgba(239, 59, 212, 0.12);
  margin-bottom: 14px;
}

.dhp-impact-box strong {
  display: block;
  font-size: 26px;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
}

.dhp-impact-box small {
  color: rgba(255, 255, 255, 0.64);
}

.dhp-growth-card {
  margin-top: 16px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.dhp-growth-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.dhp-growth-head strong {
  color: #28f0c7;
  font-size: 22px;
}

.dhp-growth-line {
  height: 92px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.dhp-growth-line span {
  flex: 1;
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #28d7ff, #7b4cff, #ef3bd4);
  opacity: 0.9;
}

/* Projects List */

.dhp-projects-list {
  padding: 55px 0 55px;
}

.dhp-section-head {
  max-width: 720px;
}

.dhp-section-head--center {
  text-align: center;
  margin: 0 auto;
}

.dhp-section-head h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.dhp-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 34px;
}

.dhp-filter-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s ease;
  font-weight: 600;
}

.dhp-filter-btn.active,
.dhp-filter-btn:hover {
  color: #ffffff;
  border-color: rgba(239, 59, 212, 0.5);
  background: linear-gradient(135deg, rgba(239, 59, 212, 0.34), rgba(123, 76, 255, 0.32));
}

.dhp-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dhp-project-card {
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s ease;
}

.dhp-project-card:hover {
  transform: translateY(-6px);
}

.dhp-project-thumb {
  display: block;
  height: 220px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.dhp-project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.dhp-project-card:hover .dhp-project-thumb img {
  transform: scale(1.06);
}

.dhp-project-thumb__placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at 30% 20%, rgba(239, 59, 212, 0.25), transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(40, 215, 255, 0.18), transparent 35%),
    rgba(255, 255, 255, 0.04);
}

.dhp-project-thumb__placeholder span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.dhp-project-card__body {
  padding: 22px;
}

.dhp-project-category {
  margin: 0 0 10px !important;
  color: #ef3bd4 !important;
  text-transform: uppercase;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.dhp-project-card h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  line-height: 1.18;
}

.dhp-project-card h3 a {
  color: #ffffff;
  text-decoration: none;
}

.dhp-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.dhp-project-tags span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.dhp-project-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
}

.dhp-project-actions a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.dhp-project-actions a span {
  color: #ef3bd4;
  margin-left: 5px;
}

.dhp-empty-projects {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Highlight */

.dhp-project-highlight {
  padding: 40px 0 80px;
}

.dhp-highlight-card {
  border-radius: 20px;
  padding: 34px 42px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}

.dhp-highlight-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 44px;
  background: radial-gradient(circle, rgba(239, 59, 212, 0.28), rgba(123, 76, 255, 0.1));
  color: #ef3bd4;
  border: 1px solid rgba(239, 59, 212, 0.35);
}

.dhp-highlight-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

/* Final CTA */

.dhp-project-final {
  padding: 70px 0 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dhp-final-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.dhp-final-visual {
  min-height: 330px;
  border-radius: 20px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.dhp-orbit {
  position: relative;
  width: 230px;
  height: 230px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.dhp-orbit::before,
.dhp-orbit::after {
  content: "";
  position: absolute;
  inset: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dhp-orbit::after {
  inset: 76px;
}

.dhp-orbit .center,
.dhp-orbit .orb {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(123, 76, 255, 0.28);
  border: 1px solid rgba(239, 59, 212, 0.3);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.dhp-orbit .center {
  width: 58px;
  height: 58px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.dhp-orbit .orb {
  width: 50px;
  height: 50px;
}

.dhp-orbit .orb-1 {
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.dhp-orbit .orb-2 {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.dhp-orbit .orb-3 {
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.dhp-orbit .orb-4 {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.dhp-final-visual ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dhp-final-visual li {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 20px;
  position: relative;
  padding-left: 34px;
}

.dhp-final-visual li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #28d7ff;
  background: rgba(40, 215, 255, 0.12);
  border: 1px solid rgba(40, 215, 255, 0.22);
}

/* Single Project */

.dhp-single-hero {
  padding: 145px 0 60px;
}

.dhp-single-featured {
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
}

.dhp-single-featured img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.dhp-project-overview {
  padding: 30px 0;
}

.dhp-overview-grid {
  border-radius: 18px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.dhp-overview-grid span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dhp-overview-grid strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
}

.dhp-project-content {
  padding: 50px 0 120px;
}

.dhp-content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: start;
}

.dhp-content-main {
  display: grid;
  gap: 24px;
}

.dhp-content-card,
.dhp-content-sidebar {
  border-radius: 18px;
  padding: 30px;
}

.dhp-content-card h2,
.dhp-content-sidebar h3 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  line-height: 1.15;
}

.dhp-content-sidebar {
  position: sticky;
  top: 120px;
}

.dhp-content-sidebar .dhp-btn {
  width: 100%;
  margin-top: 26px;
}

/* Responsive */

@media (max-width: 1100px) {
  .dhp-projects-hero__grid,
  .dhp-single-hero__grid,
  .dhp-final-grid {
    grid-template-columns: 1fr;
  }

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

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

  .dhp-content-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {
  .dhp-container {
    width: min(100% - 30px, 1280px);
  }

  .dhp-projects-hero,
  .dhp-single-hero {
    padding: 120px 0 45px;
  }

  .dhp-projects-hero__content h1,
  .dhp-single-hero__content h1 {
    font-size: 44px;
  }

  .dhp-hero-actions {
    flex-direction: column;
  }

  .dhp-btn {
    width: 100%;
  }

  .dhp-impact-card {
    padding: 18px;
    border-radius: 20px;
  }

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

  .dhp-impact-box {
    min-height: 96px;
    padding: 14px;
  }

  .dhp-project-grid {
    grid-template-columns: 1fr;
  }

  .dhp-filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .dhp-filter-btn {
    flex: 0 0 auto;
    padding: 10px 18px;
  }

  .dhp-highlight-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .dhp-highlight-icon {
    width: 76px;
    height: 76px;
    font-size: 34px;
  }

  .dhp-final-visual {
    grid-template-columns: 1fr;
  }

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

  .dhp-single-featured,
  .dhp-single-featured img {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .dhp-projects-hero__content h1,
  .dhp-single-hero__content h1 {
    font-size: 38px;
  }

  .dhp-section-head h2 {
    font-size: 34px;
  }

  .dhp-impact-grid,
  .dhp-overview-grid {
    grid-template-columns: 1fr;
  }

  .dhp-project-card__body,
  .dhp-content-card,
  .dhp-content-sidebar {
    padding: 22px;
  }

  .dhp-project-actions {
    flex-direction: column;
  }

  .dhp-orbit {
    width: 210px;
    height: 210px;
  }
}

/* =========================================================
   DHawks Blog Pages
========================================================= */

.dhb-blog-page,
.dhb-single-blog {
  background:
    radial-gradient(circle at 18% 10%, rgba(236, 47, 186, 0.12), transparent 34%),
    radial-gradient(circle at 88% 22%, rgba(40, 215, 255, 0.11), transparent 35%),
    #05070d;
  color: #fff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.dhb-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.dhb-kicker {
  margin: 0 0 14px;
  color: #ef3bd4;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 800;
}

.dhb-blog-hero {
  padding: 145px 0 50px;
}

.dhb-blog-hero__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.dhb-blog-hero__content h1,
.dhb-single-hero__content h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.dhb-blog-hero__content h1 span,
.dhb-single-hero__content h1 span {
  background: linear-gradient(90deg, #ef3bd4, #7b4cff, #28d7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dhb-blog-hero__content > p,
.dhb-single-hero__content > p,
.dhb-section-head p,
.dhb-post-body p,
.dhb-featured-content p,
.dhb-sidebar-card p,
.dhb-sidebar-cta p,
.dhb-final-card p,
.dhb-article-content p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  font-size: 15.5px;
}

.dhb-blog-hero__content > p,
.dhb-single-hero__content > p {
  max-width: 600px;
  margin: 24px 0 0;
}

.dhb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.dhb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 9px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, #ec2fba, #7b3cff, #1aa7ff);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 40px rgba(136, 61, 255, 0.25);
  transition: 0.3s ease;
}

.dhb-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(236, 47, 186, 0.28);
}

.dhb-btn--outline {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: none;
}

.dhb-btn span {
  transition: 0.3s ease;
}

.dhb-btn:hover span {
  transform: translateX(4px);
}

/* Glass Card */

.dhb-glass-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.11);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025)),
    #070a12;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 24px 70px rgba(0,0,0,0.35);
}

.dhb-glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(239,59,212,0.48),
    rgba(123,76,255,0.28),
    rgba(40,215,255,0.38),
    rgba(255,255,255,0.06)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}

.dhb-glass-card > * {
  position: relative;
  z-index: 1;
}

/* Hero Insight Card */

.dhb-insight-card {
  padding: 28px;
  border-radius: 26px;
}

.dhb-insight-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.dhb-insight-head p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}

.dhb-insight-head span {
  color: #ef3bd4;
}

.dhb-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dhb-insight-grid div {
  min-height: 115px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.dhb-insight-grid span {
  display: block;
  color: #ef3bd4;
  font-size: 26px;
  margin-bottom: 18px;
}

.dhb-insight-grid strong {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
}

.dhb-performance-card {
  margin-top: 18px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
}

.dhb-performance-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.dhb-performance-head strong {
  color: #28f0c7;
  font-size: 23px;
}

.dhb-performance-bars {
  height: 90px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.dhb-performance-bars span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #28d7ff, #7b4cff, #ef3bd4);
}

/* Featured */

.dhb-featured {
  padding: 34px 0 20px;
}

.dhb-featured-card {
  padding: 38px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.dhb-featured-content h2 {
  margin: 14px 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.dhb-featured-content h2 a,
.dhb-post-body h3 a {
  color: #ffffff;
  text-decoration: none;
}

.dhb-featured-image,
.dhb-post-thumb {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
}

.dhb-featured-image {
  height: 360px;
}

.dhb-featured-image img,
.dhb-post-thumb img,
.dhb-single-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.dhb-featured-card:hover .dhb-featured-image img,
.dhb-post-card:hover .dhb-post-thumb img {
  transform: scale(1.06);
}

.dhb-category {
  color: #ef3bd4;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.dhb-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  margin-top: 18px;
}

.dhb-read-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
  color: #ef3bd4;
  text-decoration: none;
  font-weight: 800;
}

.dhb-read-link span {
  transition: 0.3s ease;
}

.dhb-read-link:hover span {
  transform: translateX(4px);
}

/* Category Tabs */

.dhb-category-tabs-section {
  padding: 12px 0 12px;
}

.dhb-category-tabs {
  padding: 18px;
  display: flex;
  gap: 14px;
  overflow-x: auto;
}

.dhb-category-tabs a {
  flex: 0 0 auto;
  padding: 12px 24px;
  border-radius: 8px;
  color: rgba(255,255,255,0.76);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.dhb-category-tabs a.active,
.dhb-category-tabs a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(239,59,212,0.8), rgba(123,76,255,0.75));
}

/* Blog Main */

.dhb-blog-main {
  padding: 35px 0 70px;
}

.dhb-blog-layout,
.dhb-single-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: start;
}

.dhb-section-head {
  margin-bottom: 24px;
}

.dhb-section-head h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.dhb-post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dhb-post-card {
  overflow: hidden;
  transition: 0.3s ease;
}

.dhb-post-card:hover {
  transform: translateY(-5px);
}

.dhb-post-thumb {
  height: 230px;
  border-radius: 18px 18px 0 0;
}

.dhb-post-body {
  padding: 22px;
}

.dhb-post-body h3 {
  margin: 10px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

/* Sidebar */

.dhb-sidebar {
  display: grid;
  gap: 20px;
}

.dhb-single-sidebar {
  position: sticky;
  top: 110px;
}

.dhb-sidebar-card,
.dhb-sidebar-cta {
  padding: 24px;
}

.dhb-sidebar-card h3,
.dhb-sidebar-cta h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
}

.dhb-search-form {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}

.dhb-search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  padding: 15px;
  outline: none;
}

.dhb-search-form button {
  width: 54px;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, #ec2fba, #7b3cff);
}

.dhb-recent-list {
  display: grid;
  gap: 16px;
}

.dhb-recent-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  text-decoration: none;
  align-items: center;
}

.dhb-recent-item span {
  width: 74px;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

.dhb-recent-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dhb-recent-item strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
}

.dhb-recent-item small {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

.dhb-topic-list {
  display: grid;
  gap: 12px;
}

.dhb-topic-list a {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
}

.dhb-topic-list small {
  color: #ef3bd4;
  background: rgba(239,59,212,0.09);
  padding: 3px 8px;
  border-radius: 99px;
}

.dhb-tag-list,
.dhb-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.dhb-tag-list a,
.dhb-post-tags a {
  color: rgba(255,255,255,0.76);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
}

.dhb-sidebar-cta {
  background:
    radial-gradient(circle at 80% 15%, rgba(123,76,255,0.28), transparent 35%),
    linear-gradient(145deg, rgba(239,59,212,0.12), rgba(255,255,255,0.025)),
    #070a12;
}

.dhb-cta-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ef3bd4;
  font-size: 30px;
  background: rgba(239,59,212,0.1);
  border: 1px solid rgba(239,59,212,0.35);
  margin-bottom: 20px;
}

.dhb-sidebar-cta .dhb-btn {
  width: 100%;
  margin-top: 18px;
}

/* Pagination */

.dhb-pagination {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.dhb-pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}

.dhb-pagination .current,
.dhb-pagination .page-numbers:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #ec2fba, #7b3cff);
}

/* Final CTA */

.dhb-final-cta {
  padding: 20px 0 110px;
}

.dhb-final-card {
  padding: 34px 42px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.dhb-final-card h2 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
}

/* Single Blog */

.dhb-single-hero {
  padding: 135px 0 40px;
}

.dhb-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: rgba(255,255,255,0.52);
  margin-bottom: 40px;
  font-size: 13px;
}

.dhb-breadcrumbs a {
  color: rgba(255,255,255,0.62);
  text-decoration: none;
}

.dhb-single-hero__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: start;
}

.dhb-author-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.dhb-author-logo {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(239,59,212,0.12);
  border: 1px solid rgba(239,59,212,0.28);
  overflow: hidden;
}

.dhb-author-logo img {
  width: 120px;
  max-width: none;
}

.dhb-share-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.dhb-share-box span {
  color: rgba(255,255,255,0.72);
}

.dhb-share-box a,
.dhb-share-box button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
}

.dhb-single-featured {
  margin-top: 42px;
  height: 430px;
  border-radius: 18px;
  overflow: hidden;
}

.dhb-single-main {
  padding: 38px 0 110px;
}

.dhb-article-content {
  padding: 42px;
}

.dhb-article-content h2,
.dhb-article-content h3,
.dhb-article-content h4 {
  font-family: "Space Grotesk", sans-serif;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.dhb-article-content h2 {
  margin: 44px 0 16px;
  font-size: 34px;
}

.dhb-article-content h3 {
  margin: 32px 0 14px;
  font-size: 26px;
}

.dhb-article-content p {
  margin: 0 0 20px;
}

.dhb-article-content a {
  color: #ef3bd4;
}

.dhb-article-content ul,
.dhb-article-content ol {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  padding-left: 22px;
  margin-bottom: 24px;
}

.dhb-article-content blockquote {
  margin: 30px 0;
  padding: 24px 28px;
  border-left: 4px solid #ef3bd4;
  background: rgba(255,255,255,0.045);
  border-radius: 12px;
  color: rgba(255,255,255,0.82);
}

.dhb-article-content img {
  border-radius: 14px;
  max-width: 100%;
  height: auto;
}

.dhb-article-content table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
}

.dhb-article-content th,
.dhb-article-content td {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px;
}

.dhb-toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.dhb-toc a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: 0.25s ease;
}

.dhb-toc a:hover {
  color: #ef3bd4;
}

.dhb-article-cta {
  margin-top: 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.dhb-article-cta h3 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.dhb-post-tags {
  margin-top: 24px;
  align-items: center;
}

.dhb-post-tags > span {
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}

.dhb-post-nav {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.dhb-post-nav a {
  display: block;
  padding: 22px;
  border-radius: 14px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
}

.dhb-post-nav strong {
  color: #ffffff;
  display: block;
  margin-top: 6px;
}

.dhb-author-box {
  margin-top: 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  align-items: center;
}

.dhb-author-box span {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(239,59,212,0.11);
  border: 1px solid rgba(239,59,212,0.22);
}

.dhb-author-box img {
  width: 180px;
  max-width: none;
}

.dhb-author-box h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.dhb-related-section {
  margin-top: 46px;
}

.dhb-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dhb-image-placeholder {
  height: 100%;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 25% 20%, rgba(239,59,212,0.22), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(40,215,255,0.18), transparent 35%),
    rgba(255,255,255,0.04);
}

.dhb-image-placeholder span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

/* Responsive */

@media (max-width: 1100px) {
  .dhb-blog-hero__grid,
  .dhb-blog-layout,
  .dhb-single-layout,
  .dhb-single-hero__grid {
    grid-template-columns: 1fr;
  }

  .dhb-single-sidebar {
    position: relative;
    top: auto;
  }

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

@media (max-width: 820px) {
  .dhb-container {
    width: min(100% - 30px, 1280px);
  }

  .dhb-blog-hero,
  .dhb-single-hero {
    padding: 120px 0 40px;
  }

  .dhb-blog-hero__content h1,
  .dhb-single-hero__content h1 {
    font-size: 42px;
  }

  .dhb-actions,
  .dhb-final-card,
  .dhb-article-cta {
    flex-direction: column;
    display: flex;
    align-items: stretch;
  }

  .dhb-btn {
    width: 100%;
  }

  .dhb-insight-grid,
  .dhb-featured-card,
  .dhb-post-grid,
  .dhb-related-grid {
    grid-template-columns: 1fr;
  }

  .dhb-featured-card {
    padding: 24px;
  }

  .dhb-featured-image,
  .dhb-single-featured {
    height: 270px;
  }

  .dhb-category-tabs {
    padding: 14px;
  }

  .dhb-post-thumb {
    height: 210px;
  }

  .dhb-article-content {
    padding: 28px;
  }

  .dhb-article-content h2 {
    font-size: 28px;
  }

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

  .dhb-author-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dhb-author-box span {
    margin: 0 auto;
  }

  .dhb-share-box {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .dhb-blog-hero__content h1,
  .dhb-single-hero__content h1 {
    font-size: 36px;
  }

  .dhb-insight-card {
    padding: 18px;
  }

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

  .dhb-insight-grid div {
    min-height: 96px;
    padding: 14px;
  }

  .dhb-featured-content h2,
  .dhb-section-head h2 {
    font-size: 31px;
  }

  .dhb-sidebar-card,
  .dhb-sidebar-cta,
  .dhb-post-body,
  .dhb-article-content {
    padding: 22px;
  }

  .dhb-single-featured {
    height: 230px;
  }

  .dhb-author-meta {
    gap: 12px;
  }
}

/* =====================================================
   DHawks Hero Section - Premium Final Layout
===================================================== */

.dh-home-hero {
    min-height: auto !important;
    height: auto !important;
    padding: 105px 0 36px !important;
    margin: 0 !important;
    overflow: hidden !important;
    position: relative !important;
}

.dh-home-hero .dh-home-container {
    width: 100% !important;
    max-width: 1480px !important;
    margin: 0 auto !important;
    padding: 0 36px !important;
}

/* Main hero grid */
.dh-hero-grid {
    display: grid !important;
    grid-template-columns: 43% 57% !important;
    align-items: center !important;
    gap: 16px !important;
    min-height: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Left content */
.dh-hero-content {
    max-width: 710px !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 5 !important;
}

.dh-hero-content .dh-kicker {
    margin: 0 0 18px !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    line-height: 1 !important;
}

.dh-hero-content h1 {
    font-size: clamp(58px, 5.15vw, 84px) !important;
    line-height: 0.98 !important;
    letter-spacing: -3.4px !important;
    margin: 0 0 24px !important;
}

.dh-hero-content h1 span {
    background: linear-gradient(90deg, #ff2fcf 0%, #9b35ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.dh-hero-desc {
    max-width: 650px !important;
    font-size: 20px !important;
    line-height: 1.5 !important;
    margin: 0 0 26px !important;
    color: rgba(255, 255, 255, 0.72) !important;
}

/* CTA */
.dh-hero-actions {
    margin: 0 !important;
    padding: 0 !important;
}

.dh-primary-btn {
    min-height: 62px !important;
    padding: 0 34px !important;
    border-radius: 14px !important;
    box-shadow: 0 18px 42px rgba(236, 45, 197, 0.22) !important;
}

/* Right visual */
.dh-hero-visual {
    position: relative !important;
    width: 100% !important;
    min-height: 540px !important;
    height: 540px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

/* Hawk image */
.dh-hawk-img {
    width: 100% !important;
    max-width: 840px !important;
    height: 540px !important;
    max-height: 540px !important;
    object-fit: contain !important;
    object-position: right center !important;
    display: block !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 2 !important;
    filter: drop-shadow(0 28px 70px rgba(229, 39, 205, 0.18)) !important;
}

/* Orbit background */
.dh-orbit {
    position: absolute !important;
    pointer-events: none !important;
    z-index: 1 !important;
    opacity: 0.58 !important;
}

/* Floating stat card */
.dh-floating-stat {
    position: absolute !important;
    top: 82px !important;
    left: 0 !important;
    width: 360px !important;
    max-width: 360px !important;
    min-height: auto !important;
    padding: 30px 32px !important;
    margin: 0 !important;
    border-radius: 22px !important;
    z-index: 6 !important;
    transform: none !important;
    background: linear-gradient(145deg, rgba(10, 13, 25, 0.96), rgba(8, 9, 18, 0.88)) !important;
    border: 1px solid rgba(255, 47, 207, 0.26) !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 42px rgba(229, 39, 205, 0.08) !important;
    backdrop-filter: blur(14px) !important;
}

.dh-floating-stat .dh-stat-label {
    margin-bottom: 26px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
}

.dh-floating-stat strong {
    display: block !important;
    font-size: 58px !important;
    line-height: 0.95 !important;
    margin-bottom: 14px !important;
    color: #f032c9 !important;
}

.dh-floating-stat p {
    margin: 0 0 22px !important;
    font-size: 17px !important;
    line-height: 1.35 !important;
    color: rgba(255, 255, 255, 0.72) !important;
}

.dh-floating-stat a {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #ff3bd1 !important;
}

/* =====================================================
   Trusted Logo Carousel
===================================================== */

.dh-trusted,
.dh-trusted-full,
.dh-client-carousel-wrap {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.dh-trusted::before,
.dh-trusted::after,
.dh-trusted-full::before,
.dh-trusted-full::after,
.dh-client-carousel-wrap::before,
.dh-client-carousel-wrap::after {
    display: none !important;
    content: none !important;
}

/* 30px margin top added here */
.dh-trusted.dh-client-carousel-wrap {
    width: 100% !important;
    margin: 30px 0 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    z-index: 4 !important;
}

.dh-trusted.dh-client-carousel-wrap small {
    display: block !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    letter-spacing: 2.8px !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.52) !important;
}

/* Carousel viewport */
.dh-client-carousel {
    width: 100% !important;
    max-width: 1360px !important;
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
    padding: 12px 0 14px !important;
    margin: 0 !important;
}

/* Fade edges */
.dh-client-carousel::before,
.dh-client-carousel::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    width: 90px !important;
    height: 100% !important;
    z-index: 3 !important;
    pointer-events: none !important;
    display: block !important;
}

.dh-client-carousel::before {
    left: 0 !important;
    background: linear-gradient(90deg, #03050b 0%, rgba(3, 5, 11, 0) 100%) !important;
}

.dh-client-carousel::after {
    right: 0 !important;
    background: linear-gradient(270deg, #03050b 0%, rgba(3, 5, 11, 0) 100%) !important;
}

/* Logo row */
.dh-client-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 46px !important;

    width: max-content !important;
    min-width: max-content !important;
    max-width: none !important;

    white-space: nowrap !important;
    animation: dhLogoMarqueeLeft 56s linear infinite !important;
    will-change: transform !important;
}

/* Logo sizing */
.dh-client-track img {
    display: block !important;
    flex: 0 0 175px !important;

    width: 175px !important;
    min-width: 175px !important;
    max-width: 175px !important;

    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;

    object-fit: contain !important;
    object-position: center !important;

    opacity: 0.66 !important;
    filter: grayscale(1) brightness(0) invert(1) !important;
    transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease !important;
}

.dh-client-track img:hover {
    opacity: 1 !important;
    transform: translateY(-2px) !important;
    filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 0 14px rgba(255, 47, 207, 0.2)) !important;
}

.dh-client-carousel:hover .dh-client-track {
    animation-play-state: paused !important;
}

/* Right to left movement */
@keyframes dhLogoMarqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =====================================================
   Tablet
===================================================== */

@media (max-width: 1024px) {
    .dh-home-hero {
        padding: 92px 0 34px !important;
    }

    .dh-home-hero .dh-home-container {
        padding: 0 28px !important;
    }

    .dh-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .dh-hero-content {
        max-width: 820px !important;
    }

    .dh-hero-content h1 {
        font-size: clamp(50px, 8vw, 72px) !important;
        letter-spacing: -2.4px !important;
    }

    .dh-hero-visual {
        height: auto !important;
        min-height: 440px !important;
        justify-content: center !important;
    }

    .dh-hawk-img {
        max-width: 760px !important;
        height: auto !important;
        max-height: 500px !important;
    }

    .dh-floating-stat {
        top: 24px !important;
        left: 24px !important;
        width: 330px !important;
        max-width: 330px !important;
    }

    .dh-client-track {
        gap: 36px !important;
        animation-duration: 46s !important;
    }

    .dh-client-track img {
        flex-basis: 145px !important;
        width: 145px !important;
        min-width: 145px !important;
        max-width: 145px !important;
        height: 50px !important;
        min-height: 50px !important;
        max-height: 50px !important;
    }
}

/* =====================================================
   Mobile
===================================================== */

@media (max-width: 767px) {
    .dh-home-hero {
        padding: 82px 0 30px !important;
    }

    .dh-home-hero .dh-home-container {
        padding: 0 18px !important;
    }

    .dh-hero-grid {
        gap: 24px !important;
    }

    .dh-hero-content h1 {
        font-size: clamp(40px, 12vw, 56px) !important;
        line-height: 1.02 !important;
        letter-spacing: -1.8px !important;
        margin-bottom: 18px !important;
    }

    .dh-hero-desc {
        font-size: 16px !important;
        line-height: 1.55 !important;
        margin-bottom: 22px !important;
    }

    .dh-primary-btn {
        min-height: 56px !important;
        padding: 0 26px !important;
    }

    .dh-hero-visual {
        min-height: auto !important;
        height: auto !important;
    }

    .dh-hawk-img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
    }

    .dh-floating-stat {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 18px !important;
        padding: 24px !important;
    }

    .dh-floating-stat strong {
        font-size: 48px !important;
    }

    .dh-trusted.dh-client-carousel-wrap {
        margin-top: 30px !important;
    }

    .dh-trusted.dh-client-carousel-wrap small {
        font-size: 11px !important;
        margin-bottom: 14px !important;
    }

    .dh-client-carousel {
        padding: 8px 0 10px !important;
    }

    .dh-client-track {
        gap: 28px !important;
        animation-duration: 36s !important;
    }

    .dh-client-track img {
        flex-basis: 118px !important;
        width: 118px !important;
        min-width: 118px !important;
        max-width: 118px !important;
        height: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
    }

    .dh-client-carousel::before,
    .dh-client-carousel::after {
        width: 38px !important;
    }
}

/* Floating Hero Card Content Enhancement */

.dh-floating-stat h3 {
    font-size: 36px !important;
    line-height: 1.05 !important;
    letter-spacing: -1.4px !important;
    margin: 22px 0 16px !important;
    color: #ffffff !important;
    font-weight: 800 !important;
}

.dh-floating-stat p {
    max-width: 310px !important;
    margin: 0 0 22px !important;
    font-size: 16px !important;
    line-height: 1.48 !important;
    color: rgba(255, 255, 255, 0.72) !important;
}

.dh-stat-services {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 0 0 24px !important;
}

.dh-stat-services span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;
    background: rgba(255, 47, 207, 0.08) !important;
    border: 1px solid rgba(255, 47, 207, 0.18) !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.dh-floating-stat a {
    display: inline-flex !important;
    align-items: center !important;
    color: #ff3bd1 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

@media (max-width: 767px) {
    .dh-floating-stat h3 {
        font-size: 30px !important;
    }

    .dh-floating-stat p {
        font-size: 15px !important;
    }

    .dh-stat-services span {
        font-size: 11px !important;
        padding: 7px 10px !important;
    }
}