:root {
	--td-ink: #17221d;
	--td-muted: #657069;
	--td-cream: #f5f1e8;
	--td-paper: #fffdf8;
	--td-green: #2f6b4f;
	--td-green-dark: #214d3a;
	--td-lime: #dce9b9;
	--td-line: rgba(23, 34, 29, 0.12);
	--td-shadow: 0 24px 60px rgba(36, 54, 44, 0.13);
}

body.td-home {
	margin: 0;
	background: var(--td-paper);
	color: var(--td-ink);
	font-family: Inter, Manrope, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.6;
}

.td-home *,
.td-home *::before,
.td-home *::after {
	box-sizing: border-box;
}

.td-home h1,
.td-home h2,
.td-home h3,
.td-home p,
.td-home figure {
	margin-top: 0;
}

.td-home h1,
.td-home h2,
.td-home h3 {
	color: var(--td-ink);
	font-family: Manrope, Arial, sans-serif;
	line-height: 1.08;
}

.td-home a {
	color: inherit;
	text-decoration: none;
}

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

.td-skip {
	position: fixed;
	top: 10px;
	left: -999px;
	z-index: 1000;
	padding: 10px 16px;
	background: #fff;
}

.td-skip:focus {
	left: 10px;
}

.td-header {
	position: relative;
	z-index: 10;
	border-bottom: 1px solid var(--td-line);
	background: rgba(255, 253, 248, 0.94);
}

.td-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 92px;
	gap: 34px;
}

.td-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.td-brand img {
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.td-brand span {
	display: grid;
}

.td-brand strong {
	font-size: 20px;
	line-height: 1.2;
}

.td-brand small {
	color: var(--td-muted);
	font-size: 12px;
}

.td-nav {
	display: flex;
	gap: 30px;
	margin-left: auto;
	color: #47524c;
	font-size: 14px;
	font-weight: 700;
}

.td-nav a:hover {
	color: var(--td-green);
}

.td-phone {
	display: grid;
	padding: 11px 18px;
	border: 1px solid var(--td-line);
	border-radius: 14px;
	line-height: 1.2;
}

.td-phone span {
	color: var(--td-muted);
	font-size: 11px;
}

.td-phone strong {
	font-size: 15px;
}

.td-hero {
	overflow: hidden;
	padding: 76px 0 88px;
	background:
		radial-gradient(circle at 80% 12%, rgba(220, 233, 185, 0.55), transparent 28%),
		linear-gradient(135deg, #fffdf8 0%, #f4f0e7 100%);
}

.td-hero__grid {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	align-items: center;
	gap: 64px;
}

.td-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: var(--td-green);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.td-eyebrow::before {
	width: 28px;
	height: 2px;
	background: currentColor;
	content: "";
}

.td-hero h1 {
	max-width: 650px;
	margin-bottom: 24px;
	font-size: clamp(44px, 5.5vw, 74px);
	letter-spacing: -0.055em;
}

.td-lead {
	max-width: 620px;
	margin-bottom: 30px;
	color: var(--td-muted);
	font-size: 19px;
}

.td-salary {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	max-width: 470px;
	margin-bottom: 30px;
	padding: 16px 20px;
	border-left: 4px solid var(--td-green);
	background: rgba(255, 255, 255, 0.62);
}

.td-salary span,
.td-salary small {
	color: var(--td-muted);
	font-size: 12px;
}

.td-salary strong {
	grid-row: span 2;
	order: -1;
	margin-right: 18px;
	font-size: 27px;
}

.td-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 30px;
}

.td-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 800;
	transition: transform 0.2s ease, background 0.2s ease;
}

.td-btn:hover {
	transform: translateY(-2px);
}

.td-btn--primary {
	background: var(--td-green);
	color: #fff !important;
	box-shadow: 0 12px 28px rgba(47, 107, 79, 0.24);
}

.td-btn--primary:hover {
	background: var(--td-green-dark);
}

.td-btn--light {
	border-color: var(--td-line);
	background: rgba(255, 255, 255, 0.76);
}

.td-btn--max {
	border-color: transparent;
	background: linear-gradient(120deg, #4f67f6 0%, #7357e8 48%, #b84fd7 100%);
	color: #fff !important;
	box-shadow: 0 12px 28px rgba(102, 83, 232, 0.25);
}

.td-btn--max:hover {
	background: linear-gradient(120deg, #4059e8 0%, #6448dc 48%, #a640c8 100%);
	box-shadow: 0 15px 32px rgba(102, 83, 232, 0.34);
}

.td-checks {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin: 0;
	padding: 0;
	color: #4b5750;
	font-size: 13px;
	font-weight: 700;
	list-style: none;
}

.td-checks li::before {
	margin-right: 7px;
	color: var(--td-green);
	content: "✓";
}

.td-hero__visual {
	position: relative;
}

.td-hero__visual::before {
	position: absolute;
	inset: 28px -28px -28px 28px;
	z-index: 0;
	border-radius: 32px;
	background: var(--td-lime);
	content: "";
}

.td-hero__visual-button {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.td-hero__visual-button:focus-visible {
	outline: 3px solid var(--td-green);
	outline-offset: 5px;
}

.td-hero__visual-button img {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 1.22;
	border-radius: 28px;
	box-shadow: var(--td-shadow);
	object-fit: cover;
}

.td-hero__badge {
	position: absolute;
	right: -18px;
	bottom: 28px;
	z-index: 2;
	display: grid;
	min-width: 210px;
	padding: 17px 20px;
	border: 6px solid var(--td-paper);
	border-radius: 18px;
	background: var(--td-green-dark);
	color: #fff;
	box-shadow: var(--td-shadow);
}

.td-hero__badge strong {
	font-size: 22px;
}

.td-hero__badge span {
	font-size: 12px;
	opacity: 0.74;
}

.td-benefits,
.td-gallery,
.td-steps {
	padding: 100px 0;
}

.td-section-head {
	max-width: 680px;
	margin-bottom: 48px;
}

.td-section-head h2 {
	margin-bottom: 16px;
	font-size: clamp(34px, 4vw, 50px);
	letter-spacing: -0.04em;
}

.td-section-head p {
	margin-bottom: 0;
	color: var(--td-muted);
}

.td-benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.td-card {
	min-height: 270px;
	padding: 30px;
	border: 1px solid var(--td-line);
	border-radius: 20px;
	background: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.td-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 36px rgba(36, 54, 44, 0.09);
}

.td-icon {
	display: grid;
	width: 50px;
	height: 50px;
	margin-bottom: 42px;
	border-radius: 15px;
	background: var(--td-lime);
	color: var(--td-green-dark);
	font-size: 20px;
	font-weight: 900;
	place-items: center;
}

.td-card h3 {
	margin-bottom: 12px;
	font-size: 20px;
}

.td-card p {
	margin-bottom: 0;
	color: var(--td-muted);
	font-size: 14px;
}

.td-gallery {
	background: var(--td-cream);
}

.td-section-head--row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	max-width: none;
	gap: 40px;
}

.td-section-head--row > p {
	max-width: 340px;
	padding-bottom: 10px;
}

.td-photo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 230px 230px;
	gap: 14px;
}

.td-photo {
	overflow: hidden;
	margin: 0;
	border-radius: 18px;
	background: #ddd;
}

.td-photo__button {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.td-photo__button:focus-visible {
	outline: 3px solid var(--td-green);
	outline-offset: 4px;
}

.td-photo--large {
	grid-column: span 2;
	grid-row: span 2;
}

.td-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.td-photo:hover img {
	transform: scale(1.035);
}

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

.td-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	padding: 28px;
	background: rgba(9, 18, 14, 0.82);
	place-items: center;
}

.td-lightbox__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: transparent;
	cursor: zoom-out;
}

.td-lightbox__image {
	position: relative;
	z-index: 1;
	display: block;
	max-width: min(1120px, 94vw);
	max-height: 88vh;
	border-radius: 22px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
	object-fit: contain;
}

.td-lightbox__close {
	position: fixed;
	top: 18px;
	right: 18px;
	z-index: 2;
	display: grid;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	font-size: 30px;
	line-height: 1;
	place-items: center;
}

.td-lightbox__close:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.td-lightbox--open {
	overflow: hidden;
}

.td-step-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: steps;
}

.td-step-grid li {
	position: relative;
	padding: 30px 30px 24px;
	border-top: 1px solid var(--td-line);
}

.td-step-grid span {
	display: block;
	margin-bottom: 46px;
	color: var(--td-green);
	font-size: 13px;
	font-weight: 900;
}

.td-step-grid strong {
	display: block;
	margin-bottom: 10px;
	font-size: 21px;
}

.td-step-grid p {
	margin: 0;
	color: var(--td-muted);
	font-size: 14px;
}

.td-contact {
	padding: 0 0 100px;
}

.td-contact__box {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 50px;
	padding: 56px 64px;
	border-radius: 28px;
	background: var(--td-green-dark);
	color: #fff;
}

.td-contact h2 {
	margin-bottom: 12px;
	color: #fff;
	font-size: clamp(32px, 4vw, 48px);
	letter-spacing: -0.04em;
}

.td-contact p {
	max-width: 650px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 14px;
}

.td-contact .td-eyebrow {
	color: var(--td-lime);
}

.td-contact__actions {
	display: grid;
	gap: 13px;
	text-align: right;
}

.td-contact__phone {
	color: #fff !important;
	font-size: 28px;
	font-weight: 900;
}

.td-contact__actions > div {
	display: flex;
	justify-content: flex-end;
	gap: 15px;
	color: var(--td-lime);
	font-size: 13px;
	font-weight: 800;
}

.td-footer {
	padding: 26px 0;
	border-top: 1px solid var(--td-line);
	color: var(--td-muted);
	font-size: 12px;
}

.td-footer .td-container {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.td-footer p {
	margin: 0;
}

.td-mobile-call {
	display: none;
}

.td-service-hero {
	overflow: hidden;
	padding: 82px 0 90px;
	background:
		linear-gradient(90deg, rgba(245, 241, 232, 0.76) 1px, transparent 1px),
		linear-gradient(rgba(245, 241, 232, 0.76) 1px, transparent 1px),
		#fffdf8;
	background-size: 48px 48px;
}

.td-service-hero__grid {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	align-items: center;
	gap: 72px;
}

.td-service-hero h1 {
	max-width: 760px;
	margin-bottom: 24px;
	font-size: clamp(50px, 6.4vw, 86px);
	letter-spacing: -0.065em;
}

.td-work-visual {
	position: relative;
	min-height: 570px;
	overflow: hidden;
	padding: 36px;
	border-radius: 30px;
	background: var(--td-green-dark);
	color: #fff;
	box-shadow: var(--td-shadow);
}

.td-work-visual::before {
	position: absolute;
	top: -80px;
	right: -90px;
	width: 300px;
	height: 300px;
	border: 60px solid rgba(220, 233, 185, 0.13);
	border-radius: 50%;
	content: "";
}

.td-work-visual--photo {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	isolation: isolate;
}

.td-work-visual--photo::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(10, 27, 19, 0.22) 0%, rgba(10, 27, 19, 0.04) 42%, rgba(10, 27, 19, 0.86) 100%);
	content: "";
}

.td-work-visual--photo > img {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 58%;
}

.td-work-visual__top {
	position: relative;
	z-index: 2;
	display: grid;
}

.td-work-visual__top span {
	color: var(--td-lime);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.td-work-visual__top strong {
	font-size: 34px;
	letter-spacing: -0.04em;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.td-work-visual__person {
	position: relative;
	width: 210px;
	height: 230px;
	margin: 30px auto 18px;
}

.td-work-visual__head,
.td-work-visual__body,
.td-work-visual__box {
	position: absolute;
	display: block;
}

.td-work-visual__head {
	top: 0;
	left: 78px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--td-lime);
}

.td-work-visual__body {
	top: 50px;
	left: 46px;
	width: 124px;
	height: 166px;
	border-radius: 50px 50px 18px 18px;
	background: #4a8c69;
	transform: rotate(-7deg);
}

.td-work-visual__body::before,
.td-work-visual__body::after {
	position: absolute;
	top: 32px;
	width: 38px;
	height: 150px;
	border-radius: 22px;
	background: #4a8c69;
	content: "";
}

.td-work-visual__body::before {
	left: -20px;
	transform: rotate(22deg);
}

.td-work-visual__body::after {
	right: -20px;
	transform: rotate(-22deg);
}

.td-work-visual__box {
	right: 0;
	bottom: 0;
	width: 100px;
	height: 82px;
	border: 4px solid var(--td-lime);
	background: #c89455;
	transform: rotate(5deg);
}

.td-work-visual ul {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.td-work-visual li {
	padding: 13px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	font-size: 12px;
	font-weight: 700;
}

.td-work-visual li span {
	display: block;
	color: var(--td-lime);
	font-size: 10px;
}

.td-service-strip {
	background: var(--td-lime);
}

.td-service-strip .td-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.td-service-strip div {
	display: grid;
	padding: 25px 34px;
	border-right: 1px solid rgba(33, 77, 58, 0.16);
}

.td-service-strip div:first-child {
	border-left: 1px solid rgba(33, 77, 58, 0.16);
}

.td-service-strip strong {
	font-size: 17px;
}

.td-service-strip span {
	color: #4e6458;
	font-size: 12px;
}

.td-service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.td-service-card {
	min-height: 280px;
	padding: 30px;
	border: 1px solid var(--td-line);
	border-radius: 20px;
	background: #fff;
}

.td-service-card > span {
	display: block;
	margin-bottom: 68px;
	color: var(--td-green);
	font-size: 12px;
	font-weight: 900;
}

.td-service-card h3 {
	margin-bottom: 13px;
	font-size: 22px;
}

.td-service-card p {
	margin-bottom: 0;
	color: var(--td-muted);
	font-size: 14px;
}

.td-service-card--accent {
	background: var(--td-green);
	color: #fff;
}

.td-service-card--accent > span,
.td-service-card--accent h3 {
	color: #fff;
}

.td-service-card--accent p {
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.72);
}

.td-service-card--accent a {
	color: var(--td-lime);
	font-size: 14px;
	font-weight: 900;
}

.td-process {
	padding: 100px 0;
	background: var(--td-cream);
}

.td-process__grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 90px;
}

.td-process-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.td-process-list li {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 22px;
	padding: 28px 0;
	border-top: 1px solid var(--td-line);
}

.td-process-list li:last-child {
	border-bottom: 1px solid var(--td-line);
}

.td-process-list li > span {
	display: grid;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--td-green);
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	place-items: center;
}

.td-process-list strong {
	display: block;
	margin-bottom: 5px;
	font-size: 20px;
}

.td-process-list p {
	margin: 0;
	color: var(--td-muted);
	font-size: 14px;
}

.td-service-audience {
	padding: 100px 0;
}

.td-audience-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid var(--td-line);
	border-left: 1px solid var(--td-line);
}

.td-audience-grid div {
	display: grid;
	min-height: 160px;
	align-content: end;
	padding: 30px;
	border-right: 1px solid var(--td-line);
	border-bottom: 1px solid var(--td-line);
}

.td-audience-grid strong {
	font-size: 19px;
}

.td-audience-grid span {
	color: var(--td-muted);
	font-size: 13px;
}

.td-seo-hero {
	padding: 78px 0 88px;
	background:
		radial-gradient(circle at 85% 15%, rgba(220, 233, 185, 0.7), transparent 27%),
		var(--td-cream);
}

.td-seo-hero__grid {
	display: grid;
	grid-template-columns: 1fr 0.85fr;
	align-items: center;
	gap: 70px;
}

.td-seo-hero h1 {
	margin-bottom: 24px;
	font-size: clamp(48px, 6vw, 78px);
	letter-spacing: -0.06em;
}

.td-seo-hero__photo {
	position: relative;
}

.td-seo-hero__photo img {
	display: block;
	width: 100%;
	aspect-ratio: 0.98;
	border-radius: 28px;
	box-shadow: var(--td-shadow);
	object-fit: cover;
}

.td-seo-hero__photo > div {
	position: absolute;
	right: -20px;
	bottom: 28px;
	display: grid;
	max-width: 260px;
	padding: 18px 20px;
	border: 5px solid var(--td-cream);
	border-radius: 16px;
	background: var(--td-green-dark);
	color: #fff;
}

.td-seo-hero__photo span {
	color: var(--td-lime);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.td-seo-hero__photo strong {
	font-size: 18px;
}

.td-seo-details {
	padding: 100px 0;
	background: var(--td-cream);
}

.td-seo-details__grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 90px;
}

.td-seo-details h2,
.td-related h2 {
	font-size: clamp(34px, 4vw, 48px);
	letter-spacing: -0.04em;
}

.td-seo-details__grid > div:first-child > p {
	color: var(--td-muted);
}

.td-seo-details__items {
	display: grid;
	gap: 15px;
}

.td-seo-details__items article {
	padding: 28px;
	border: 1px solid var(--td-line);
	border-radius: 18px;
	background: #fff;
}

.td-seo-details__items h3 {
	margin-bottom: 10px;
	font-size: 21px;
}

.td-seo-details__items p {
	margin: 0;
	color: var(--td-muted);
	font-size: 14px;
}

.td-seo-faq {
	padding: 100px 0;
}

.td-seo-faq__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.td-seo-faq__grid article {
	padding: 28px;
	border-top: 3px solid var(--td-green);
	background: var(--td-paper);
	box-shadow: 0 12px 30px rgba(36, 54, 44, 0.07);
}

.td-seo-faq__grid h3 {
	margin-bottom: 12px;
	font-size: 19px;
}

.td-seo-faq__grid p {
	margin: 0;
	color: var(--td-muted);
	font-size: 14px;
}

.td-related {
	padding: 0 0 100px;
}

.td-related h2 {
	margin-bottom: 30px;
}

.td-related .td-container > div {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.td-related a {
	padding: 12px 16px;
	border: 1px solid var(--td-line);
	border-radius: 12px;
	background: #fff;
	color: var(--td-green-dark);
	font-size: 13px;
	font-weight: 800;
}

.td-contacts-hero {
	padding: 88px 0 72px;
	background:
		radial-gradient(circle at 82% 20%, rgba(220, 233, 185, 0.85), transparent 30%),
		var(--td-cream);
}

.td-contacts-hero h1 {
	max-width: 900px;
	margin-bottom: 22px;
	font-size: clamp(48px, 6vw, 78px);
	letter-spacing: -0.06em;
}

.td-contacts-hero .td-lead {
	max-width: 750px;
}

.td-contacts-content {
	padding: 80px 0 100px;
}

.td-contacts-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.td-contact-card {
	min-height: 290px;
	padding: 34px;
	border: 1px solid var(--td-line);
	border-radius: 22px;
	background: #fff;
}

.td-contact-card > span {
	display: block;
	margin-bottom: 60px;
	color: var(--td-green);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.td-contact-card h2,
.td-contact-card > a {
	display: block;
	margin-bottom: 16px;
	font-family: Manrope, Arial, sans-serif;
	font-size: clamp(25px, 3vw, 37px);
	font-weight: 900;
	line-height: 1.15;
}

.td-contact-card p {
	max-width: 520px;
	margin: 0;
	color: var(--td-muted);
	font-size: 14px;
}

.td-contact-card--primary {
	grid-row: span 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: var(--td-green-dark);
	color: #fff;
}

.td-contact-card--primary > span {
	margin-bottom: auto;
	color: var(--td-lime);
}

.td-contact-card--primary > a {
	color: #fff;
	font-size: clamp(36px, 5vw, 64px);
}

.td-contact-card--primary p {
	color: rgba(255, 255, 255, 0.65);
}

.td-contact-card__links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.td-vacancies-hero {
	padding: 86px 0 0;
	background:
		radial-gradient(circle at 75% 10%, rgba(220, 233, 185, 0.8), transparent 30%),
		var(--td-cream);
}

.td-vacancies-hero__copy {
	max-width: 900px;
	padding-bottom: 64px;
}

.td-vacancies-hero h1 {
	margin-bottom: 24px;
	font-size: clamp(54px, 7vw, 92px);
	letter-spacing: -0.065em;
}

.td-vacancies-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgba(33, 77, 58, 0.18);
}

.td-vacancies-stats div {
	display: grid;
	padding: 25px 30px;
	border-right: 1px solid rgba(33, 77, 58, 0.18);
}

.td-vacancies-stats div:first-child {
	border-left: 1px solid rgba(33, 77, 58, 0.18);
}

.td-vacancies-stats strong {
	font-size: 24px;
}

.td-vacancies-stats span {
	color: var(--td-muted);
	font-size: 12px;
}

.td-vacancy-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.td-vacancy-card {
	min-height: 300px;
	padding: 34px;
	border: 1px solid var(--td-line);
	border-radius: 22px;
	background: #fff;
}

.td-vacancy-card > span {
	display: block;
	margin-bottom: 64px;
	color: var(--td-green);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.td-vacancy-card h3 {
	margin-bottom: 13px;
	font-size: 28px;
}

.td-vacancy-card p {
	margin-bottom: 24px;
	color: var(--td-muted);
	font-size: 14px;
}

.td-vacancy-card a {
	color: var(--td-green);
	font-size: 13px;
	font-weight: 900;
}

.td-condition-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.td-condition-list div {
	padding: 25px;
	border: 1px solid var(--td-line);
	border-radius: 16px;
	background: #fff;
}

.td-condition-list strong {
	display: block;
	margin-bottom: 7px;
	font-size: 18px;
}

.td-condition-list p {
	margin: 0;
	color: var(--td-muted);
	font-size: 13px;
}

@media (max-width: 980px) {
	.td-nav {
		display: none;
	}

	.td-hero__grid {
		grid-template-columns: 1fr;
	}

	.td-hero__copy {
		max-width: 760px;
	}

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

	.td-photo-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 330px 210px 210px;
	}

	.td-contact__box {
		grid-template-columns: 1fr;
	}

	.td-contact__actions {
		text-align: left;
	}

	.td-contact__actions > div {
		justify-content: flex-start;
	}

	.td-service-hero__grid,
	.td-process__grid {
		grid-template-columns: 1fr;
	}

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

	.td-seo-hero__grid,
	.td-seo-details__grid {
		grid-template-columns: 1fr;
	}

	.td-seo-faq__grid {
		grid-template-columns: 1fr;
	}

	.td-contacts-grid {
		grid-template-columns: 1fr;
	}

	.td-contact-card--primary {
		grid-row: auto;
	}

	.td-vacancy-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	body.td-home {
		padding-bottom: 64px;
		font-size: 16px;
	}

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

	.td-header__inner {
		min-height: 74px;
	}

	.td-brand img {
		width: 44px;
		height: 44px;
	}

	.td-brand strong {
		font-size: 16px;
	}

	.td-brand small,
	.td-phone {
		display: none;
	}

	.td-hero {
		padding: 48px 0 60px;
	}

	.td-hero__grid {
		gap: 42px;
	}

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

	.td-lead {
		font-size: 17px;
	}

	.td-actions,
	.td-actions .td-btn {
		width: 100%;
	}

	.td-salary {
		grid-template-columns: 1fr;
	}

	.td-salary strong {
		grid-row: auto;
		margin-right: 0;
	}

	.td-checks {
		display: grid;
	}

	.td-hero__visual::before {
		inset: 14px -8px -14px 18px;
	}

	.td-hero__badge {
		right: -4px;
		bottom: 14px;
		min-width: 180px;
	}

	.td-benefits,
	.td-gallery,
	.td-steps {
		padding: 70px 0;
	}

	.td-benefit-grid,
	.td-step-grid {
		grid-template-columns: 1fr;
	}

	.td-card {
		min-height: 0;
	}

	.td-icon,
	.td-step-grid span {
		margin-bottom: 24px;
	}

	.td-section-head--row {
		display: block;
	}

	.td-photo-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 280px repeat(2, 150px);
		gap: 8px;
	}

	.td-photo--large {
		grid-column: span 2;
		grid-row: auto;
	}

	.td-contact {
		padding-bottom: 70px;
	}

	.td-contact__box {
		padding: 38px 24px;
		border-radius: 22px;
	}

	.td-contact__phone {
		font-size: 24px;
	}

	.td-footer .td-container {
		display: grid;
	}

	.td-mobile-call {
		position: fixed;
		right: 10px;
		bottom: 10px;
		left: 10px;
		z-index: 100;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 52px;
		border-radius: 12px;
		background: var(--td-green);
		color: #fff !important;
		font-size: 14px;
		font-weight: 900;
		box-shadow: 0 12px 30px rgba(33, 77, 58, 0.3);
	}

	.td-service-hero {
		padding: 48px 0 60px;
	}

	.td-service-hero__grid {
		gap: 42px;
	}

	.td-service-hero h1 {
		font-size: 46px;
	}

	.td-work-visual {
		min-height: 520px;
		padding: 26px;
	}

	.td-work-visual ul {
		grid-template-columns: 1fr;
	}

	.td-service-strip .td-container,
	.td-service-grid,
	.td-audience-grid {
		grid-template-columns: 1fr;
	}

	.td-service-strip div,
	.td-service-strip div:first-child {
		border-right: 0;
		border-bottom: 1px solid rgba(33, 77, 58, 0.16);
		border-left: 0;
	}

	.td-service-card {
		min-height: 0;
	}

	.td-service-card > span {
		margin-bottom: 34px;
	}

	.td-process {
		padding: 70px 0;
	}

	.td-seo-hero {
		padding: 48px 0 60px;
	}

	.td-seo-hero h1 {
		font-size: 43px;
	}

	.td-seo-hero__grid {
		gap: 42px;
	}

	.td-seo-hero__photo img {
		aspect-ratio: 1.1;
	}

	.td-seo-hero__photo > div {
		right: -4px;
		bottom: 14px;
	}

	.td-seo-details,
	.td-seo-faq {
		padding: 70px 0;
	}

	.td-contacts-hero {
		padding: 48px 0 54px;
	}

	.td-contacts-hero h1 {
		font-size: 42px;
	}

	.td-contacts-content {
		padding: 54px 0 70px;
	}

	.td-contact-card {
		min-height: 0;
		padding: 26px;
	}

	.td-contact-card > span {
		margin-bottom: 34px;
	}

	.td-contact-card__links,
	.td-contact-card__links .td-btn {
		width: 100%;
	}

	.td-vacancies-hero {
		padding-top: 48px;
	}

	.td-vacancies-hero h1 {
		font-size: 45px;
	}

	.td-vacancies-stats,
	.td-condition-list {
		grid-template-columns: 1fr;
	}

	.td-vacancies-stats div,
	.td-vacancies-stats div:first-child {
		border-right: 0;
		border-bottom: 1px solid rgba(33, 77, 58, 0.18);
		border-left: 0;
	}

	.td-vacancy-card {
		min-height: 0;
		padding: 27px;
	}

	.td-vacancy-card > span {
		margin-bottom: 38px;
	}
}
