/* =========================================================
   N3 Soft Landing — стилі за макетом Figma
   ========================================================= */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
h1, h2, h3, p, li, span, a { overflow-wrap: break-word; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
section#contact {
    padding: 10% 50px;
    background-position: bottom;
}
/* ---- Design tokens ---- */
:root {
	--c-bg: #000002;
	--c-card: #0c0f13;
	--c-accent: #00c9ff;
	--c-accent-2: #0080ff;
	--c-white: #ffffff;
	--c-muted: #a2a2a2;

	--font-heading: 'Exo 2', sans-serif;
	--font-body: 'Inter', sans-serif;

	--radius: 10px;
	--container-max: 1248px;
	--container-pad: 24px;
	--section-gap: 150px;
}

@media (max-width: 900px) {
	:root {
		--section-gap: 96px;
	}
}

body {
	background: var(--c-bg);
	color: var(--c-white);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.4;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}




.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

.section {
	padding-top: var(--section-gap);
}

.eyebrow {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(16px, 2.4vw, 24px);
	line-height: 1.33;
	color: var(--c-accent);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-bottom: 16px;
}

.h2 {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(26px, 4.4vw, 48px);
	line-height: 1.05;
	color: var(--c-white);
	white-space: normal;
	margin-bottom: 24px;
	max-width: 900px;
}

/* Гредієнтна рамка, використовується на картках, які лежать прямо на фоні. */
.gradient-border {
	border: 2px solid transparent;
	border-radius: var(--radius);
	background:
		linear-gradient(var(--c-bg), var(--c-bg)) padding-box,
		linear-gradient(180deg, var(--c-accent), var(--c-accent-2)) border-box;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(0, 0, 2, 0.94);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	/* Навмисно без backdrop-filter: цей фільтр створює новий containing
	   block для position:fixed нащадків (мобільне меню) і ламає його
	   позиціонування відносно вʼюпорта. */
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px var(--container-pad);
}

.site-logo img {
    height: 98px;
    width: auto;
}

.main-nav {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.nav-link {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 16px;
	line-height: 1.4;
	color: var(--c-accent);
	padding: 12px 8px;
	transition: color 0.2s ease;
	white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
	color: var(--c-white);
}

.nav-link.is-active {
	color: var(--c-white);
}

/* Рухома смуга-індикатор під активним (або наведеним) пунктом меню. */
.nav-indicator {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 3px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2));
	opacity: 0;
	pointer-events: none;
	transform: translate(0, 0);
	transition:
		transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.2s ease;
}

.nav-indicator.is-visible {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.nav-indicator {
		transition: opacity 0.2s ease;
	}
}

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

.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	padding: 0;
}

.burger-line {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--c-accent);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 900px) {
	.burger { display: flex; }

	.main-nav {
		position: fixed;
		inset: 0;
		top: 80px;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: flex-start;
		gap: 8px;
		background: var(--c-bg);
		padding: 24px;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		overflow-y: auto;
	}

	.main-nav.is-open {
		transform: translateX(0);
	}

	.nav-link {
		font-size: 20px;
		padding: 14px 4px;
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.burger.is-open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.burger.is-open .burger-line:nth-child(2) { opacity: 0; }
	.burger.is-open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* =========================================================
   Hero
   ========================================================= */
.hero-section { padding-top: 60px; }

.hero-inner {
	display: flex;
	align-items: center;
	gap: 60px;
}

.hero-media {
    flex: 0 0 46%;
    max-width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-content {
	flex: 1;
	min-width: 0;
}
.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(34px, 6vw, 77px);
    line-height: 1.04;
    color: var(--c-accent);
    white-space: normal;
    margin-bottom: 40px;
    color: #fff;
}
.hero-title strong{
    color: var(--c-accent);
}

.hero-text {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 620px;
}

.hero-text p {
	font-size: clamp(17px, 2vw, 24px);
	line-height: 1.21;
}

@media (max-width: 900px) {
	.hero-inner {
		flex-direction: column-reverse;
		gap: 32px;
	}
	.hero-media {
		flex: none;
		max-width: 320px;
		width: 100%;
	}
}

/* =========================================================
   About
   ========================================================= */
.about-text {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 1000px;
	margin-bottom: 50px;
}

.about-text p {
	font-size: clamp(17px, 2vw, 24px);
	line-height: 1.21;
}

.benefit-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 50px 40px;
}

.benefit-item {
	flex: 1 1 180px;
	max-width: 240px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.benefit-icon img {
	height: 97px;
	width: auto;
}

.benefit-item p {
	font-size: 20px;
	line-height: 1.21;
}

/* =========================================================
   Services
   ========================================================= */
.service-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 50px;
}

.service-card {
	background: var(--c-card);
	border-radius: var(--radius);
	padding: 20px;
	display: flex;
	gap: 30px;
}

.service-card-media {
	flex: 0 0 30%;
	max-width: 382px;
	border-radius: var(--radius);
	overflow: hidden;
	align-self: stretch;
}

.service-card-media img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.service-card-content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.service-card-header {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.service-title {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 24px;
	line-height: 1.33;
	color: var(--c-accent);
}

.service-description,
.service-line {
	font-size: 16px;
	line-height: 1.21;
}

.service-block-label {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 20px;
	line-height: 1.4;
	color: var(--c-accent);
	margin-bottom: 8px;
}

.service-benefits-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 40px;
}

.service-benefits-columns ul {
	flex: 1 1 220px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.service-benefits-columns li {
	font-size: 16px;
	line-height: 1.21;
}

.service-line { display: block; }
.service-line .service-block-label { display: inline; margin-right: 6px; margin-bottom: 0; }

@media (max-width: 780px) {
	.service-card { flex-direction: column; }
	.service-card-media { max-width: none; height: 220px; }
	.site-logo img {
    height: 58px;
    width: auto;
}
}

/* =========================================================
   CTA (1 та 2)
   ========================================================= */
.cta-section {
	background-color: var(--c-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cta-inner {
    max-width: 650px;
	max-width: var(--container-max);
}
section#cta1 {
    padding: 17% 0px;
    margin: 50px 0px;
}
section.section.cta-section.cta-section--alt {
    padding: 12% 0px;
    margin: 50px 0px;
}
.cta-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
}

.cta-text p {
	font-size: clamp(17px, 2vw, 24px);
	line-height: 1.21;
}

/* =========================================================
   Why us
   ========================================================= */
.whyus-text {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 1000px;
	margin-bottom: 50px;
}

.whyus-text p {
	font-size: clamp(17px, 2vw, 24px);
	line-height: 1.21;
}

.whyus-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.whyus-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 23px 30px;
}

.whyus-item:last-child {
	grid-column: 1 / -1;
}

.whyus-icon {
	width: 45px;
	height: 45px;
	flex-shrink: 0;
}

.whyus-item p {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 24px;
	line-height: 1.33;
}

@media (max-width: 700px) {
	.whyus-grid { grid-template-columns: 1fr; }
	.whyus-item:last-child { grid-column: auto; }
}

/* =========================================================
   Process
   ========================================================= */
.process-text {
	font-size: clamp(17px, 2vw, 24px);
	line-height: 1.21;
	max-width: 900px;
	margin-bottom: 50px;
}

.process-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.process-row {
	padding: 17px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 12px 60px;
}

.process-row-title {
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex: 1 1 260px;
	min-width: 0;
}

.process-number {
	font-family: var(--font-heading);
	font-size: 24px;
	color: var(--c-accent);
}

.process-step-title {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 24px;
	line-height: 1.33;
}

.process-row-desc {
	font-size: 16px;
	line-height: 1.21;
	flex: 2 1 400px;
	min-width: 0;
}

@media (max-width: 640px) {
	.process-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.process-row-title,
	.process-row-desc {
		flex: none;
		width: 100%;
	}
}

/* =========================================================
   Business benefits
   ========================================================= */
.bbenefits-text {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 1000px;
	margin-bottom: 40px;
}

.bbenefits-text p {
	font-size: clamp(17px, 2vw, 24px);
	line-height: 1.21;
}

.bbenefits-label { font-weight: 600; }

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

@media (max-width: 900px) {
	.bbenefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
	.bbenefits-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 50px;
}

.faq-item {
	background: var(--c-card);
	border-radius: var(--radius);
	padding: 4px 20px;
}

.faq-question {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0;
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: clamp(18px, 2.4vw, 24px);
	line-height: 1.33;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-arrow {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.faq-item[open] .faq-arrow {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 0 24px;
	font-size: 16px;
	line-height: 1.21;
	color: var(--c-muted);
	max-width: 1000px;
}

.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* =========================================================
   Contact
   ========================================================= */
.contact-section {
	background-color: var(--c-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.contact-inner {
	padding: 60px 0 100px;
}

.contact-inner .h2 { max-width: 825px; margin-bottom: 40px; }

.contact-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 500px;
}

.contact-row {
	display: flex;
	align-items: center;
	gap: 24px;
}

.contact-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
}

.contact-row span {
	font-size: clamp(17px, 2vw, 24px);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
	margin-top: var(--section-gap);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 32px 0;
}

.footer-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.footer-logo img {
    height: 105px;
}

.footer-copy {
	font-size: 14px;
	color: var(--c-muted);
}

.footer-nav {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-nav a {
	font-size: 14px;
	color: var(--c-muted);
}

.footer-nav a:hover { color: var(--c-accent); }
