:root {
	--dtouch-blue: #123f35;
	--dtouch-magenta: #f770b4;
	--dtouch-teal: #1f9d78;
	--dtouch-text: #2b303a;
	--dtouch-muted: #6b7280;
	--dtouch-border: #e3eee9;
	--dtouch-soft: #f5faf7;
	--dtouch-white: #ffffff;
	--dtouch-shadow: 0 14px 36px rgba(15, 58, 87, 0.11);
}

html {
	scroll-padding-top: 104px;
}

body {
	overflow-x: hidden;
}

.dtouch-home,
.dtouch-page,
.dtouch-footer {
	overflow-x: hidden;
}

.dtouch-home img,
.dtouch-page img,
.dtouch-footer img {
	max-width: 100%;
	height: auto;
}

.dtouch-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--dtouch-white);
	border-bottom: 1px solid var(--dtouch-border);
	box-shadow: 0 8px 22px rgba(15, 58, 87, 0.06);
	font-family: Inter, "Open Sans", Arial, sans-serif;
}

.admin-bar .dtouch-site-header {
	top: 32px;
}

.dtouch-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	width: min(1180px, calc(100% - 40px));
	min-height: 82px;
	margin: 0 auto;
}

.dtouch-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	max-width: 210px;
}

.dtouch-brand img {
	display: block;
	width: auto;
	max-width: 190px;
	max-height: 58px;
	object-fit: contain;
}

.dtouch-desktop-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	flex: 1 1 auto;
}

.dtouch-nav-link,
.dtouch-mobile-link {
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: color 180ms ease;
}

.dtouch-nav-link:hover,
.dtouch-nav-link:focus,
.dtouch-nav-link.is-active,
.dtouch-mobile-link:hover,
.dtouch-mobile-link:focus,
.dtouch-mobile-link.is-active {
	color: var(--dtouch-magenta);
}

.dtouch-header-cta,
.dtouch-mobile-cta,
.dtouch-whatsapp-float {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border-radius: 8px;
	background: var(--dtouch-blue);
	color: var(--dtouch-white);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 10px 24px rgba(15, 58, 87, 0.18);
	transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.dtouch-header-cta {
	padding: 0 20px;
}

.dtouch-header-cta:hover,
.dtouch-header-cta:focus,
.dtouch-mobile-cta:hover,
.dtouch-mobile-cta:focus,
.dtouch-whatsapp-float:hover,
.dtouch-whatsapp-float:focus {
	background: var(--dtouch-magenta);
	color: var(--dtouch-white);
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(247, 112, 180, 0.22);
}

.dtouch-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 44px;
	height: 44px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-white);
	cursor: pointer;
}

.dtouch-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: var(--dtouch-blue);
	transition: transform 180ms ease, opacity 180ms ease;
}

.dtouch-menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
	transform: translateY(7px) rotate(45deg);
}

.dtouch-menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
	opacity: 0;
}

.dtouch-menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
	transform: translateY(-7px) rotate(-45deg);
}

.dtouch-mobile-menu {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto 18px;
	padding: 14px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-white);
	box-shadow: var(--dtouch-shadow);
}

.dtouch-mobile-menu[hidden] {
	display: none;
}

.dtouch-mobile-menu nav {
	display: grid;
	gap: 4px;
}

.dtouch-mobile-link {
	display: block;
	padding: 13px 12px;
	border-radius: 8px;
	background: var(--dtouch-soft);
}

.dtouch-mobile-cta {
	width: 100%;
	margin-top: 12px;
	padding: 0 18px;
}

.dtouch-whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 1100;
	min-height: 48px;
	padding: 0 18px;
	background: var(--dtouch-teal);
}

@media (max-width: 980px) {
	.dtouch-header-inner {
		gap: 14px;
		min-height: 70px;
	}

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

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

	.dtouch-brand img {
		max-width: 170px;
		max-height: 52px;
	}
}

@media (max-width: 782px) {
	.admin-bar .dtouch-site-header {
		top: 46px;
	}
}

@media (max-width: 560px) {
	.dtouch-header-inner,
	.dtouch-mobile-menu {
		width: min(100% - 28px, 1180px);
	}

	.dtouch-brand img {
		max-width: 142px;
		max-height: 48px;
	}

	.dtouch-whatsapp-float {
		right: 14px;
		bottom: 14px;
		min-height: 44px;
		padding: 0 14px;
		font-size: 13px;
	}
}

.home #rbb-page-title {
	display: none;
}

.dtouch-home {
	background: var(--dtouch-white);
	color: var(--dtouch-text);
	font-family: Inter, "Open Sans", Arial, sans-serif;
}

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

.dtouch-hero {
	padding: 78px 0 72px;
	background:
		linear-gradient(90deg, rgba(248, 249, 250, 0.98) 0%, rgba(248, 249, 250, 0.94) 58%, rgba(15, 58, 87, 0.78) 100%),
		url("../../assets/images/port-shanghai-yangshan.jpg") center / cover;
	overflow: hidden;
}

.dtouch-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
	gap: 56px;
	align-items: center;
}

.dtouch-eyebrow {
	margin: 0 0 12px;
	color: var(--dtouch-teal);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.dtouch-hero h1,
.dtouch-section h2,
.dtouch-final-cta h2 {
	margin: 0;
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
}

.dtouch-hero h1 {
	max-width: 840px;
	font-size: 68px;
}

.dtouch-hero-text {
	max-width: 720px;
	margin: 24px 0 0;
	color: var(--dtouch-text);
	font-size: 19px;
	line-height: 1.75;
}

.dtouch-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.dtouch-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 8px;
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.dtouch-btn:hover,
.dtouch-btn:focus {
	transform: translateY(-1px);
}

.dtouch-btn-primary {
	background: var(--dtouch-blue);
	color: var(--dtouch-white);
}

.dtouch-btn-primary:hover,
.dtouch-btn-primary:focus {
	background: var(--dtouch-magenta);
	color: var(--dtouch-white);
}

.dtouch-btn-secondary {
	border: 1px solid var(--dtouch-blue);
	background: transparent;
	color: var(--dtouch-blue);
}

.dtouch-btn-secondary:hover,
.dtouch-btn-secondary:focus {
	border-color: var(--dtouch-teal);
	background: var(--dtouch-teal);
	color: var(--dtouch-white);
}

.dtouch-btn-light {
	background: var(--dtouch-white);
	color: var(--dtouch-blue);
}

.dtouch-btn-light:hover,
.dtouch-btn-light:focus {
	background: var(--dtouch-magenta);
	color: var(--dtouch-white);
}

.dtouch-trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 740px;
	margin-top: 28px;
}

.dtouch-trust-list span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid rgba(0, 140, 163, 0.22);
	border-radius: 8px;
	background: var(--dtouch-white);
	color: var(--dtouch-blue);
	font-size: 14px;
	font-weight: 800;
}

.dtouch-hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 720px;
	margin-top: 26px;
}

.dtouch-hero-stats div {
	padding: 18px;
	border: 1px solid rgba(0, 140, 163, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(8px);
	box-shadow: 0 12px 30px rgba(15, 58, 87, 0.07);
}

.dtouch-hero-stats strong,
.dtouch-hero-stats span {
	display: block;
}

.dtouch-hero-stats strong {
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
}

.dtouch-hero-stats span {
	margin-top: 6px;
	color: var(--dtouch-muted);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

.dtouch-hero-visual {
	display: grid;
	gap: 16px;
	padding: 24px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-white);
	box-shadow: var(--dtouch-shadow);
}

.dtouch-hero-photo {
	position: relative;
	overflow: hidden;
	margin: 0;
	aspect-ratio: 1.28;
	border-radius: 8px;
	background: var(--dtouch-blue);
}

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

.dtouch-hero-mini-photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.dtouch-hero-mini-photos figure {
	position: relative;
	overflow: hidden;
	margin: 0;
	aspect-ratio: 1.35;
	border-radius: 8px;
	background: var(--dtouch-blue);
}

.dtouch-hero-mini-photos img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dtouch-hero-mini-photos figcaption {
	position: absolute;
	left: 10px;
	bottom: 10px;
	min-height: 28px;
	padding: 6px 10px;
	border-radius: 6px;
	background: rgba(15, 58, 87, 0.88);
	color: var(--dtouch-white);
	font-size: 12px;
	font-weight: 900;
}

.dtouch-route {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.dtouch-route div,
.dtouch-brief,
.dtouch-result {
	border-radius: 8px;
	background: var(--dtouch-soft);
}

.dtouch-route div {
	padding: 18px;
	border-left: 4px solid var(--dtouch-teal);
}

.dtouch-route span,
.dtouch-result span {
	display: block;
	color: var(--dtouch-muted);
	font-size: 13px;
	font-weight: 700;
}

.dtouch-route strong,
.dtouch-result strong {
	display: block;
	margin-top: 4px;
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.25;
}

.dtouch-brief {
	padding: 22px;
	border: 1px solid rgba(247, 112, 180, 0.28);
}

.dtouch-brief p {
	margin: 0 0 12px;
	color: var(--dtouch-blue);
	font-weight: 900;
}

.dtouch-brief ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dtouch-brief li {
	min-height: 38px;
	padding: 9px 12px;
	border-radius: 8px;
	background: var(--dtouch-white);
	color: var(--dtouch-text);
	font-weight: 800;
}

.dtouch-result {
	padding: 20px 22px;
	border-left: 4px solid var(--dtouch-magenta);
}

.dtouch-section {
	padding: 76px 0;
}

.dtouch-founder-section {
	padding: 84px 0;
	background: var(--dtouch-white);
}

.dtouch-founder-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
	gap: 52px;
	align-items: center;
}

.dtouch-founder-photo {
	position: relative;
	overflow: hidden;
	margin: 0;
	aspect-ratio: 0.92;
	border: 1px solid rgba(31, 157, 120, 0.18);
	border-radius: 8px;
	background: var(--dtouch-soft);
	box-shadow: 0 22px 60px rgba(18, 63, 53, 0.14);
}

.dtouch-founder-photo::after {
	content: "8+ annees terrain";
	position: absolute;
	right: 18px;
	bottom: 18px;
	min-height: 38px;
	padding: 10px 14px;
	border-radius: 8px;
	background: var(--dtouch-magenta);
	color: var(--dtouch-white);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 13px;
	font-weight: 900;
}

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

.dtouch-founder-content {
	max-width: 760px;
}

.dtouch-founder-content h2 {
	margin: 0;
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 44px;
	font-weight: 900;
	line-height: 1.08;
}

.dtouch-founder-content p:not(.dtouch-eyebrow) {
	margin: 18px 0 0;
	color: var(--dtouch-text);
	font-size: 17px;
	line-height: 1.75;
}

.dtouch-founder-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.dtouch-founder-proof span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid rgba(31, 157, 120, 0.22);
	border-radius: 8px;
	background: var(--dtouch-soft);
	color: var(--dtouch-blue);
	font-size: 14px;
	font-weight: 900;
}

.dtouch-founder-actions,
.dtouch-about-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.dtouch-visual-story {
	padding: 82px 0 72px;
	background: var(--dtouch-white);
}

.dtouch-visual-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.95fr 0.95fr;
	gap: 18px;
	align-items: stretch;
}

.dtouch-visual-card {
	position: relative;
	overflow: hidden;
	min-height: 360px;
	border-radius: 8px;
	background: var(--dtouch-blue);
	box-shadow: 0 18px 46px rgba(15, 58, 87, 0.13);
}

.dtouch-visual-card:first-child {
	min-height: 430px;
}

.dtouch-visual-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dtouch-visual-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 58, 87, 0.08), rgba(15, 58, 87, 0.86));
}

.dtouch-visual-card div {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	padding: 26px;
}

.dtouch-visual-card h3 {
	margin: 0;
	color: var(--dtouch-white);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.18;
}

.dtouch-visual-card p {
	max-width: 360px;
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6;
}

.dtouch-section-soft {
	background: var(--dtouch-soft);
}

.dtouch-section-head {
	max-width: 760px;
	margin-bottom: 34px;
}

.dtouch-section-head-wide {
	max-width: 900px;
}

.dtouch-section h2,
.dtouch-final-cta h2 {
	font-size: 44px;
}

.dtouch-section-head p:not(.dtouch-eyebrow) {
	margin: 16px 0 0;
	color: var(--dtouch-muted);
	font-size: 17px;
	line-height: 1.7;
}

.dtouch-card-grid {
	display: grid;
	gap: 18px;
}

.dtouch-card-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dtouch-card {
	min-height: 190px;
	padding: 24px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-white);
	box-shadow: 0 10px 28px rgba(15, 58, 87, 0.06);
}

.dtouch-card h3 {
	margin: 0;
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.25;
}

.dtouch-card p {
	margin: 12px 0 0;
	color: var(--dtouch-muted);
	font-size: 15px;
	line-height: 1.7;
}

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

.dtouch-need {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 78px;
	padding: 18px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-white);
}

.dtouch-need span {
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	border-radius: 3px;
	background: var(--dtouch-magenta);
	box-shadow: 12px 0 0 var(--dtouch-teal);
}

.dtouch-need p {
	margin: 0;
	color: var(--dtouch-blue);
	font-weight: 900;
	line-height: 1.35;
}

.dtouch-service-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.dtouch-service-list a {
	display: flex;
	align-items: center;
	min-height: 64px;
	padding: 16px 18px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-white);
	color: var(--dtouch-blue);
	font-weight: 900;
	text-decoration: none;
	transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.dtouch-service-list a:hover,
.dtouch-service-list a:focus {
	border-color: var(--dtouch-magenta);
	color: var(--dtouch-magenta);
	transform: translateY(-1px);
}

.dtouch-assurance-section {
	position: relative;
	padding: 78px 0;
	background: var(--dtouch-blue);
	color: var(--dtouch-white);
	overflow: hidden;
}

.dtouch-assurance-grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
	gap: 44px;
	align-items: center;
}

.dtouch-assurance-media {
	overflow: hidden;
	aspect-ratio: 1.16;
	border-radius: 8px;
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.dtouch-assurance-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dtouch-assurance-content {
	max-width: 700px;
}

.dtouch-assurance-content .dtouch-eyebrow {
	color: #a8eef8;
}

.dtouch-assurance-content h2 {
	margin: 0;
	color: var(--dtouch-white);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.1;
}

.dtouch-assurance-content ul {
	display: grid;
	gap: 12px;
	margin: 26px 0 30px;
	padding: 0;
	list-style: none;
}

.dtouch-assurance-content li {
	position: relative;
	padding: 14px 16px 14px 44px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.9);
	font-weight: 800;
	line-height: 1.45;
}

.dtouch-assurance-content li::before {
	content: "";
	position: absolute;
	top: 19px;
	left: 18px;
	width: 10px;
	height: 10px;
	border-radius: 3px;
	background: var(--dtouch-magenta);
	box-shadow: 9px 0 0 var(--dtouch-teal);
}

.dtouch-steps {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dtouch-steps li {
	display: grid;
	align-content: start;
	gap: 12px;
	min-height: 144px;
	padding: 18px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-white);
}

.dtouch-steps span {
	color: var(--dtouch-magenta);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 14px;
	font-weight: 900;
}

.dtouch-steps strong {
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.35;
}

.dtouch-final-cta {
	padding: 64px 0;
	background: var(--dtouch-blue);
}

.dtouch-final-cta-image {
	position: relative;
	isolation: isolate;
	background:
		linear-gradient(90deg, rgba(15, 58, 87, 0.96), rgba(15, 58, 87, 0.82)),
		var(--dtouch-cta-image) center / cover;
}

.dtouch-final-cta .dtouch-eyebrow {
	color: #a8eef8;
}

.dtouch-final-cta h2 {
	max-width: 780px;
	color: var(--dtouch-white);
}

.dtouch-final-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

@media (max-width: 1100px) {
	.dtouch-steps {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.dtouch-page {
	background: var(--dtouch-white);
	color: var(--dtouch-text);
	font-family: Inter, "Open Sans", Arial, sans-serif;
}

.dtouch-page-hero {
	padding: 72px 0 58px;
	background: var(--dtouch-soft);
	border-bottom: 1px solid var(--dtouch-border);
}

.dtouch-page-hero-inner {
	max-width: 930px;
}

.dtouch-page-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
	gap: 44px;
	align-items: center;
}

.dtouch-page-hero-image {
	overflow: hidden;
	margin: 0;
	aspect-ratio: 1.18;
	border: 1px solid rgba(0, 140, 163, 0.2);
	border-radius: 8px;
	background: var(--dtouch-white);
	box-shadow: var(--dtouch-shadow);
}

.dtouch-page-hero-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dtouch-page-hero h1 {
	margin: 0;
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 54px;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0;
}

.dtouch-page-hero p:not(.dtouch-eyebrow) {
	max-width: 820px;
	margin: 20px 0 0;
	color: var(--dtouch-text);
	font-size: 18px;
	line-height: 1.75;
}

.dtouch-page-section {
	padding: 64px 0 82px;
}

.dtouch-about-hero {
	padding: 78px 0 70px;
	background:
		linear-gradient(90deg, rgba(245, 250, 247, 0.98), rgba(245, 250, 247, 0.9)),
		url("../../assets/images/yiwu-trade-city.jpg") center / cover;
	border-bottom: 1px solid var(--dtouch-border);
}

.dtouch-about-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
	gap: 54px;
	align-items: center;
}

.dtouch-about-hero-copy h1 {
	margin: 0;
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 56px;
	font-weight: 900;
	line-height: 1.08;
}

.dtouch-about-hero-copy p:not(.dtouch-eyebrow) {
	max-width: 820px;
	margin: 22px 0 0;
	color: var(--dtouch-text);
	font-size: 18px;
	line-height: 1.75;
}

.dtouch-about-portrait {
	position: relative;
	overflow: hidden;
	margin: 0;
	aspect-ratio: 0.88;
	border: 1px solid rgba(31, 157, 120, 0.22);
	border-radius: 8px;
	background: var(--dtouch-white);
	box-shadow: 0 24px 70px rgba(18, 63, 53, 0.17);
}

.dtouch-about-portrait img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dtouch-about-portrait figcaption {
	position: absolute;
	right: 18px;
	bottom: 18px;
	left: 18px;
	padding: 18px;
	border-radius: 8px;
	background: rgba(18, 63, 53, 0.9);
	color: var(--dtouch-white);
}

.dtouch-about-portrait strong,
.dtouch-about-portrait span {
	display: block;
}

.dtouch-about-portrait strong {
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 24px;
	font-weight: 900;
}

.dtouch-about-portrait span {
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.86);
	font-weight: 800;
}

.dtouch-about-proof-band {
	padding: 24px 0;
	background: var(--dtouch-blue);
}

.dtouch-about-proof-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.dtouch-about-proof-grid div {
	min-height: 58px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.07);
	color: var(--dtouch-white);
	font-weight: 900;
	line-height: 1.35;
}

.dtouch-about-story {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

.dtouch-about-story h2,
.dtouch-about-panel h2 {
	margin: 0;
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 38px;
	font-weight: 900;
	line-height: 1.12;
}

.dtouch-about-text {
	display: grid;
	gap: 18px;
}

.dtouch-about-text p {
	margin: 0;
	color: var(--dtouch-text);
	font-size: 17px;
	line-height: 1.8;
}

.dtouch-about-two-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.dtouch-about-panel {
	padding: 32px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-white);
	box-shadow: 0 12px 34px rgba(18, 63, 53, 0.08);
}

.dtouch-about-panel-accent {
	background: var(--dtouch-blue);
}

.dtouch-about-panel-accent h2 {
	color: var(--dtouch-white);
}

.dtouch-about-panel ul {
	display: grid;
	gap: 12px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.dtouch-about-panel li {
	position: relative;
	padding-left: 28px;
	color: var(--dtouch-text);
	font-weight: 800;
	line-height: 1.5;
}

.dtouch-about-panel-accent li {
	color: rgba(255, 255, 255, 0.9);
}

.dtouch-about-panel li::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 3px;
	background: var(--dtouch-magenta);
	box-shadow: 9px 0 0 var(--dtouch-teal);
}

.dtouch-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	gap: 32px;
	align-items: start;
}

.dtouch-main-column {
	display: grid;
	gap: 20px;
}

.dtouch-service-block {
	scroll-margin-top: 112px;
	padding: 30px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-white);
	box-shadow: 0 12px 32px rgba(15, 58, 87, 0.07);
}

.dtouch-service-block-head {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.dtouch-service-block-head > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	background: rgba(0, 140, 163, 0.1);
	color: var(--dtouch-teal);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 16px;
	font-weight: 900;
}

.dtouch-service-block h2 {
	margin: 0;
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: 0;
}

.dtouch-service-block-head p {
	margin: 12px 0 0;
	color: var(--dtouch-muted);
	font-size: 16px;
	line-height: 1.7;
}

.dtouch-check-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.dtouch-check-list li {
	position: relative;
	min-height: 48px;
	padding: 13px 14px 13px 38px;
	border-radius: 8px;
	background: var(--dtouch-soft);
	color: var(--dtouch-text);
	font-weight: 800;
	line-height: 1.35;
}

.dtouch-check-list li::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 16px;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--dtouch-magenta);
}

.dtouch-service-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.dtouch-sidebar {
	position: sticky;
	top: 112px;
}

.admin-bar .dtouch-sidebar {
	top: 144px;
}

.dtouch-sidebar-card {
	padding: 20px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-white);
	box-shadow: var(--dtouch-shadow);
}

.dtouch-sidebar-card h2 {
	margin: 0 0 14px;
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0;
}

.dtouch-sidebar-card nav {
	display: grid;
	gap: 6px;
}

.dtouch-sidebar-card nav a {
	display: block;
	padding: 10px 12px;
	border-radius: 8px;
	background: var(--dtouch-soft);
	color: var(--dtouch-blue);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease;
}

.dtouch-sidebar-card nav a:hover,
.dtouch-sidebar-card nav a:focus {
	background: rgba(247, 112, 180, 0.12);
	color: var(--dtouch-magenta);
}

.dtouch-sidebar-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 46px;
	margin-top: 16px;
	border-radius: 8px;
	background: var(--dtouch-blue);
	color: var(--dtouch-white);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 180ms ease, transform 180ms ease;
}

.dtouch-sidebar-cta:hover,
.dtouch-sidebar-cta:focus {
	background: var(--dtouch-magenta);
	color: var(--dtouch-white);
	transform: translateY(-1px);
}

.dtouch-sector-grid {
	display: grid;
	gap: 20px;
}

.dtouch-sector-card {
	scroll-margin-top: 112px;
	padding: 30px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-white);
	box-shadow: 0 12px 32px rgba(15, 58, 87, 0.07);
}

.dtouch-sector-card-head {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.dtouch-sector-card-head > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	background: rgba(247, 112, 180, 0.12);
	color: var(--dtouch-magenta);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 16px;
	font-weight: 900;
}

.dtouch-sector-card h2,
.dtouch-inline-cta h2 {
	margin: 0;
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: 0;
}

.dtouch-sector-card-head p,
.dtouch-inline-cta p:not(.dtouch-eyebrow) {
	margin: 12px 0 0;
	color: var(--dtouch-muted);
	font-size: 16px;
	line-height: 1.7;
}

.dtouch-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.dtouch-tag-list li {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 9px 13px;
	border: 1px solid rgba(0, 140, 163, 0.18);
	border-radius: 8px;
	background: var(--dtouch-soft);
	color: var(--dtouch-blue);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
}

.dtouch-inline-cta {
	scroll-margin-top: 112px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	padding: 30px;
	border-radius: 8px;
	background: var(--dtouch-blue);
}

.dtouch-inline-cta .dtouch-eyebrow {
	color: #a8eef8;
}

.dtouch-inline-cta h2,
.dtouch-inline-cta p:not(.dtouch-eyebrow) {
	color: var(--dtouch-white);
}

.dtouch-inline-cta .dtouch-btn-primary {
	flex: 0 0 auto;
	background: var(--dtouch-white);
	color: var(--dtouch-blue);
}

.dtouch-inline-cta .dtouch-btn-primary:hover,
.dtouch-inline-cta .dtouch-btn-primary:focus {
	background: var(--dtouch-magenta);
	color: var(--dtouch-white);
}

.dtouch-method-list {
	display: grid;
	gap: 18px;
}

.dtouch-method-step {
	scroll-margin-top: 112px;
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 20px;
	padding: 28px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-white);
	box-shadow: 0 12px 32px rgba(15, 58, 87, 0.07);
}

.dtouch-method-number span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 8px;
	background: var(--dtouch-blue);
	color: var(--dtouch-white);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 17px;
	font-weight: 900;
}

.dtouch-method-content h2,
.dtouch-prep-card h2,
.dtouch-faq-section h2 {
	margin: 0;
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: 0;
}

.dtouch-method-content p {
	margin: 12px 0 0;
	color: var(--dtouch-muted);
	font-size: 16px;
	line-height: 1.7;
}

.dtouch-method-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.dtouch-method-tags li {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 9px 13px;
	border: 1px solid rgba(0, 140, 163, 0.18);
	border-radius: 8px;
	background: var(--dtouch-soft);
	color: var(--dtouch-blue);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
}

.dtouch-prep-card,
.dtouch-faq-section {
	scroll-margin-top: 112px;
	padding: 30px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-white);
	box-shadow: 0 12px 32px rgba(15, 58, 87, 0.07);
}

.dtouch-prep-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 24px 0 24px;
	padding: 0;
	list-style: none;
}

.dtouch-prep-list li {
	position: relative;
	min-height: 48px;
	padding: 13px 14px 13px 38px;
	border-radius: 8px;
	background: var(--dtouch-soft);
	color: var(--dtouch-text);
	font-weight: 800;
	line-height: 1.35;
}

.dtouch-prep-list li::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 16px;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--dtouch-teal);
}

.dtouch-faq-list {
	display: grid;
	gap: 10px;
	margin-top: 24px;
}

.dtouch-faq-item {
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-soft);
}

.dtouch-faq-item summary {
	cursor: pointer;
	padding: 18px 20px;
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-weight: 900;
	line-height: 1.35;
}

.dtouch-faq-item summary::marker {
	color: var(--dtouch-magenta);
}

.dtouch-faq-item p {
	margin: 0;
	padding: 0 20px 20px;
	color: var(--dtouch-muted);
	font-size: 16px;
	line-height: 1.7;
}

.dtouch-contact-layout {
	display: grid;
	grid-template-columns: 0.76fr minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

.dtouch-contact-info {
	display: grid;
	gap: 18px;
}

.dtouch-contact-card,
.dtouch-contact-form {
	padding: 30px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-white);
	box-shadow: 0 12px 32px rgba(15, 58, 87, 0.07);
}

.dtouch-contact-card-main {
	background: var(--dtouch-soft);
}

.dtouch-contact-photo {
	overflow: hidden;
	margin: 22px 0 0;
	aspect-ratio: 1;
	max-width: 260px;
	border: 1px solid rgba(0, 140, 163, 0.2);
	border-radius: 8px;
	background: var(--dtouch-white);
}

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

.dtouch-contact-card h2,
.dtouch-form-head h2 {
	margin: 0;
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: 0;
}

.dtouch-contact-links {
	display: grid;
	gap: 10px;
	margin: 24px 0;
}

.dtouch-contact-links a {
	display: block;
	padding: 16px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-white);
	text-decoration: none;
	transition: border-color 180ms ease, transform 180ms ease;
}

.dtouch-contact-links a:hover,
.dtouch-contact-links a:focus {
	border-color: var(--dtouch-magenta);
	transform: translateY(-1px);
}

.dtouch-contact-links span {
	display: block;
	color: var(--dtouch-muted);
	font-size: 13px;
	font-weight: 800;
}

.dtouch-contact-links strong {
	display: block;
	margin-top: 4px;
	color: var(--dtouch-blue);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.25;
	word-break: break-word;
}

.dtouch-contact-bullets {
	display: grid;
	gap: 10px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.dtouch-contact-bullets li {
	position: relative;
	padding-left: 24px;
	color: var(--dtouch-text);
	font-weight: 800;
	line-height: 1.45;
}

.dtouch-contact-bullets li::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 2px;
	background: var(--dtouch-teal);
}

.dtouch-form-head {
	margin-bottom: 24px;
}

.dtouch-form-head p:not(.dtouch-eyebrow) {
	margin: 12px 0 0;
	color: var(--dtouch-muted);
	font-size: 16px;
	line-height: 1.7;
}

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

.dtouch-form-grid label {
	display: grid;
	gap: 8px;
}

.dtouch-form-grid span {
	color: var(--dtouch-blue);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
}

.dtouch-form-grid input,
.dtouch-form-grid select,
.dtouch-form-grid textarea {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--dtouch-border);
	border-radius: 8px;
	background: var(--dtouch-soft);
	color: var(--dtouch-text);
	font: inherit;
	line-height: 1.4;
	outline: none;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.dtouch-form-grid textarea {
	min-height: 130px;
	resize: vertical;
}

.dtouch-form-grid input:focus,
.dtouch-form-grid select:focus,
.dtouch-form-grid textarea:focus {
	border-color: var(--dtouch-teal);
	box-shadow: 0 0 0 3px rgba(0, 140, 163, 0.13);
}

.dtouch-form-wide {
	grid-column: 1 / -1;
}

.dtouch-form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.dtouch-footer {
	padding: 64px 0 28px;
	background: var(--dtouch-blue);
	color: var(--dtouch-white);
	font-family: Inter, "Open Sans", Arial, sans-serif;
}

.dtouch-footer-grid {
	display: grid;
	grid-template-columns: 1.2fr repeat(3, 1fr);
	gap: 34px;
}

.dtouch-footer h2,
.dtouch-footer h3 {
	margin: 0;
	color: var(--dtouch-white);
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-weight: 900;
	letter-spacing: 0;
}

.dtouch-footer h2 {
	font-size: 34px;
	line-height: 1;
}

.dtouch-footer h3 {
	font-size: 17px;
	line-height: 1.25;
}

.dtouch-footer-brand p {
	margin: 14px 0 0;
	max-width: 260px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	line-height: 1.55;
}

.dtouch-footer-brand ul {
	display: grid;
	gap: 8px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.dtouch-footer-brand li {
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.dtouch-footer-column {
	display: grid;
	align-content: start;
	gap: 10px;
}

.dtouch-footer-column h3 {
	margin-bottom: 8px;
}

.dtouch-footer a,
.dtouch-footer span {
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: color 180ms ease;
}

.dtouch-footer a:hover,
.dtouch-footer a:focus {
	color: var(--dtouch-magenta);
}

.dtouch-footer-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 42px;
	margin-top: 8px;
	padding: 0 16px;
	border-radius: 8px;
	background: var(--dtouch-white);
	color: var(--dtouch-blue) !important;
	font-family: Montserrat, Poppins, Inter, Arial, sans-serif;
	font-weight: 900 !important;
}

.dtouch-footer-cta:hover,
.dtouch-footer-cta:focus {
	background: var(--dtouch-magenta);
	color: var(--dtouch-white) !important;
}

.dtouch-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 46px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.dtouch-footer-bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	line-height: 1.5;
}

@media (min-width: 1280px) {
	.dtouch-container,
	.dtouch-header-inner,
	.dtouch-mobile-menu {
		width: min(1220px, calc(100% - 80px));
	}
}

@media (max-width: 980px) {
	.dtouch-page-hero h1 {
		font-size: 42px;
	}

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

	.dtouch-sidebar {
		position: static;
		order: -1;
	}

	.dtouch-sidebar-card nav {
		display: flex;
		gap: 8px;
		overflow-x: auto;
		padding-bottom: 4px;
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
	}

	.dtouch-sidebar-card nav a {
		flex: 0 0 auto;
		scroll-snap-align: start;
		white-space: nowrap;
	}

	.dtouch-inline-cta {
		align-items: flex-start;
		flex-direction: column;
	}

	.dtouch-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dtouch-page-hero-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.dtouch-page-hero-image {
		max-width: 620px;
		aspect-ratio: 1.55;
	}
}

@media (max-width: 820px) {
	.dtouch-hero-grid {
		grid-template-columns: 1fr;
	}

	.dtouch-hero h1 {
		max-width: 680px;
	}

	.dtouch-hero-visual {
		max-width: 620px;
	}

	.dtouch-hero-photo {
		aspect-ratio: 1.45;
	}

	.dtouch-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.dtouch-page-hero {
		padding: 50px 0 42px;
	}

	.dtouch-page-section {
		padding: 42px 0 62px;
	}

	.dtouch-page-hero h1 {
		font-size: 32px;
	}

	.dtouch-page-hero p:not(.dtouch-eyebrow) {
		font-size: 16px;
		line-height: 1.65;
	}

	.dtouch-service-block {
		padding: 22px;
	}

	.dtouch-service-block-head,
	.dtouch-sector-card-head,
	.dtouch-check-list,
	.dtouch-method-step,
	.dtouch-prep-list {
		grid-template-columns: 1fr;
	}

	.dtouch-service-block h2,
	.dtouch-sector-card h2,
	.dtouch-inline-cta h2,
	.dtouch-method-content h2,
	.dtouch-prep-card h2,
	.dtouch-faq-section h2 {
		font-size: 24px;
	}

	.dtouch-sector-card,
	.dtouch-inline-cta,
	.dtouch-method-step,
	.dtouch-prep-card,
	.dtouch-faq-section,
	.dtouch-contact-card,
	.dtouch-contact-form {
		padding: 22px;
	}

	.dtouch-form-grid {
		grid-template-columns: 1fr;
	}

	.dtouch-form-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.dtouch-footer {
		padding: 46px 0 24px;
	}

	.dtouch-footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.dtouch-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		margin-top: 34px;
	}

	.dtouch-page-hero-image {
		aspect-ratio: 1.28;
	}
}

@media (max-width: 420px) {
	html {
		scroll-padding-top: 86px;
	}

	.dtouch-header-inner,
	.dtouch-mobile-menu,
	.dtouch-container {
		width: min(100% - 24px, 1180px);
	}

	.dtouch-header-inner {
		min-height: 66px;
	}

	.dtouch-brand img {
		max-width: 126px;
		max-height: 44px;
	}

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

	.dtouch-hero {
		padding: 42px 0 46px;
	}

	.dtouch-hero h1 {
		font-size: 32px;
		line-height: 1.12;
	}

	.dtouch-hero-text {
		margin-top: 18px;
		font-size: 16px;
		line-height: 1.62;
	}

	.dtouch-hero-visual,
	.dtouch-card,
	.dtouch-service-block,
	.dtouch-sector-card,
	.dtouch-method-step,
	.dtouch-prep-card,
	.dtouch-faq-section,
	.dtouch-contact-card,
	.dtouch-contact-form,
	.dtouch-sidebar-card {
		padding: 18px;
	}

	.dtouch-section,
	.dtouch-page-section {
		padding: 40px 0 54px;
	}

	.dtouch-page-hero h1 {
		font-size: 28px;
		line-height: 1.15;
	}

	.dtouch-section h2,
	.dtouch-final-cta h2 {
		font-size: 27px;
	}

	.dtouch-route,
	.dtouch-brief ul,
	.dtouch-steps {
		grid-template-columns: 1fr;
	}

	.dtouch-trust-list span,
	.dtouch-tag-list li,
	.dtouch-method-tags li {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.dtouch-contact-links strong {
		font-size: 15px;
	}

	.dtouch-contact-photo {
		max-width: 220px;
	}

	.dtouch-footer {
		padding-bottom: 84px;
	}

	.dtouch-whatsapp-float {
		right: 12px;
		bottom: 12px;
		min-height: 42px;
		padding: 0 13px;
	}
}

@media (max-width: 980px) {
	.dtouch-hero-grid,
	.dtouch-card-grid-3,
	.dtouch-need-grid,
	.dtouch-service-list {
		grid-template-columns: 1fr 1fr;
	}

	.dtouch-hero-grid {
		gap: 36px;
	}

	.dtouch-hero h1 {
		font-size: 52px;
	}

	.dtouch-section h2,
	.dtouch-final-cta h2 {
		font-size: 38px;
	}
}

@media (max-width: 720px) {
	.dtouch-hero,
	.dtouch-section {
		padding: 54px 0;
	}

	.dtouch-container {
		width: min(100% - 28px, 1180px);
	}

	.dtouch-hero-grid,
	.dtouch-card-grid-3,
	.dtouch-need-grid,
	.dtouch-service-list,
	.dtouch-steps,
	.dtouch-route,
	.dtouch-brief ul {
		grid-template-columns: 1fr;
	}

	.dtouch-hero h1 {
		font-size: 38px;
	}

	.dtouch-section h2,
	.dtouch-final-cta h2 {
		font-size: 30px;
	}

	.dtouch-hero-text {
		font-size: 17px;
		line-height: 1.65;
	}

	.dtouch-hero-actions,
	.dtouch-final-cta-inner {
		align-items: stretch;
		flex-direction: column;
	}

	.dtouch-btn {
		width: 100%;
	}

	.dtouch-card {
		min-height: auto;
	}
}

@media (max-width: 820px) {
	.dtouch-hero-grid {
		grid-template-columns: 1fr;
	}

	.dtouch-hero-visual {
		max-width: 620px;
	}

	.dtouch-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 420px) {
	.dtouch-container,
	.dtouch-header-inner,
	.dtouch-mobile-menu {
		width: min(100% - 24px, 1180px);
	}

	.dtouch-header-inner {
		min-height: 66px;
	}

	.dtouch-brand img {
		max-width: 126px;
		max-height: 44px;
	}

	.dtouch-hero {
		padding: 42px 0 46px;
	}

	.dtouch-hero h1 {
		font-size: 32px;
		line-height: 1.12;
	}

	.dtouch-page-hero h1 {
		font-size: 28px;
		line-height: 1.15;
	}

	.dtouch-section h2,
	.dtouch-final-cta h2 {
		font-size: 27px;
	}

	.dtouch-hero-text {
		font-size: 16px;
		line-height: 1.62;
	}

	.dtouch-route,
	.dtouch-brief ul,
	.dtouch-steps {
		grid-template-columns: 1fr;
	}

	.dtouch-trust-list span,
	.dtouch-tag-list li,
	.dtouch-method-tags li {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.dtouch-footer {
		padding-bottom: 84px;
	}

	.dtouch-whatsapp-float {
		right: 12px;
		bottom: 12px;
		min-height: 42px;
		padding: 0 13px;
	}
}

#rbb-promotion-popup {
	display: none !important;
}

@media (max-width: 980px) {
	.dtouch-hero-stats,
	.dtouch-visual-grid,
	.dtouch-assurance-grid,
	.dtouch-founder-grid,
	.dtouch-about-hero-grid,
	.dtouch-about-story,
	.dtouch-about-two-columns {
		grid-template-columns: 1fr;
	}

	.dtouch-visual-card,
	.dtouch-visual-card:first-child {
		min-height: 330px;
	}

	.dtouch-assurance-media {
		max-width: 620px;
	}

	.dtouch-founder-photo,
	.dtouch-about-portrait {
		max-width: 520px;
	}

	.dtouch-about-proof-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.dtouch-visual-story,
	.dtouch-assurance-section,
	.dtouch-founder-section,
	.dtouch-about-hero {
		padding: 54px 0;
	}

	.dtouch-hero-stats {
		grid-template-columns: 1fr;
	}

	.dtouch-hero-mini-photos {
		grid-template-columns: 1fr;
	}

	.dtouch-visual-card,
	.dtouch-visual-card:first-child {
		min-height: 280px;
	}

	.dtouch-visual-card div {
		padding: 22px;
	}

	.dtouch-visual-card h3 {
		font-size: 22px;
	}

	.dtouch-assurance-content h2 {
		font-size: 30px;
		line-height: 1.15;
	}

	.dtouch-founder-content h2,
	.dtouch-about-hero-copy h1,
	.dtouch-about-story h2,
	.dtouch-about-panel h2 {
		font-size: 30px;
		line-height: 1.15;
	}

	.dtouch-about-proof-grid {
		grid-template-columns: 1fr;
	}

	.dtouch-about-actions,
	.dtouch-founder-actions {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (max-width: 420px) {
	.dtouch-hero-stats div,
	.dtouch-assurance-content li {
		padding: 15px;
	}

	.dtouch-assurance-content li {
		padding-left: 40px;
	}

	.dtouch-visual-card,
	.dtouch-visual-card:first-child {
		min-height: 250px;
	}
}
