:root {
	--body-bg: #f1f0f6;
	--panel-bg: #e8e9f8;
	--ink: #000000;
	--text: #555563;
	--muted: #8f90a3;
	--white: #ffffff;
	--blue: #636edf;
	--blue-dark: #11164f;
	--line: #d9d8e8;
	--radius: 30px;
	--container: 1220px;
	--shadow: 0 20px 50px rgba(24, 26, 76, 0.08);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--body-bg);
	color: var(--text);
	font-family: "Mona Sans", Manrope, "Plus Jakarta Sans", Inter, Helvetica, Arial, sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.6;
}

body::before {
	background:
		radial-gradient(circle at 10% 8%, rgba(182, 240, 241, 0.9), transparent 26%),
		radial-gradient(circle at 82% 16%, rgba(255, 205, 205, 0.88), transparent 34%),
		radial-gradient(circle at 48% 40%, rgba(255, 246, 191, 0.65), transparent 28%);
	content: "";
	height: 980px;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}

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

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

button,
input,
textarea,
select {
	font: inherit;
}

p {
	margin: 0 0 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: var(--ink);
	font-family: "Mona Sans", Manrope, "Plus Jakarta Sans", Inter, Helvetica, Arial, sans-serif;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 0.98;
}

h1 {
	font-size: clamp(4.7rem, 9.45vw, 7.5rem);
	line-height: 0.96;
}

h2 {
	font-size: clamp(3.8rem, 6.4vw, 5.5rem);
	line-height: 1.02;
}

h3 {
	font-size: 2rem;
	line-height: 1.08;
}

.container {
	margin-inline: auto;
	max-width: var(--container);
	padding-inline: 30px;
	width: 100%;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.skip-link:focus {
	background: var(--white);
	clip: auto;
	color: var(--ink);
	height: auto;
	left: 20px;
	padding: 12px 16px;
	top: 20px;
	width: auto;
	z-index: 100000;
}

.site-header {
	left: 0;
	padding-top: 30px;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 100;
}

.site-header__inner {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: 190px 1fr 230px;
	max-width: 100%;
}

.site-brand {
	align-items: center;
	color: var(--ink);
	display: inline-flex;
	font-size: 40px;
	font-weight: 800;
	gap: 10px;
	letter-spacing: -0.03em;
	line-height: 1;
}

.site-brand__mark {
	display: grid;
	gap: 4px;
	grid-template-columns: repeat(2, 15px);
	grid-template-rows: repeat(2, 15px);
	height: 34px;
	width: 34px;
}

.site-brand__mark::before,
.site-brand__mark::after {
	background: var(--blue);
	border-radius: 3px;
	content: "";
	display: block;
	grid-row: span 1;
}

.site-brand__mark::before {
	grid-column: 2;
	grid-row: 1;
}

.site-brand__mark::after {
	grid-column: 1;
	grid-row: 2;
}

.primary-nav {
	justify-self: center;
}

.primary-nav .menu {
	align-items: center;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 22px;
	display: flex;
	gap: 0;
	justify-content: center;
	list-style: none;
	margin: 0;
	min-height: 60px;
	padding: 0 22px;
}

.primary-nav li {
	align-items: center;
	display: flex;
}

.primary-nav li + li::before {
	background: var(--blue);
	border-radius: 50%;
	content: "";
	height: 6px;
	margin-inline: 20px;
	width: 6px;
}

.primary-nav a {
	color: var(--ink);
	display: block;
	font-size: 18px;
	font-weight: 500;
	line-height: 60px;
	white-space: nowrap;
}

.primary-nav li:first-child a {
	color: var(--blue);
}

.header-cta {
	align-items: center;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 22px;
	color: var(--ink);
	display: inline-flex;
	font-size: 17px;
	font-weight: 700;
	gap: 14px;
	justify-self: end;
	min-height: 60px;
	padding: 5px 22px 5px 6px;
}

.header-cta span,
.panel-button span,
.support-card a span,
.accordion-photo a span,
.feature-news a span,
.newsletter-box button span {
	align-items: center;
	background: var(--blue);
	border-radius: 15px;
	display: inline-flex;
	height: 48px;
	justify-content: center;
	position: relative;
	width: 48px;
}

.header-cta span::before,
.panel-button span::before,
.support-card a span::before,
.accordion-photo a span::before,
.feature-news a span::before,
.newsletter-box button span::before {
	border-right: 2px solid var(--white);
	border-top: 2px solid var(--white);
	content: "";
	height: 8px;
	transform: rotate(45deg);
	width: 8px;
}

.nav-toggle {
	background: transparent;
	border: 0;
	display: none;
	height: 44px;
	padding: 0;
	width: 44px;
}

.nav-toggle span:not(.screen-reader-text) {
	background: var(--ink);
	display: block;
	height: 2px;
	margin: 6px auto;
	width: 24px;
}

.section {
	padding-block: 92px;
}

.diteck-landing {
	overflow: hidden;
}

.diteck-hero {
	min-height: 1430px;
	overflow: hidden;
	padding-top: 210px;
	position: relative;
}

.hero-title-wrap {
	position: relative;
	z-index: 2;
}

.hero-title-wrap h1 {
	color: var(--ink);
	max-width: 1100px;
}

.hero-title-wrap h1 span {
	display: block;
	white-space: nowrap;
}

.hero-title-image {
	border-radius: 18px;
	display: inline-block;
	height: 90px;
	margin: 0 18px;
	object-fit: cover;
	vertical-align: middle;
	width: 240px;
}

.hero-deco {
	mix-blend-mode: multiply;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.hero-deco-ribbon {
	left: 120px;
	top: 220px;
	transform: rotate(-7deg);
	width: 280px;
}

.hero-deco-sphere {
	right: 38px;
	top: 430px;
	width: 285px;
}

.hero-lavender-panel {
	background: var(--panel-bg);
	border-radius: 31px;
	height: 675px;
	margin-top: 42px;
	position: relative;
	z-index: 0;
}

.hero-lavender-panel::before {
	background: url("../images/hero-ribbon.png") center / contain no-repeat;
	content: "";
	filter: blur(1px);
	height: 300px;
	left: -140px;
	opacity: 0.72;
	position: absolute;
	top: 180px;
	transform: rotate(28deg);
	width: 300px;
}

.customer-badge {
	align-items: center;
	background: var(--body-bg);
	border-radius: 0 0 30px 0;
	bottom: -1px;
	display: inline-flex;
	gap: 16px;
	left: 0;
	min-height: 82px;
	padding: 18px 30px;
	position: absolute;
}

.avatar-stack {
	display: flex;
}

.avatar-stack img {
	border: 2px solid var(--body-bg);
	border-radius: 50%;
	height: 50px;
	margin-right: -10px;
	object-fit: cover;
	width: 50px;
}

.customer-badge strong {
	color: var(--ink);
	font-size: 42px;
	font-weight: 600;
	line-height: 1;
}

.customer-badge span {
	color: var(--text);
	font-size: 16px;
	line-height: 1.25;
	max-width: 88px;
}

.section-intro {
	display: grid;
	gap: 36px;
	grid-template-columns: 360px 1fr;
	margin-bottom: 72px;
}

.section-pill,
.panel-label {
	align-items: center;
	border: 1px solid #d4d3e4;
	border-radius: 8px;
	color: var(--ink);
	display: inline-flex;
	font-size: 18px;
	font-weight: 500;
	gap: 12px;
	height: 36px;
	justify-content: center;
	margin: 0;
	padding: 0 14px;
	width: max-content;
}

.section-pill::before,
.panel-label::before,
.stat-card span::before {
	background: var(--blue);
	border-radius: 2px;
	content: "";
	display: inline-block;
	height: 6px;
	width: 6px;
}

.intro-copy p,
.projects-intro p,
.team-intro p {
	color: var(--text);
	font-size: 20px;
	max-width: 690px;
}

.service-card-row {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.diteck-service-card,
.stat-card {
	background: var(--white);
	border-radius: 16px;
	box-shadow: none;
	min-height: 390px;
	padding: 30px;
}

.line-icon {
	height: 108px;
	margin-bottom: 58px;
	position: relative;
	width: 108px;
}

.line-icon::before {
	border: 2px solid #14141b;
	border-radius: 8px;
	content: "";
	height: 70px;
	left: 18px;
	position: absolute;
	top: 22px;
	width: 70px;
}

.line-icon-pen::before {
	border-radius: 50% 50% 10px 10px;
	transform: rotate(45deg);
}

.line-icon-app::before {
	border-radius: 7px;
}

.line-icon-type::before {
	content: "A";
	font-size: 76px;
	font-weight: 500;
	line-height: 70px;
	text-align: center;
}

.diteck-service-card h3 {
	margin-bottom: 20px;
}

.diteck-service-card p {
	color: var(--text);
	font-size: 17px;
	line-height: 1.55;
}

.support-card {
	background: var(--blue);
	border-radius: 16px;
	color: var(--white);
	min-height: 390px;
	overflow: hidden;
	padding: 30px;
	position: relative;
}

.support-card > span {
	display: block;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 22px;
}

.support-card > span::before {
	background: var(--white);
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 6px;
	margin-right: 8px;
	vertical-align: middle;
	width: 6px;
}

.support-card h3 {
	color: var(--white);
	font-size: 32px;
	max-width: 230px;
	position: relative;
	z-index: 2;
}

.support-card img {
	bottom: 0;
	height: 255px;
	object-fit: cover;
	object-position: center;
	position: absolute;
	right: -24px;
	width: 230px;
}

.support-card a {
	align-items: center;
	background: var(--body-bg);
	border-radius: 18px 0 0 0;
	bottom: 0;
	color: var(--ink);
	display: inline-flex;
	font-size: 16px;
	font-weight: 700;
	gap: 14px;
	padding: 14px 24px 0 14px;
	position: absolute;
	right: 0;
	z-index: 3;
}

.service-accordion-section {
	padding-top: 56px;
}

.navy-panel,
.footer-panel {
	background:
		radial-gradient(circle at 44% 0%, rgba(44, 100, 92, 0.65), transparent 28%),
		var(--blue-dark);
	border-radius: 30px;
	color: var(--white);
	padding: 72px 30px 86px;
	position: relative;
}

.navy-panel .panel-label {
	border-color: rgba(255, 255, 255, 0.24);
	color: var(--white);
	margin-bottom: 44px;
}

.service-accordion-grid {
	display: grid;
	gap: 84px;
	grid-template-columns: 490px 1fr;
}

.accordion-photo {
	align-self: end;
	border-radius: 14px;
	height: 455px;
	margin: 0;
	overflow: hidden;
	position: relative;
}

.accordion-photo img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.accordion-photo a {
	bottom: 0;
	position: absolute;
	right: 0;
}

.accordion-content h2 {
	color: var(--white);
	font-size: clamp(3.8rem, 6vw, 5rem);
	margin-bottom: 70px;
	max-width: 670px;
}

.accordion-item {
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	padding: 32px 0;
}

.accordion-heading {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.accordion-heading h3 {
	color: rgba(255, 255, 255, 0.58);
	font-size: 42px;
}

.accordion-item.is-open .accordion-heading h3 {
	color: var(--white);
}

.accordion-heading span {
	color: var(--white);
	font-size: 36px;
	line-height: 1;
}

.accordion-item p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 18px;
	max-width: 550px;
}

.tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.tag-row span {
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 8px;
	font-size: 16px;
	line-height: 34px;
	padding: 0 16px;
}

.panel-button {
	align-items: center;
	background: var(--body-bg);
	border-radius: 18px 18px 0 0;
	bottom: 0;
	color: var(--ink);
	display: inline-flex;
	font-size: 16px;
	font-weight: 700;
	gap: 14px;
	left: 50%;
	padding: 14px 30px 0 14px;
	position: absolute;
	transform: translateX(-50%);
}

.results-section {
	background: var(--body-bg);
}

.results-intro h2 {
	max-width: 700px;
}

.results-mosaic {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-photo,
.stat-card,
.project-card,
.team-card {
	border-radius: 16px;
	overflow: hidden;
}

.result-photo {
	margin: 0;
}

.result-photo img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.result-photo-tall {
	grid-row: span 2;
	position: relative;
}

.round-seal {
	align-items: center;
	background: var(--white);
	border-radius: 50%;
	color: var(--ink);
	display: flex;
	font-size: 12px;
	font-weight: 800;
	height: 128px;
	justify-content: center;
	left: 50%;
	letter-spacing: 0.08em;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 70px;
	transform: translateX(-50%) rotate(12deg);
	width: 128px;
}

.stat-card {
	min-height: 260px;
}

.stat-card span {
	align-items: center;
	color: var(--ink);
	display: inline-flex;
	font-size: 18px;
	gap: 14px;
	margin-bottom: 78px;
}

.stat-card strong {
	color: var(--ink);
	display: block;
	font-size: 82px;
	font-weight: 500;
	line-height: 0.9;
	margin-bottom: 18px;
}

.stat-card p {
	color: var(--text);
	font-size: 17px;
	line-height: 1.45;
}

.projects-section {
	padding-top: 58px;
}

.pastel-panel {
	background:
		radial-gradient(circle at 8% 0%, rgba(219, 202, 255, 0.95), transparent 34%),
		radial-gradient(circle at 88% 12%, rgba(235, 255, 206, 0.95), transparent 34%),
		var(--white);
	border-radius: 30px;
	padding-bottom: 92px;
	padding-top: 112px;
	position: relative;
}

.projects-intro {
	align-items: end;
	margin-bottom: 76px;
}

.projects-intro p:last-child {
	justify-self: end;
	max-width: 270px;
}

.project-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
	background: var(--white);
}

.project-image {
	aspect-ratio: 1.22 / 1;
	background: #c9c9c9;
	overflow: hidden;
	position: relative;
}

.project-image img {
	filter: grayscale(16%) brightness(0.76);
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.project-image b {
	color: var(--white);
	font-size: 28px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.project-info {
	background: var(--project-color);
	color: var(--white);
	min-height: 170px;
	padding: 30px 38px;
}

.project-info h3 {
	color: var(--white);
	font-size: 32px;
	margin-bottom: 12px;
}

.project-info p {
	font-size: 17px;
	margin: 0;
}

.light-panel-button {
	background: var(--body-bg);
}

.team-intro,
.news-intro {
	align-items: start;
}

.team-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card {
	aspect-ratio: 0.78 / 1;
	background: #c8c8d2;
	position: relative;
}

.team-card img {
	filter: grayscale(1);
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.team-card::after {
	background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.86));
	content: "";
	inset: 0;
	position: absolute;
}

.team-card div {
	bottom: 28px;
	left: 16px;
	position: absolute;
	z-index: 2;
}

.team-card h3 {
	color: var(--white);
	font-size: 34px;
}

.team-card p {
	color: var(--white);
	font-size: 16px;
	margin: 0;
}

.team-card button {
	background: var(--white);
	border: 0;
	border-radius: 14px;
	bottom: -22px;
	color: var(--ink);
	font-size: 24px;
	height: 58px;
	position: absolute;
	right: 0;
	width: 58px;
	z-index: 3;
}

.quote-section {
	background:
		linear-gradient(130deg, rgba(220, 251, 247, 0.8), rgba(255, 243, 203, 0.42) 42%, rgba(226, 203, 255, 0.76)),
		var(--white);
	border-radius: 30px;
	margin-inline: 30px;
	overflow: hidden;
	position: relative;
}

.quote-section::before {
	color: rgba(255, 255, 255, 0.8);
	content: "Testimonials";
	font-size: 150px;
	font-weight: 800;
	left: 50%;
	letter-spacing: -0.04em;
	position: absolute;
	top: -70px;
	transform: translateX(-50%);
}

.quote-deco {
	mix-blend-mode: multiply;
	position: absolute;
	right: -60px;
	top: -42px;
	transform: rotate(35deg);
	width: 260px;
}

.quote-panel {
	padding-block: 138px 96px;
	position: relative;
	text-align: center;
	z-index: 1;
}

.quote-panel > span {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--ink);
	display: inline-flex;
	font-size: 18px;
	line-height: 36px;
	margin-bottom: 82px;
	padding: 0 16px;
}

.quote-panel blockquote {
	color: var(--ink);
	font-size: clamp(3rem, 5.1vw, 4.85rem);
	font-weight: 500;
	line-height: 1.08;
	margin: 0 auto 46px;
	max-width: 1080px;
}

.quote-panel cite {
	color: var(--ink);
	display: block;
	font-size: 17px;
	font-style: normal;
	font-weight: 700;
}

.quote-panel em {
	color: var(--muted);
	font-style: normal;
	font-weight: 500;
	margin-left: 14px;
}

.slider-dots {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-top: 40px;
}

.slider-dots i {
	background: #d9d9f7;
	border-radius: 50%;
	height: 10px;
	width: 10px;
}

.slider-dots .active {
	background: var(--blue);
}

.news-layout {
	display: grid;
	gap: 36px;
	grid-template-columns: 360px 1fr;
	position: relative;
}

.news-deco {
	left: -120px;
	mix-blend-mode: multiply;
	position: absolute;
	top: -40px;
	transform: rotate(-22deg);
	width: 300px;
}

.feature-news,
.news-row {
	border-bottom: 1px solid #a4a5b5;
	grid-column: 2;
	position: relative;
}

.feature-news img {
	border-radius: 16px;
	height: 375px;
	object-fit: cover;
	width: 100%;
}

.feature-news div {
	padding: 30px 88px 36px 0;
}

.feature-news span,
.news-row span {
	color: var(--blue);
	display: block;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.02em;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.feature-news h3 {
	font-size: 44px;
	max-width: 740px;
}

.feature-news p {
	color: var(--text);
	font-size: 18px;
	margin-top: 22px;
}

.feature-news a {
	position: absolute;
	right: 0;
	top: 455px;
}

.news-row {
	align-items: center;
	display: grid;
	gap: 38px;
	grid-template-columns: 200px 1fr;
	padding-bottom: 38px;
}

.news-row img {
	border-radius: 10px;
	height: 150px;
	object-fit: cover;
	width: 200px;
}

.news-row h3 {
	font-size: 36px;
	max-width: 620px;
}

.site-footer {
	background: var(--body-bg);
	color: var(--white);
	padding: 50px 0 30px;
}

.footer-panel {
	padding: 32px 30px 34px;
}

.footer-top {
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 1fr;
	padding-bottom: 48px;
}

.footer-top p,
.newsletter-box h3 {
	color: var(--white);
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 36px;
}

.footer-top h2 {
	color: var(--white);
	font-size: clamp(5rem, 9vw, 7.5rem);
}

.newsletter-box form {
	align-items: center;
	background: var(--white);
	border-radius: 18px;
	display: grid;
	grid-template-columns: 1fr 56px;
	min-height: 60px;
	padding: 6px;
}

.newsletter-box input {
	background: transparent;
	border: 0;
	color: var(--ink);
	font-size: 16px;
	font-weight: 700;
	outline: 0;
	padding: 0 22px;
}

.newsletter-box button {
	background: transparent;
	border: 0;
	padding: 0;
}

.footer-links-grid {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	display: grid;
	gap: 70px;
	grid-template-columns: 1fr 1fr 1fr;
	margin-left: 50%;
	padding-top: 44px;
}

.footer-links-grid nav {
	display: grid;
	gap: 8px;
}

.footer-links-grid a,
.head-office h3 {
	color: var(--white);
	font-size: 24px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.head-office h3 {
	margin: 0 0 12px;
	text-decoration: none;
}

.head-office p,
.head-office a {
	color: var(--white);
	font-size: 16px;
	line-height: 1.45;
	margin: 0 0 14px;
	text-decoration: none;
}

.head-office a {
	color: #6673ea;
}

.footer-bottom {
	align-items: center;
	border-top: 1px solid #6673ea;
	display: flex;
	justify-content: space-between;
	margin-top: 140px;
	padding-top: 34px;
}

.footer-bottom p,
.footer-bottom a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
	margin: 0;
}

.footer-bottom a {
	margin-inline: 12px;
}

.content-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-card,
.empty-state {
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
}

.post-card__body,
.empty-state {
	padding: 30px;
}

.post-card h2,
.single-header h1,
.page-content h1,
.archive-header h1,
.not-found-page h1 {
	font-size: clamp(2.5rem, 6vw, 5rem);
}

.entry-content {
	color: #1f2937;
	font-size: 1.1rem;
}

.entry-content a {
	color: var(--blue);
	text-decoration: underline;
}

.reveal-up {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 700ms ease, transform 700ms ease;
}

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

.reveal-delay-1 {
	transition-delay: 110ms;
}

.reveal-delay-2 {
	transition-delay: 220ms;
}

.reveal-delay-3 {
	transition-delay: 330ms;
}

@keyframes float-object {
	0%,
	100% {
		transform: translateY(0) rotate(var(--rotate, 0deg));
	}
	50% {
		transform: translateY(-14px) rotate(var(--rotate, 0deg));
	}
}

.reveal-float {
	animation: float-object 5.8s ease-in-out infinite;
}

.hero-deco-ribbon {
	--rotate: -7deg;
}

.hero-deco-sphere {
	--rotate: 0deg;
	animation-delay: 700ms;
}

@media (max-width: 1120px) {
	h1 {
		font-size: clamp(4rem, 10vw, 6.2rem);
	}

	.site-header__inner {
		grid-template-columns: auto auto;
	}

	.nav-toggle {
		display: block;
		justify-self: end;
	}

	.primary-nav,
	.header-cta {
		display: none;
	}

	.primary-nav.is-open {
		display: block;
		grid-column: 1 / -1;
		justify-self: stretch;
	}

	.primary-nav.is-open .menu {
		align-items: flex-start;
		flex-direction: column;
		padding-block: 16px;
	}

	.primary-nav li + li::before {
		display: none;
	}

	.primary-nav a {
		line-height: 42px;
	}

	.service-card-row,
	.project-grid,
	.team-grid,
	.results-mosaic {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-accordion-grid,
	.section-intro,
	.footer-top,
	.news-layout {
		grid-template-columns: 1fr;
	}

	.news-deco,
	.quote-deco {
		display: none;
	}

	.feature-news,
	.news-row {
		grid-column: 1;
	}

	.footer-links-grid {
		margin-left: 0;
	}
}

@media (max-width: 760px) {
	body {
		font-size: 17px;
	}

	.container {
		padding-inline: 18px;
	}

	.site-header {
		padding-top: 16px;
	}

	.site-brand {
		font-size: 32px;
	}

	.diteck-hero {
		min-height: 900px;
		padding-top: 140px;
	}

	.hero-title-wrap h1 span {
		white-space: normal;
	}

	.hero-title-image {
		height: 58px;
		margin: 0 8px;
		width: 150px;
	}

	.hero-deco-ribbon {
		left: 8px;
		top: 180px;
		width: 150px;
	}

	.hero-deco-sphere {
		right: -38px;
		top: 470px;
		width: 190px;
	}

	.hero-lavender-panel {
		height: 440px;
	}

	.customer-badge {
		align-items: flex-start;
		flex-direction: column;
	}

	.section {
		padding-block: 64px;
	}

	.service-card-row,
	.project-grid,
	.team-grid,
	.results-mosaic,
	.footer-links-grid,
	.news-row {
		grid-template-columns: 1fr;
	}

	.diteck-service-card,
	.stat-card {
		min-height: auto;
	}

	.navy-panel,
	.footer-panel,
	.pastel-panel,
	.quote-section {
		border-radius: 22px;
	}

	.service-accordion-grid {
		gap: 36px;
	}

	.accordion-photo {
		height: 290px;
	}

	.accordion-heading h3,
	.news-row h3,
	.feature-news h3 {
		font-size: 30px;
	}

	.result-photo-tall {
		grid-row: auto;
	}

	.stat-card span {
		margin-bottom: 30px;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
		margin-top: 60px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 1ms !important;
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
	}

	.reveal-up {
		opacity: 1;
		transform: none;
	}
}
