:root {
	--gs-yellow: #f5b800;
	--gs-yellow-hover: #e0a800;
	--gs-dark: #1a1a1a;
	--gs-dark-2: #242424;
	--gs-dark-3: #2e2e2e;
	--gs-text: #333333;
	--gs-text-light: #888888;
	--gs-white: #ffffff;
	--gs-bg: #f4f4f4;
	--gs-radius: 12px;
	--gs-radius-sm: 8px;
	--gs-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	--gs-container: 1200px;
	--gs-header-h: 80px;
	--gs-font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--gs-transition: 0.25s ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--gs-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--gs-text);
	background: var(--gs-bg);
	-webkit-font-smoothing: antialiased;
}

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

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

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--gs-transition);
}

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

/* Container */
.gs-container {
	width: 100%;
	max-width: var(--gs-container);
	margin: 0 auto;
	padding: 0 20px;
}

/* Buttons */
.gs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border: none;
	border-radius: var(--gs-radius-sm);
	font-family: var(--gs-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: background var(--gs-transition), color var(--gs-transition), border-color var(--gs-transition);
	white-space: nowrap;
}

.gs-btn--primary {
	background: var(--gs-yellow);
	color: var(--gs-dark);
}

.gs-btn--primary:hover {
	background: var(--gs-yellow-hover);
	color: var(--gs-dark);
}

.gs-btn--ghost {
	background: transparent;
	color: var(--gs-white);
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.gs-btn--ghost:hover {
	border-color: var(--gs-yellow);
	color: var(--gs-yellow);
}

.gs-btn--lg {
	padding: 16px 28px;
	font-size: 15px;
}

.gs-btn--block {
	width: 100%;
}

.gs-btn__arrow {
	display: inline-flex;
}

/* Links */
.gs-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--gs-yellow);
	cursor: pointer;
}

.gs-link:hover {
	color: var(--gs-yellow-hover);
}

.gs-link--dark {
	color: var(--gs-dark);
}

.gs-link--dark:hover {
	color: var(--gs-yellow);
}

.gs-link__arrow {
	display: inline-flex;
}

/* Section */
.gs-section {
	padding: 80px 0;
}

.gs-section--dark {
	background: var(--gs-dark);
	color: var(--gs-white);
}

.gs-section__title {
	margin: 0 0 48px;
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 800;
	line-height: 1.2;
	color: var(--gs-dark);
}

.gs-section--dark .gs-section__title {
	color: var(--gs-white);
}

.gs-section__title--center {
	text-align: center;
}

.gs-section__title--center::after {
	content: '';
	display: block;
	width: 48px;
	height: 3px;
	margin: 16px auto 0;
	background: var(--gs-yellow);
	border-radius: 2px;
}

.gs-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 40px;
}

.gs-section__head .gs-section__title {
	margin-bottom: 0;
}

/* Header */
.gs-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--gs-header-h);
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: background var(--gs-transition), box-shadow var(--gs-transition);
}

.gs-header.is-scrolled {
	background: rgba(26, 26, 26, 0.98);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gs-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--gs-header-h);
	gap: 24px;
}

.gs-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--gs-white);
	flex-shrink: 0;
	background: transparent;
}

.gs-logo__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--gs-yellow);
}

.gs-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.gs-logo__title {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.gs-logo__sub {
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.55);
	text-transform: uppercase;
}

.gs-logo__img {
	display: block;
	width: auto;
	max-height: 48px;
	max-width: min(220px, 42vw);
	height: auto;
	background: transparent;
}

.gs-logo--footer .gs-logo__img,
.gs-logo__img--footer {
	max-height: 44px;
	max-width: 200px;
}

.gs-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.gs-nav__list {
	display: flex;
	align-items: center;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gs-nav__list a {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
}

.gs-nav__list a:hover,
.gs-nav__list .current-menu-item a,
.gs-nav__list .current-menu-ancestor > a {
	color: var(--gs-yellow);
}

.gs-nav__item--has-children {
	position: relative;
}

.gs-nav__caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 6px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	vertical-align: middle;
}

.gs-nav__submenu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 320px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: var(--gs-dark-2);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--gs-radius-sm);
	box-shadow: var(--gs-shadow);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--gs-transition), visibility var(--gs-transition);
	z-index: 100;
}

.gs-nav__item--has-children.is-open .gs-nav__submenu {
	opacity: 1;
	visibility: visible;
}

.gs-nav__submenu a {
	display: block;
	padding: 12px 14px;
	font-size: 13px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.85);
	border-radius: 6px;
	white-space: normal;
}

.gs-nav__submenu a:hover {
	background: rgba(255, 255, 255, 0.06);
	color: var(--gs-yellow);
}

.gs-header__contacts {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.gs-header__phone {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gs-header__phone-icon {
	display: flex;
	color: var(--gs-yellow);
}

.gs-header__phone-number {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--gs-white);
	white-space: nowrap;
}

.gs-header__phone-number:hover {
	color: var(--gs-yellow);
}

.gs-header__hours {
	display: block;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
}

.gs-header__btn {
	padding: 10px 20px;
	font-size: 13px;
}

.gs-burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--gs-white);
	cursor: pointer;
}

.gs-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 1100;
	background: rgba(0, 0, 0, 0.6);
}

.gs-mobile-menu__inner {
	position: absolute;
	top: 0;
	right: 0;
	width: min(320px, 85vw);
	height: 100%;
	padding: 24px;
	background: var(--gs-dark);
	overflow-y: auto;
}

.gs-mobile-menu__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-left: auto;
	margin-bottom: 24px;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--gs-white);
	cursor: pointer;
}

.gs-mobile-menu__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gs-mobile-menu__list li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gs-mobile-menu__list a {
	display: block;
	padding: 16px 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--gs-white);
}

.gs-mobile-menu__phone {
	display: block;
	margin-top: 24px;
	font-size: 18px;
	font-weight: 700;
	color: var(--gs-yellow);
}

.gs-mobile-menu__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 16px 0;
	border: none;
	background: transparent;
	font-family: var(--gs-font);
	font-size: 16px;
	font-weight: 600;
	color: var(--gs-white);
	cursor: pointer;
}

.gs-mobile-menu__caret {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid currentColor;
	transition: transform var(--gs-transition);
}

.gs-mobile-menu__toggle[aria-expanded="true"] .gs-mobile-menu__caret {
	transform: rotate(180deg);
}

.gs-mobile-menu__submenu {
	display: none;
	margin: 0;
	padding: 0 0 8px 12px;
	list-style: none;
}

.gs-mobile-menu__submenu.is-open {
	display: block;
}

.gs-mobile-menu__submenu a {
	display: block;
	padding: 12px 0;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.75);
}

/* Breadcrumbs */
.gs-breadcrumbs {
	margin-bottom: 28px;
}

.gs-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
}

.gs-breadcrumbs__item:not(:last-child)::after {
	content: '>';
	margin: 0 10px;
	color: rgba(255, 255, 255, 0.35);
}

.gs-breadcrumbs__item a {
	color: inherit;
	text-decoration: none;
	transition: color var(--gs-transition);
}

.gs-breadcrumbs__item a:hover {
	color: var(--gs-yellow);
}

.gs-breadcrumbs__item span {
	color: rgba(255, 255, 255, 0.85);
}

/* Main */
.gs-main {
	padding-top: 0;
}

/* Top banners start flush under fixed header; content clears the header height */
.gs-main > .gs-hero,
.gs-main > .gs-service-hero,
.gs-main > .gs-ul-hero,
.gs-main > .gs-abt-hero,
.gs-main > .gs-cnt-hero,
.gs-main > .gs-prj-hero,
.gs-main > .gs-prj-single-hero {
	padding-top: var(--gs-header-h);
}

.gs-main > .gs-container.gs-page {
	padding-top: calc(var(--gs-header-h) + 32px);
}

/* Hero */
.gs-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	background-color: #1a1815;
	background-image: linear-gradient(135deg, #2a2520 0%, #1a1815 50%, #0f0e0c 100%);
	background-size: cover;
	background-position: center right;
	overflow: hidden;
}

.gs-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.82) 0%,
		rgba(0, 0, 0, 0.55) 42%,
		rgba(0, 0, 0, 0.15) 68%,
		rgba(0, 0, 0, 0.05) 100%
	);
}

.gs-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: calc(100vh - var(--gs-header-h));
	min-height: calc(100dvh - var(--gs-header-h));
	padding: 60px 20px 100px;
}

.gs-hero__content {
	max-width: 640px;
}

.gs-hero__title {
	margin: 0 0 20px;
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
	line-height: 1.15;
	color: var(--gs-white);
}

.gs-hero__title-accent {
	display: block;
	color: var(--gs-yellow);
}

.gs-hero__text {
	margin: 0 0 32px;
	font-size: clamp(15px, 2vw, 17px);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	max-width: 520px;
}

.gs-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.gs-hero__features {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin-top: auto;
	padding-top: 40px;
}

.gs-hero__feature {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gs-hero__feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: var(--gs-yellow);
}

.gs-hero__feature-text {
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
}

/* Services */
.gs-services {
	background: var(--gs-bg);
}

.gs-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.gs-service-card {
	position: relative;
	border-radius: var(--gs-radius);
	overflow: hidden;
	min-height: 320px;
	background: var(--gs-dark-2);
}

.gs-service-card__bg {
	position: absolute;
	inset: 0;
}

.gs-service-card__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gs-service-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.92) 100%);
}

.gs-service-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 320px;
	padding: 28px;
}

.gs-service-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	color: var(--gs-yellow);
}

.gs-service-card__title {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 700;
	color: var(--gs-white);
}

.gs-service-card__text {
	margin: 0 0 auto;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.65);
	padding-bottom: 20px;
}

/* Why us */
.gs-why {
	background: var(--gs-white);
}

.gs-why__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.gs-why__features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px 32px;
}

.gs-why__feature {
	display: flex;
	gap: 14px;
}

.gs-why__feature-icon {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	color: var(--gs-yellow);
}

.gs-why__feature-title {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 700;
	color: var(--gs-dark);
}

.gs-why__feature-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--gs-text-light);
}

.gs-why__media {
	position: relative;
	border-radius: var(--gs-radius);
	overflow: hidden;
}

.gs-why__image {
	aspect-ratio: 4 / 3;
	background: var(--gs-dark-2);
}

.gs-why__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gs-why__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: var(--gs-dark);
	padding: 20px 16px;
}

.gs-why__stat {
	text-align: center;
	padding: 8px;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.gs-why__stat:last-child {
	border-right: none;
}

.gs-why__stat-number {
	display: block;
	font-size: clamp(20px, 3vw, 28px);
	font-weight: 800;
	color: var(--gs-yellow);
	line-height: 1.2;
}

.gs-why__stat-label {
	display: block;
	margin-top: 4px;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.3;
}

/* Process */
.gs-process__steps {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
}

.gs-process__step {
	flex: 1;
	text-align: center;
	padding: 0 8px;
}

.gs-process__step-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.gs-process__number {
	font-size: 13px;
	font-weight: 700;
	color: var(--gs-yellow);
}

.gs-process__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(245, 184, 0, 0.12);
	color: var(--gs-yellow);
}

.gs-process__step-title {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	color: var(--gs-white);
}

.gs-process__step-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.55);
}

.gs-process__arrow {
	display: flex;
	align-items: center;
	padding-top: 48px;
	color: rgba(245, 184, 0, 0.4);
	flex-shrink: 0;
}

/* Projects */
.gs-projects {
	background: var(--gs-bg);
}

.gs-projects__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.gs-project-card {
	border-radius: var(--gs-radius);
	overflow: hidden;
}

.gs-project-card__link {
	display: block;
}

.gs-project-card__image {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--gs-dark-2);
	overflow: hidden;
}

.gs-project-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.gs-project-card:hover .gs-project-card__image img {
	transform: scale(1.05);
}

.gs-project-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
}

.gs-project-card__title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	color: var(--gs-white);
}

/* Testimonials */
.gs-testimonials__slider {
	overflow: hidden;
}

.gs-testimonials__track {
	display: flex;
	gap: 24px;
	transition: transform 0.4s ease;
}

.gs-testimonial-card {
	flex: 0 0 calc(33.333% - 16px);
	background: var(--gs-dark-2);
	border-radius: var(--gs-radius);
	padding: 32px 28px;
	text-align: center;
}

.gs-testimonial-card__avatar {
	width: 72px;
	height: 72px;
	margin: 0 auto 16px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--gs-dark-3);
}

.gs-testimonial-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gs-testimonial-card__name {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 700;
	color: var(--gs-white);
}

.gs-testimonial-card__type {
	margin: 0 0 16px;
	font-size: 13px;
	color: var(--gs-yellow);
}

.gs-testimonial-card__text {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
}

.gs-stars {
	display: flex;
	justify-content: center;
	gap: 4px;
}

.gs-stars__item {
	display: flex;
	color: rgba(255, 255, 255, 0.2);
}

.gs-stars__item.is-active {
	color: var(--gs-yellow);
}

.gs-testimonials__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.gs-testimonials__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	cursor: pointer;
	transition: background var(--gs-transition);
}

.gs-testimonials__dot.is-active {
	background: var(--gs-yellow);
}

/* Footer */
.gs-footer {
	background: var(--gs-dark);
	color: rgba(255, 255, 255, 0.75);
	padding: 64px 0 0;
}

.gs-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.4fr;
	gap: 32px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gs-footer__about {
	margin: 16px 0;
	font-size: 13px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.5);
}

.gs-footer__socials {
	display: flex;
	gap: 10px;
}

.gs-footer__social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	font-size: 13px;
	font-weight: 700;
	color: var(--gs-white);
	transition: background var(--gs-transition);
}

.gs-footer__social:hover {
	background: var(--gs-yellow);
	color: var(--gs-dark);
}

.gs-footer__heading {
	margin: 0 0 20px;
	font-size: 16px;
	font-weight: 700;
	color: var(--gs-white);
}

.gs-footer__menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gs-footer__menu li {
	margin-bottom: 10px;
}

.gs-footer__menu a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
}

.gs-footer__menu a:hover {
	color: var(--gs-yellow);
}

.gs-footer__contacts {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gs-footer__contacts li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 13px;
}

.gs-footer__contact-icon {
	display: flex;
	flex-shrink: 0;
	color: var(--gs-yellow);
	margin-top: 2px;
}

.gs-footer__contacts a {
	color: rgba(255, 255, 255, 0.75);
}

.gs-footer__contacts a:hover {
	color: var(--gs-yellow);
}

/* Form */
.gs-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gs-form__field input,
.gs-form__field textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--gs-radius-sm);
	background: rgba(255, 255, 255, 0.05);
	font-family: var(--gs-font);
	font-size: 14px;
	color: var(--gs-white);
	outline: none;
	transition: border-color var(--gs-transition);
}

.gs-form__field input::placeholder,
.gs-form__field textarea::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.gs-form__field input:focus,
.gs-form__field textarea:focus {
	border-color: var(--gs-yellow);
}

.gs-form__field textarea {
	resize: vertical;
	min-height: 80px;
}

.gs-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
}

.gs-footer__copy {
	margin: 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
}

.gs-footer__privacy {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
}

.gs-footer__privacy:hover {
	color: var(--gs-yellow);
}

/* Page */
.gs-page {
	padding: 60px 0 80px;
}

.gs-page__title {
	margin: 0 0 24px;
	font-size: 36px;
	font-weight: 800;
}

.gs-page__content {
	line-height: 1.8;
}

/* Responsive */
@media (max-width: 1100px) {
	.gs-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gs-footer__col--form {
		grid-column: span 2;
	}
}

@media (max-width: 1024px) {
	.gs-nav,
	.gs-header__contacts {
		display: none;
	}

	.gs-burger {
		display: flex;
	}

	.gs-services__grid,
	.gs-projects__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gs-why__grid {
		grid-template-columns: 1fr;
	}

	.gs-testimonial-card {
		flex: 0 0 calc(50% - 12px);
	}

	.gs-process__steps {
		flex-wrap: wrap;
		justify-content: center;
	}

	.gs-process__arrow {
		display: none;
	}

	.gs-process__step {
		flex: 0 0 calc(33.333% - 16px);
		margin-bottom: 24px;
	}
}

@media (max-width: 768px) {
	.gs-section {
		padding: 56px 0;
	}

	.gs-services__grid,
	.gs-projects__grid {
		grid-template-columns: 1fr;
	}

	.gs-why__features {
		grid-template-columns: 1fr;
	}

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

	.gs-why__stat:nth-child(2) {
		border-right: none;
	}

	.gs-why__stat {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.gs-why__stat:nth-last-child(-n+2) {
		border-bottom: none;
	}

	.gs-testimonial-card {
		flex: 0 0 100%;
	}

	.gs-process__step {
		flex: 0 0 calc(50% - 16px);
	}

	.gs-footer__grid {
		grid-template-columns: 1fr;
	}

	.gs-footer__col--form {
		grid-column: auto;
	}

	.gs-section__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.gs-hero__features {
		flex-direction: column;
		gap: 16px;
	}

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

	.gs-hero__actions .gs-btn {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.gs-why__stats {
		grid-template-columns: 1fr 1fr;
	}

	.gs-process__step {
		flex: 0 0 100%;
	}
}
