/* ============================================================
BIODROOK вЂ” style.css
Sections: Variables в†’ Reset в†’ Typography в†’ Utilities в†’
Header в†’ Hero в†’ Advantages в†’ About в†’ Process/Accordion в†’
News в†’ Team в†’ Mobile Systems в†’ CTA в†’ Timeline в†’ Contact в†’
Footer в†’ Animations в†’ Responsive
============================================================ */

/* === VARIABLES === */
:root {
	--font: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
	--color-bg: #ffffff;
	--color-dark: #0a0a0a;
	--color-text: #0a0a0a;
	--color-muted: #8d8d8d;
	--color-accent: #d8d8d8;
	--color-light-bg: #f5f5f5;
	--color-team-bg: #1a1a1a;
	--max-width: 1200px;
	--section-py: 60px;
	--transition: 0.3s ease;
}

/* === RESET === */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}



html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font);
	font-size: 18px;
	font-weight: 400;
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
}

button {
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font);
}

/* === TYPOGRAPHY === */
h1 {
	font-size: clamp(42px, 4.5vw, 64px);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(32px, 3.5vw, 52px);
	font-weight: 400;
	line-height: 1.2;
}

h3 {
	font-size: clamp(24px, 2vw, 36px);
	font-weight: 400;
	line-height: 1.3;
}

p {
	line-height: 1.6;
	font-size: 20px;
}

/* === UTILITIES === */
.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 5px;
}

.section-title {
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 400;
	letter-spacing: 0.02em;
	margin-bottom: 48px;
}

.section-desc {
	font-size: 18px;
	color: var(--color-muted);
	max-width: 680px;
	margin-top: 16px;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 14px 35px;
	border-radius: 30px;
	font-size: 17px;
	font-family: var(--font);
	font-weight: 400;
	cursor: pointer;
	transition: opacity var(--transition), transform var(--transition);
	line-height: 1;
}

.btn:hover {
	opacity: 0.85;
	transform: translateY(-1px);
}

.btn-primary {
	background: var(--color-dark);
	color: #fff;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-white {
	background: #fff;
	color: var(--color-dark);
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
}

.btn-white:hover {
	background: #e8e8e8;
	opacity: 1;
}

.btn-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	color: var(--color-text);
	font-weight: 500;
	transition: gap var(--transition);
}

.btn-link:hover {
	gap: 12px;
}

/* Swiper nav buttons */
.swiper-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid var(--color-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-dark);
	transition: background var(--transition), color var(--transition);
	flex-shrink: 0;
}

.swiper-btn:hover {
	background: var(--color-dark);
	color: #fff;
}

.swiper-btn.swiper-button-disabled {
	opacity: 0.3;
	pointer-events: none;
}

/* Fade-in animation */
.fade-in {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================================
HEADER
============================================================ */
#site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid transparent;
	transition: border-color var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
	border-bottom-color: #e8e8e8;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.header-inner {
	height: 72px;
	display: flex;
	align-items: center;
	gap: 0;
}

.header-logo img {
	height: 31px;
	width: auto;
}

/* Desktop nav */
.nav-desktop {
	display: flex;
	flex: 1;
	justify-content: center;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 0;
	flex-wrap: nowrap;
}

.nav-item {
	position: relative;
}

.nav-link {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 8px 16px;
	font-size: 15px;
	font-weight: 400;
	color: var(--color-text);
	white-space: nowrap;
	letter-spacing: 0.04em;
	transition: color var(--transition);
}

.nav-link:hover {
	color: var(--color-muted);
}

.nav-arrow {
	font-size: 18px;
	transition: transform var(--transition);
}

.nav-item.open>.nav-link .nav-arrow,
.nav-item:hover>.nav-link .nav-arrow {
	transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	min-width: 280px;
	background: #fff;
	border: 1px solid #e8e8e8;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
	z-index: 100;
}

.nav-item:hover .dropdown,
.nav-item.open .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown li a {
	display: block;
	padding: 10px 20px;
	font-size: 14px;
	color: var(--color-text);
	transition: background var(--transition), color var(--transition);
	text-transform: uppercase;
}

.dropdown li a:hover {
	background: var(--color-light-bg);
	color: var(--color-accent);
}

/* Language switcher */
.nav-lang {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: 16px;
	padding-left: 16px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	flex-shrink: 0;
}

.nav-lang a {
	color: var(--color-muted);
	transition: color var(--transition);
}

.nav-lang a:hover {
	color: var(--color-text);
}

.nav-lang a.active {
	color: var(--color-text);
}

.nav-lang span {
	color: #d0d0d0;
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	padding: 4px;
}

.hamburger span {
	display: block;
	height: 2px;
	background: var(--color-dark);
	transition: transform var(--transition), opacity var(--transition);
	transform-origin: center;
}

.hamburger.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
	display: none;
	position: fixed;
	top: 72px;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	overflow-y: auto;
	z-index: 999;
	transform: translateX(100%);
	transition: transform 0.35s ease;
}

.nav-mobile.open {
	display: block;
	transform: translateX(0);
}

.nav-mobile-list {
	padding: 20px 0;
}

.nav-mobile-item {
	border-bottom: 1px solid #f0f0f0;
}

.nav-mobile-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 40px;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.03em;
}

.dropdown-mob {
	display: none;
	background: var(--color-light-bg);
}

.dropdown-mob.open {
	display: block;
}

.dropdown-mob li a {
	display: block;
	padding: 12px 60px;
	font-size: 14px;
}

body.no-scroll {
	overflow: hidden;
}

/* Push content below fixed header */
main {
	padding-top: 20px;
}

/* ============================================================
HERO
============================================================ */
#hero {
	padding: 40px 0 0;
	overflow: hidden;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	min-height: 560px;
}

.hero-eyebrow {
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-muted);
	margin-bottom: 20px;
}

.hero-title {
	margin-bottom: 24px;
}

.hero-desc {
	font-size: 23px;
	color: #444;
	margin-bottom: 40px;
	line-height: 1.65;
}

.hero-video {
	position: relative;
	align-self: center;
}

.video-wrapper {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	/* 16:9 */
	border-radius: 8px;
	overflow: hidden;
	background: #000;
	height: 403px;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.hero-brand {
	font-weight: 600;
}

/* ============================================================
SECTION DIVIDER
============================================================ */
.section-divider {
	height: 31px;
	line-height: 0;
	overflow: hidden;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 5px;
}

.section-divider svg {
	display: block;
	width: 100%;
	height: 31px;
}

/* ============================================================
REVOLUTION
============================================================ */
#revolution {
	padding: 70px 0;
}

.revolution-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 488px;
	border-radius: 12px;
	overflow: hidden;
}

.revolution-img {
	overflow: hidden;
}

.revolution-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.revolution-content {
	background: var(--color-dark);
	color: #fff;
	padding: 80px 72px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.revolution-title {
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 28px;
}

.revolution-text {
	font-size: 20px;
	color: #8d8d8d;
	line-height: 1.4;
	margin-bottom: 40px;
	font-weight: 400;
}

.revolution-text strong {
	color: #d8d8d8;
}

/* ============================================================
ADVANTAGES
============================================================ */
#advantages {
	padding: 70px 0 100px;
	background: var(--color-bg);
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(4, 278px);
	gap: 20px;
	justify-content: center;
}

.advantage-card {
	text-align: left;
	border: 1px solid #8d8d8d;
	border-radius: 12px;
	padding: 40px 24px;
	display: flex;
	flex-direction: column;
	min-height: 286px;
	position: relative;
	overflow: hidden;
}

.advantage-icon {
	width: 80px;
	height: 80px;
	margin: 0 0 auto;
	padding-bottom: 10px;
}

.advantage-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.advantage-title {
	font-size: 26px;
	font-weight: 500;
	transition: transform 0.3s ease;
	min-height: 67px;
}

/* Desc: absolutely positioned at card bottom, initially hidden below */
.advantage-desc {
	position: absolute;
	bottom: 24px;
	left: 24px;
	right: 24px;
	font-size: 20px;
	color: var(--color-muted);
	opacity: 0;
	transform: translateY(120%);
	transition: transform 0.3s ease, opacity 0.3s ease;
	line-height: 1.4;
	min-height:84px;
}

.advantage-card:hover .advantage-title {
	transform: translateY(-55px);
}

.advantage-card:hover .advantage-desc {
	transform: translateY(0);
	opacity: 1;
}

/* ============================================================
ABOUT
============================================================ */
#about {
	padding: 70px 0;
}

.about-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 488px;
	border-radius: 12px;
	overflow: hidden;
}

.about-content {
	background: var(--color-dark);
	color: #fff;
	padding: 80px 72px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.about-content .section-title {
	color: #fff;
	margin-bottom: 24px;
}

.about-content p {
	font-size: 20px;
	color: var(--color-muted);
	margin-bottom: 36px;
	line-height: 1.4;
}

.about-content p strong {
	color: var(--color-accent);
}

.about-image {
	overflow: hidden;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ============================================================
PROCESS / ACCORDION
============================================================ */
#process {
	padding: var(--section-py) 0;
	background: var(--color-bg);
}

.process-inner {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 80px;
	align-items: center;
}

.process-model {
	display: flex;
	align-items: center;
	justify-content: center;
}

.process-model img {
	max-width: 340px;
	width: 100%;
}

.accordion {
	max-width: 100%;
}

.accordion-item {
	border: 1px solid var(--color-muted);
	border-radius: 12px;
	margin-bottom: 12px;
	overflow: hidden;
}

.accordion-header {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 20px 24px;
	cursor: pointer;
	user-select: none;
}

.accordion-header:hover .accordion-title,
.accordion-header:hover .accordion-num {
	color: var(--color-muted);
}

.accordion-num {
	font-size: 24px;
	font-weight: 400;
	color: var(--color-text);
	transition: color var(--transition);
}

.accordion-title {
	flex: 1;
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 400;
	transition: color var(--transition);
}

.accordion-icon {
	color: var(--color-dark);
	flex-shrink: 0;
	position: relative;
	width: 16px;
	height: 16px;
}

.accordion-icon svg {
	position: absolute;
	top: 0;
	left: 0;
}

.accordion-item.active .accordion-icon .icon-v {
	display: none;
}

.accordion-body {
	padding: 0 24px 24px 24px;
	display: none;
}

.accordion-body p {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.4;
	margin-bottom: 12px;
}

.accordion-body p:last-child {
	margin-bottom: 0;
}

/* ============================================================
NEWS
============================================================ */
#news {
	padding: var(--section-py) 0;
	background: var(--color-bg);
	overflow: hidden;
}

#news .section-title {
	text-align: center;
	margin-bottom: 48px;
}

/* News swiper wrap вЂ” arrows on sides */
.news-swiper-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
}

.swiper-nav-wrap {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.news-swiper {
	flex: 1;
	overflow: hidden;
	min-width: 0;
}

/* News arrows вЂ” no border */
.news-swiper-wrap .swiper-btn {
	border: none;
	background: transparent;
	color: var(--color-dark);
	width: 36px;
	height: 36px;
}

.news-swiper-wrap .swiper-btn:hover {
	background: transparent;
	color: var(--color-muted);
}

/* News card вЂ” horizontal dark layout */
.news-card {
	background: var(--color-dark);
	display: flex;
	flex-direction: row;
	border-radius: 12px;
	overflow: hidden;
	height: 340px;
	color: #fff;
}

.news-card-img {
	width: 48%;
	flex-shrink: 0;
	overflow: hidden;
}

.news-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.news-card:hover .news-card-img img {
	transform: scale(1.04);
}

.news-card-body {
	flex: 1;
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

.news-card-title {
	font-size: 26px;
	font-weight: 400;
	line-height: 1.3;
	color: #fff;
}

/* Pagination dots */
.news-pagination {
	text-align: center;
	margin-top: 28px;
}

.news-pagination.swiper-pagination-bullets {
	position: static !important;
	bottom: auto !important;
}

.news-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #c0c0c0;
	opacity: 1;
	cursor: pointer;
	margin: 0 8px !important;
}

.news-pagination .swiper-pagination-bullet-active {
	background: var(--color-dark);
}

/* News card button вЂ” pill with border */
.news-card-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 24px;
	font-size: 16px;
	color: var(--color-text);
	font-family: var(--font);
	cursor: pointer;
	transition: background var(--transition), border-color var(--transition);
	background: #fff;
	text-decoration: none;
	align-self: flex-start;
}

.news-card-btn:hover {
	background: rgb(255 255 255 / 80%);
	border-color: rgb(255 255 255 / 80%);
	color: var(--color-muted);
}

/* ============================================================
TEAM
============================================================ */
#team {
	padding: var(--section-py) 0;
	background: var(--color-bg);
	overflow: hidden;
}

.team-title {
	text-align: center;
	margin-bottom: 12px;
}

.team-desc {
	text-align: center;
	margin: 0 auto 48px;
	max-width: 100%;
}

.team-desc strong {
	color: var(--color-text);
}

/* Outer layout: swiper-wrap takes flex:1, join block fixed */
.team-layout {
	display: flex;
	align-items: stretch;
	gap: 20px;
}

/* Team swiper wrap вЂ” arrows absolutely positioned at photo center */
.team-swiper-wrap {
	flex: 1;
	min-width: 0;
	position: relative;
	padding: 0 40px;
}

.team-swiper {
	overflow: hidden;
	min-width: 0;
}

/* Team arrow buttons вЂ” circle, positioned at ~40% = photo vertical center */
.team-swiper-wrap .swiper-btn {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1.5px solid var(--color-dark);
	background: #fff;
	color: var(--color-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	z-index: 10;
}

.team-swiper-wrap .swiper-btn:hover {
	background: var(--color-dark);
	color: #fff;
}

.team-swiper-wrap .swiper-btn.swiper-button-disabled {
	opacity: 0.25;
	pointer-events: none;
}

.team-prev {
	left: 0;
}

.team-next {
	right: 0;
}

/* Team cards */
.team-card {
	background: var(--color-bg);
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 20px;
}

.team-card-img {
	height: 340px;
	border-radius: 12px;
	overflow: hidden;
}

.team-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
	transition: transform 0.5s ease, filter 0.5s ease;
}

.team-card:hover .team-card-img img {
	filter: grayscale(0);
}

.team-card:hover .team-card-img img {
	transform: scale(1.03);
}

.team-card-body {
	padding-top: 16px;
}

.team-card-name {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 8px;
	color: var(--color-text);
}

.team-card-links {
	display: flex;
	flex-direction: row;
	gap: 16px;
}

.team-link {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.08em;
	color: var(--color-dark);
	transition: color var(--transition);
}

.team-link:hover {
	color: var(--color-dark);
}

/* Static join block вЂ” separate from slider */
.team-join-block {
	width: 260px;
	flex-shrink: 0;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
	text-align: center;
}

.team-join-text {
	font-size: 20px;
	font-weight: 400;
	color: var(--color-text);
	line-height: 1.4;
}

.btn-dark {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 30px;
	background: var(--color-dark);
	color: #fff;
	font-size: 14px;
	font-family: var(--font);
	transition: opacity var(--transition);
	white-space: nowrap;
}

.btn-dark:hover {
	opacity: 0.8;
}

/* ============================================================
MOBILE SYSTEMS
============================================================ */
#mobile-systems {
	padding: var(--section-py) 0;
	background: var(--color-bg);
	text-align: center;
	overflow: hidden;
}

.mobile-systems-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.mobile-systems-content {
	margin: 0 auto;
	padding-bottom: 40px;
}

.mobile-systems-content .section-title {
	margin-bottom: 24px;
}

.mobile-systems-content p {
	font-size: 18px;
	color: #444;
	line-height: 1.65;
	margin-bottom: 32px;
}

.mobile-systems-img {
	width: 100%;
	max-width: 940px;
}

.mobile-systems-img img {
	width: 100%;
	object-fit: contain;
}

/* ============================================================
CTA BANNER
============================================================ */
#cta-banner {
	padding: var(--section-py) 0;
	background: var(--color-bg);
}

.cta-card {
	background: var(--color-dark);
	color: #fff;
	border-radius: 12px;
	padding: 64px 80px;
	text-align: center;
}

.cta-title {
	font-size: clamp(24px, 3.5vw, 42px);
	font-weight: 400;
	margin-bottom: 24px;
	letter-spacing: 0.02em;
	color: #fff;
}

.cta-desc {
	font-size: 20px;
	color: var(--color-muted);
	margin-bottom: 40px;
	line-height: 1.4;
	margin-left: auto;
	margin-right: auto;
}

.cta-desc strong {
	color: var(--color-accent);
}

/* ============================================================
TIMELINE
============================================================ */
#timeline {
	padding: var(--section-py) 0;
	background: var(--color-bg);
	position: relative;
	overflow: hidden;
}

#timeline .container {
	position: relative;
	z-index: 1;
}

.timeline-title {
	text-align: center;
}

.timeline-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	padding-top: 40px;
	position: relative;
}

/* Р“РѕСЂРёР·РѕРЅС‚Р°Р»СЊРЅР° Р»С–РЅС–СЏ С‡РµСЂРµР· С†РµРЅС‚СЂРё РєСЂР°РїРѕРє */
.timeline-grid::after {
	content: '';
	position: absolute;
	bottom: 5px;
	/* РїРѕР»РѕРІРёРЅР° РІРёСЃРѕС‚Рё РєСЂР°РїРєРё (12px / 2 - 1px border) */
	left: calc(100% / 6);
	right: calc(100% / 6);
	height: 1px;
	background: #ccc;
	z-index: 0;
}

.timeline-col {
	text-align: center;
	display: flex;
	flex-direction: column;
}

.timeline-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ccc;
	margin: 24px auto 0;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

.timeline-col:first-child .timeline-dot {
	background: var(--color-dark);
}

.timeline-year {
	font-size: clamp(26px, 2.8vw, 36px);
	font-weight: 400;
	color: rgb(10, 10, 10);
	margin-bottom: 16px;
	letter-spacing: 0.01em;
}

.timeline-desc {
	font-size: 20px;
	color: rgb(141, 141, 141);
	margin: 0;
	flex: 1;
	line-height: 1.5;
}

/* ============================================================
CONTACT
============================================================ */
#contact {
	padding: var(--section-py) 0;
	background: var(--color-dark);
	color: #fff;
}

.contact-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 60px;
	align-items: start;
}

.contact-title {
	font-size: clamp(28px, 3.5vw, 52px);
	font-weight: 400;
	margin-bottom: 20px;
	color: #fff;
}

.contact-email {
	display: block;
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 400;
	color: var(--color-muted);
	margin-bottom: 28px;
	transition: color var(--transition);
	line-height: 1.1;
}

.contact-email:hover {
	color: #fff;
}

.contact-desc {
	font-size: 23px;
	color: var(--color-muted);
	margin-bottom: 32px;
	line-height: 1.65;
}

.contact-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
}

.contact-nav a {
	font-size: 15px;
	font-weight: 400;
	letter-spacing: normal;
	color: #fff;
	transition: color var(--transition);
}

.contact-nav a:hover {
	color: #fff;
}

.contact-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
}

.contact-logo {
	width: 170px;
	opacity: 0.85;

}

.contact-socials {
	display: flex;
	gap: 36px;
}

.contact-socials a {
	color: #fff;
	transition: color var(--transition), transform var(--transition);
}

.contact-socials a:hover {
	color: var(--color-muted);
	transform: translateY(-2px);
}

/* ============================================================
FOOTER
============================================================ */
#site-footer {
	background: var(--color-dark);
	color: rgba(255, 255, 255, 0.6);
}

.footer-address {
	padding: 28px 0px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-address p {
	max-width: 225px;
}

.footer-bottom {
	padding: 20px 0px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-copy {
	font-size: 15px;
	color: #fff;
}

.footer-links {
	display: flex;
	gap: 24px;
}

.footer-links a {
	font-size: 16px;
	letter-spacing: 0.05em;
	color: #fff;
	transition: color var(--transition);
}

.footer-links a:hover {
	color: var(--color-muted);
}

/* ============================================================
RESPONSIVE вЂ” Tablet (в‰¤ 1024px)
============================================================ */
@media (max-width: 1024px) {
	:root {
		--section-py: 60px;
	}

	.footer-address {
		padding: 24px;
	}

	.footer-bottom {
		padding: 18px 24px;
	}

	/* Hide desktop nav, show hamburger */
	.nav-desktop {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	/* Hero */
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 0;
		min-height: auto;
	}

	.hero-content {

		text-align: center;
	}

	.hero-desc {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-video {
		display: none;
	}

	/* Advantages */
	.advantages-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	/* Revolution */
	.revolution-inner {
		grid-template-columns: 1fr;
	}

	.revolution-img {
		min-height: 300px;
		max-height: 380px;
	}

	.revolution-content {
		padding: 60px 40px;
	}

	/* About */
	.about-inner {
		grid-template-columns: 1fr;
	}

	.about-image {
		min-height: 320px;
		max-height: 420px;
		order: -1;
	}

	.about-content {
		padding: 60px 40px;
	}

	/* Process */
	.process-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.process-model img {
		max-width: 220px;
	}

	/* Timeline */
	.timeline-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	/* Contact */
	.contact-inner {
		grid-template-columns: 1fr;
	}

	.contact-logo-wrap {
		display: none;
	}

	/* Team вЂ” hide join block, collapse layout */
	.team-layout {
		flex-direction: column;
	}

	.team-join-block {
		width: 100%;
	}
}

/* ============================================================
RESPONSIVE вЂ” Mobile (в‰¤ 640px)
============================================================ */
@media (max-width: 640px) {
	:root {
		--section-py: 48px;
	}


	/* Header */
	.header-inner {
		padding: 0 16px;
	}

	/* Hero */
	#hero {
		padding: 40px 0 0;
	}


	/* Advantages */
	.advantages-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	/* Section header row (news) */
	.section-header-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	/* Team */
	.cta-card {
		padding: 48px 24px;
	}

	/* Revolution */
	.revolution-content {
		padding: 48px 24px;
	}

	.revolution-title {
		font-size: clamp(24px, 8vw, 36px);
	}

	/* About */
	.about-content {
		padding: 48px 24px;
	}

	/* Timeline */
	.timeline-grid {
		grid-template-columns: 1fr;
	}

	/* Footer */
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.footer-links {
		flex-direction: column;
		gap: 8px;
	}

	/* Contact nav */
	.contact-nav {
		gap: 10px 20px;
	}
}

/* ===================================================================
TECHNOLOGY PAGE
=================================================================== */

/* ---- Hero ---- */
#tech-hero {
	padding: var(--section-py) 0 0;
	overflow: hidden;
}

.tech-hero-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 16px;
	color: var(--color-muted);
	margin-bottom: 24px;
}

.breadcrumb a {
	color: var(--color-dark);
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.breadcrumb-sep {
	color: var(--color-muted);
}

.tech-hero-title {
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: var(--color-dark);
}

.tech-hero-subtitle {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.4;
	margin-bottom: 48px;
}

.tech-hero-subtitle strong {
	color: var(--color-dark);
}

.tech-hero-image-wrap {
	display: inline-block;
	max-width: 580px;
	width: 100%;
}

.tech-hero-img {
	width: 100%;
	height: auto;
	display: block;
}

/* Tech page section titles вЂ” 52px centered (matches original) */
#tech-spheres .section-title,
#tech-process .section-title,
#tech-benefits .section-title,
#tech-future .section-title {
	text-align: center;
	font-size: clamp(32px, 4vw, 52px);
}

/* ---- РЎС„РµСЂРё РІРёРєРѕСЂРёСЃС‚Р°РЅРЅСЏ ---- */
#tech-spheres {
	padding: var(--section-py) 0;
}

.spheres-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.sphere-card {
	border: 1px solid var(--color-dark);
	border-radius: 12px;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	transition: border-color 0.25s;
}

.sphere-card:hover {
	border-color: #b0b0b0;
}

.sphere-card-img {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
}

.sphere-card-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sphere-card-title {
	font-size: 26px;
	font-weight: 400;
	color: var(--color-dark);
	line-height: 1.35;
}

/* ---- Р”Р°РЅС– РґРѕРєР»С–РЅС–С‡РЅРёС… РґРѕСЃР»С–РґР¶РµРЅСЊ ---- */
#tech-research {
	padding: var(--section-py) 0;
}

.tech-research-wrap {
	display: flex;
	justify-content: center;
}

#tech-research .cta-card {
	width: 100%;
}

#tech-research .cta-title {
	clamp(32px, 3.5vw, 52px);
}

/* ---- РўРµС…РЅРѕР»РѕРіС–СЏ РјР°Р№Р±СѓС‚РЅСЊРѕРіРѕ ---- */
#tech-process {
	padding: var(--section-py) 0;
}

.tech-process-inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 64px;
	align-items: start;
	margin-top: 48px;
}

.tech-process-left {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.tech-presentation-btn {
	align-self: flex-start;
}

.tech-process-right {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.tech-bone-img {
	width: 100%;
	max-width: 360px;
	height: auto;
	display: block;
}

/* ---- РџРµСЂРµРІР°РіРё ---- */
#tech-benefits {
	padding: var(--section-py) 0;
}

.tech-benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.tech-benefit-card {
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	min-height: 260px;
	position: relative;
	overflow: hidden;
	transition: border-color 0.3s ease;
}

.tech-benefit-icon {
	width: 80px;
	height: 80px;
	flex-shrink: 0;
	margin-bottom: auto;
	padding-bottom: 24px;
}

.tech-benefit-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tech-benefit-title {
	font-size: 26px;
	font-weight: 400;
	color: var(--color-dark);
	transition: transform 0.3s ease;
}

.tech-benefit-desc {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.5;
	position: absolute;
	bottom: 24px;
	left: 24px;
	right: 24px;
	opacity: 0;
	transform: translateY(130%);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.tech-benefit-card:hover .tech-benefit-title {
	transform: translateY(-72px);
}

.tech-benefit-card:hover .tech-benefit-desc {
	transform: translateY(0);
	opacity: 1;
}

/* ---- РћРїРёСЃ РјР°С‚РµСЂС–Р°Р»С–РІ ---- */
#tech-materials {
	padding: var(--section-py) 0;
}

.tech-materials-inner {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 64px;
	align-items: center;
}

.tech-materials-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

.tech-materials-label {
	font-size: 26px;
	color: var(--color-dark);
	font-weight: 600;
}

.tech-materials-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tech-materials-list li {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.4;
	padding-left: 20px;
	position: relative;
}

.tech-materials-list li::before {
	content: '\25CF';
	position: absolute;
	left: 0;
	color: var(--color-dark);
	font-size: 20px;
	top: 0px;
}

.tech-materials-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

/* ---- РњР°Р№Р±СѓС‚РЅС– РјРѕР¶Р»РёРІРѕСЃС‚С– ---- */
#tech-future {
	padding: var(--section-py) 0 calc(var(--section-py) + 20px);
}

.tech-future-header {
	text-align: center;
	margin-bottom: 64px;
}

.tech-future-subtitle {
	font-size: 20px;
	color: var(--color-muted);
	margin: 16px auto 0;
	line-height: 1.65;
}

.tech-future-subtitle strong {
	color: var(--color-dark);
}

.future-timeline {
	display: flex;
	gap: 0;
	margin-top: 48px;
	max-width: 900px;
	align-items: flex-end;
	margin: 0 auto;
}

.future-item {
	flex: 1;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	gap: 0;
	position: relative;
}

.future-item-top {
	display: none;
}

.future-dot-icon {
	display: none;
}

.future-item-line {
	width: 100%;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.future-item-line::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: #ccc;
	transform: translateY(-50%);
}

.future-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ccc;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

.future-dot--active {
	background: #0a0a0a;
}

.future-item:not(.future-item--active) .future-dot {
	display: none;
}

.future-item-label {
	font-size: 26px;
	font-weight: 400;
	color: var(--color-dark);
	text-align: center;
	padding-bottom: 12px;
	white-space: nowrap;
}

.future-item--active .future-item-label {
	color: var(--color-dark);
}

.future-arrow {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	margin-left: -4px;
	padding-bottom: 2px;
}

/* ===== TECHNOLOGY PAGE вЂ” ADAPTIVE ===== */

@media (max-width: 1024px) {
	.spheres-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tech-process-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.tech-bone-img {
		max-width: 280px;
		margin: 0 auto;
	}

	.tech-materials-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.tech-benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.future-item-label {
		font-size: 13px;
	}
}

@media (max-width: 640px) {
	.spheres-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.sphere-card {
		padding: 16px;
		gap: 10px;
	}

	.sphere-card-img {
		width: 48px;
		height: 48px;
	}

	.tech-benefits-grid {
		grid-template-columns: 1fr;
	}

	.future-timeline {
		gap: 0;
		overflow-x: auto;
		padding-bottom: 8px;
	}

	.future-item {
		min-width: 80px;
	}

	.future-item-label {
		font-size: 11px;
	}

	.tech-hero-subtitle {
		font-size: 14px;
	}

	.tech-hero-title {
		font-size: clamp(28px, 8vw, 44px);
	}
}

/* ============================================================
CAREERS PAGE
============================================================ */

/* --- Hero --- */
#careers-hero {
	padding: var(--section-py) 0 0;
}

.careers-hero-inner {
	text-align: center;
	padding-bottom: 40px;
}

.careers-hero-title {
	font-size: clamp(40px, 4.5vw, 64px);
	font-weight: 400;
	letter-spacing: 0.02em;
	margin: 20px 0 28px;
	text-transform: uppercase;
}

.careers-hero-desc {
	font-size: 23px;
	color: var(--color-muted);
	margin: 0 auto;
	line-height: 1.6;
}

.careers-hero-desc strong {
	color: var(--color-dark);
	font-weight: 600;
}

/* --- Team section РЅР° СЃС‚РѕСЂС–РЅС†С– careers --- */
#careers-team {
	padding: 32px 0 var(--section-py);
}

/* Р‘Р»РѕРє "Р”Р»СЏ Р·РІ'СЏР·РєСѓ" (Р·Р°РјС–СЃС‚СЊ team-join-block) */
.careers-contact-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 20px;
	padding: 36px 25px;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	align-self: stretch;
	width: 340px;
	flex-shrink: 0;
}

.careers-contact-title {
	font-size: 36px;
	font-weight: 400;
	color: var(--color-dark);
	margin: 0;
}

.careers-contact-box .careers-email-btn {
	align-self: center;
}

.careers-contact-box>p {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.55;
	margin: 0;
}

/* --- Email pill button --- */
.careers-email-btn {
	display: inline-block;
	padding: 11px 26px;
	border-radius: 30px;
	background: var(--color-dark);
	color: #fff;
	font-size: 15px;
	font-family: var(--font);
	align-self: flex-start;
	transition: opacity var(--transition);
	white-space: nowrap;
}

.careers-email-btn:hover {
	opacity: 0.8;
}

/* --- Р›Р†РљРђР РЇРњ --- */
#careers-doctors {
	padding: var(--section-py) 0;
}

.careers-doctors-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.careers-doctors-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

.careers-doctors-title {
	font-size: clamp(32px, 3.5vw, 52px);
	font-weight: 400;
	margin: 0 0 8px;
}

.careers-doctors-content p {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.4;
	margin: 0;
}

.careers-doctors-content p strong {
	color: var(--color-dark);
	font-weight: 600;
}

.careers-lungs-wrap img {
	width: 100%;
	height: auto;
	display: block;
}

/* --- Р¤РѕСЂРјР° --- */
#careers-form-section {
	padding: var(--section-py) 0;
}

.careers-form-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.careers-form-text {
	font-size: 26px;
	color: var(--color-muted);
	line-height: 1.3;
}

.careers-form-text strong {
	color: var(--color-dark);
	font-weight: 600;
}

.careers-form-card {
	border: 1px solid var(--color-dark);
	border-radius: 16px;
	padding: 32px;
}

.careers-textarea {
	width: 100%;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 16px;
	font-family: var(--font);
	font-size: 15px;
	color: var(--color-text);
	background: #f5f5f5;
	resize: none;
	outline: none;
	box-sizing: border-box;
	margin-bottom: 16px;
	display: block;
	transition: border-color 0.2s;
}

.careers-textarea:focus {
	border-color: #aaa;
	background: #fff;
}

.careers-textarea::placeholder {
	color: var(--color-muted);
}

.careers-submit-btn {
	width: 100%;
	background: var(--color-dark);
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 16px;
	font-size: 16px;
	font-family: var(--font);
	cursor: pointer;
	transition: opacity var(--transition);
}

.careers-submit-btn:hover {
	opacity: 0.8;
}

/* --- Adaptive --- */
@media (max-width: 1024px) {

	.careers-doctors-inner,
	.careers-form-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.careers-lungs-wrap {
		max-width: 480px;
		margin: 0 auto;
	}
}

@media (max-width: 1024px) {
	.careers-contact-box {
		width: 100%;
	}
}

@media (max-width: 640px) {
	.careers-contact-box {
		padding: 20px;
	}

	.careers-doctors-title {
		font-size: clamp(28px, 7vw, 40px);
	}

	.careers-form-text {
		font-size: 17px;
	}
}

/* ============================================================
FAQ PAGE
============================================================ */

#faq-hero {
	padding: var(--section-py) 0 0;
}

.faq-hero-inner {
	text-align: center;
	padding-bottom: 48px;
}

.faq-hero-title {
	font-size: clamp(40px, 4.5vw, 64px);
	font-weight: 400;
	letter-spacing: 0.02em;
	margin: 20px 0 0;
	text-transform: uppercase;
}

#faq-section {
	padding: 0 0 var(--section-py);
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 20px;
	align-items: start;
}

.faq-col {
	display: flex;
	flex-direction: column;
}

/* FAQ-specific accordion overrides */
.faq-col .accordion-item {
	margin-bottom: 12px;
}

.faq-col .accordion-header {
	font-size: 23px;
	padding: 22px 24px;
	gap: 16px;
	width: 100%;
	background: none;
	border: none;
	text-align: left;
}

.faq-col .accordion-header>span:first-child {
	flex: 1;
}

.faq-col .accordion-body {
	padding: 0 24px 20px 24px;
	font-size: 16px;
}

.faq-col .accordion-body p,
.faq-col .accordion-body li {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.4;
	margin-bottom: 6px;
}

.faq-col .accordion-body ul,
.faq-col .accordion-body ol {
	padding-left: 20px;
	margin: 0;
}

@media (max-width: 768px) {
	.faq-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
KOMANDA PAGE
============================================================ */

#komanda-hero {
	padding: var(--section-py) 0 0;
}

.komanda-hero-inner {
	text-align: center;
	padding-bottom: 40px;
}

.komanda-hero-title {
	font-size: clamp(40px, 4.5vw, 64px);
	font-weight: 400;
	letter-spacing: 0.02em;
	margin: 20px 0 28px;
	text-transform: uppercase;
}

.komanda-hero-desc {
	font-size: 23px;
	color: var(--color-muted);
	margin: 0 auto;
	line-height: 1.6;
}

.komanda-hero-desc strong {
	color: var(--color-dark);
	font-weight: 600;
}

/* --- Grid --- */
#komanda-grid-section {
	padding: 0 0 var(--section-py);
}

.komanda-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

/* --- Card --- */
.komanda-card {
	background: var(--color-bg);
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.komanda-card-img {
	height: 360px;
	overflow: hidden;
}

.komanda-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	filter: grayscale(1);
	transition: transform 0.5s ease, filter 0.5s ease;
}

.komanda-card:hover .komanda-card-img img {
	transform: scale(1.03);
	filter: grayscale(0);
}

.komanda-card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: center;
	flex: 1;
}

.komanda-card-role {
	font-size: 12px;
	color: var(--color-muted);
	margin: 0;
	line-height: 1.4;
}

.komanda-card-name {
	font-size: 23px;
	font-weight: 400;
	color: var(--color-dark);
	margin: 0;
}

.komanda-card-bio {
	font-size: 15px;
	color: var(--color-muted);
	line-height: 1.55;
	margin: 0;
	flex: 1;
}

.komanda-card-links {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 8px;
}

/* --- Adaptive --- */
@media (max-width: 1024px) {
	.komanda-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.komanda-grid {
		grid-template-columns: 1fr;
	}

	.komanda-card-img {
		height: 300px;
	}
}

/* ===================================================================
VIDGUKI PAGE
=================================================================== */

/* --- Hero --- */
#vidguki-hero {
	padding: var(--section-py) 0 0;
}

.vidguki-hero-inner {
	text-align: center;
	padding-bottom: 48px;
}

.vidguki-hero-title {
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 24px 0 28px;
}

.vidguki-hero-desc {
	font-size: 20px;
	color: var(--color-muted);
	max-width: 770px;
	margin: 0 auto;
	line-height: 1.7;
}

.vidguki-hero-desc strong {
	color: var(--color-dark);
	font-weight: 600;
}

/* --- Generic slider section wrapper --- */
.reviews-section {
	padding: var(--section-py) 0;
}

.reviews-section-title {
	font-size: clamp(26px, 4vw, 52px);
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}

/* --- Slider outer (arrow + swiper + arrow) --- */
.reviews-slider-outer {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0;
}

.reviews-slider-outer .swiper {
	flex: 1;
	min-width: 0;
}

/* Arrows */
.reviews-arrow {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-dark);
	font-size: 20px;
	transition: opacity var(--transition);
	padding: 0;
}

.reviews-arrow:hover {
	opacity: 0.5;
}

.reviews-arrow.swiper-button-disabled {
	opacity: 0.25;
	cursor: default;
}

/* Pagination */
.reviews-pagination {
	text-align: center;
	margin-top: 28px;
}

.reviews-pagination .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	background: var(--color-dark);
	opacity: 0.25;
	border-radius: 50%;
	display: inline-block;
	margin: 0 7px;
	cursor: pointer;
	transition: opacity var(--transition);
}

.reviews-pagination .swiper-pagination-bullet-active {
	opacity: 1;
}

/* --- Partner card --- */
.partner-card {
	border: 1px solid #e0e0e0;
	border-radius: 14px;
	padding: 36px 32px;
	display: flex;
	gap: 28px;
	align-items: flex-start;
	height: 100%;
}

.partner-logo-box {
	flex-shrink: 0;
	width: 88px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}

.partner-logo-dots {
	display: grid;
	grid-template-columns: repeat(4, 7px);
	grid-template-rows: repeat(4, 7px);
	gap: 3px;
}

.partner-logo-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #c04a2a;
}

.partner-logo-dot.empty {
	background: transparent;
}

.partner-logo-label {
	font-size: 13px;
	line-height: 1.2;
	color: var(--color-dark);
	font-weight: 500;
}

.partner-card-content {
	flex: 1;
}

.partner-card-name {
	font-size: 26px;
	font-weight: 400;
	color: var(--color-dark);
	margin-bottom: 12px;
}

.partner-card-text {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.4;
}

/* --- Doctor card --- */
.doctor-card {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--color-dark);
	border-radius: 14px;
	padding: 20px 20px 0;
}

.doctor-video-thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 3/4;
	background: #d0d0d0;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.doctor-play-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b0b0b0;
}

.doctor-name {
	font-size: 18px;
	font-weight: 400;
	color: var(--color-dark);
	padding: 14px 8px 16px;
}

/* --- Adaptive --- */
@media (max-width: 640px) {
	.reviews-arrow {
		width: 28px;
		font-size: 16px;
	}
}

/* ===================================================================
CONTACTS PAGE
=================================================================== */

/* --- Hero --- */
#contacts-hero {
	padding: var(--section-py) 0 0;
}

.contacts-hero-inner {
	text-align: center;
	padding-bottom: 48px;
}

.contacts-hero-title {
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 24px 0 28px;
}

.contacts-hero-desc {
	font-size: 23px;
	color: var(--color-muted);
	margin: 0 auto;
	line-height: 1.7;
}

.contacts-hero-desc strong {
	color: var(--color-dark);
	font-weight: 600;
}

/* --- Main grid --- */
#contacts-main {
	padding: var(--section-py) 0;
}

.contacts-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 24px;
	align-items: start;
}

/* --- Form card --- */
.contacts-form-card {
	border: 1px solid var(--color-dark);
	border-radius: 16px;
	padding: 40px 40px 95px;
}

.contacts-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 30px;
}

.contacts-input {
	width: 100%;
	border: none;
	border-radius: 30px;
	padding: 8px 20px;
	font-family: var(--font);
	font-size: 15px;
	color: var(--color-text);
	background: #f5f5f5;
	outline: none;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.contacts-input:focus {
	border-color: #aaa;
	background: #fff;
}

.contacts-textarea {
	width: 100%;
	border: none;
	border-radius: 30px;
	padding: 16px 20px;
	font-family: var(--font);
	font-size: 15px;
	color: var(--color-text);
	background: #f5f5f5;
	outline: none;
	resize: none;
	min-height: 140px;
	margin-bottom: 20px;
	transition: border-color 0.2s;
	box-sizing: border-box;
	display: block;
}

.contacts-textarea:focus {
	border-color: #aaa;
	background: #fff;
}

.contacts-checkbox-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 30px;
}

.contacts-checkbox-row input[type="checkbox"] {
	margin-top: 3px;
	flex-shrink: 0;
	cursor: pointer;
}

.contacts-checkbox-row label {
	font-size: 15px;
	color: var(--color-dark);
	line-height: 1.5;
	cursor: pointer;
}

.contacts-checkbox-row label a {
	color: var(--color-dark);
	text-decoration: underline;
}

.contacts-submit-btn {
	width: 100%;
	background: var(--color-dark);
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 16px 24px;
	font-size: 16px;
	font-family: var(--font);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: opacity var(--transition);
}

.contacts-submit-btn:hover {
	opacity: 0.75;
}

/* --- Info card --- */
.contacts-info-card {
	border: 1px solid var(--color-dark);
	border-radius: 16px;
	padding: 40px 32px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: center;
}

.contacts-info-title {
	font-size: 36px;
	font-weight: 400;
	color: var(--color-dark);
	margin-bottom: 8px;
}

.contacts-info-email {
	font-size: 20px;
	color: var(--color-dark);
	text-decoration: underline;
}

.contacts-info-email:hover {
	opacity: 0.7;
}

.contacts-info-address {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.6;
	margin-top: 4px;
}

.contacts-info-map-link {
	font-size: 13px;
	color: var(--color-dark);
	text-decoration: underline;
}

.contacts-info-divider {
	border: none;
	border-top: 1px solid #e0e0e0;
	margin: 16px 0;
}

.contacts-chat-title {
	font-size: 36px;
	font-weight: 400;
	color: var(--color-dark);
	margin-bottom: 8px;
}

.contacts-chat-desc {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.6;
	margin-bottom: 16px;
}

.contacts-chat-desc strong {
	color: var(--color-dark);
	font-weight: 600;
}

.contacts-chat-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--color-dark);
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 13px 28px;
	font-size: 15px;
	font-family: var(--font);
	cursor: pointer;
	transition: opacity var(--transition);
	align-self: center;
}

.contacts-chat-btn:hover {
	opacity: 0.75;
}

/* --- Map --- */
#contacts-map {
	line-height: 0;
}

.contacts-map-wrap {
	position: relative;
	line-height: 0;
}

.contacts-map-wrap iframe {
	width: 100%;
	height: 480px;
	display: block;
	border: none;
	filter: grayscale(0.35) brightness(0.85);
}

.contacts-map-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.25);
	pointer-events: none;
}

/* --- Adaptive --- */
@media (max-width: 1024px) {
	.contacts-grid {
		grid-template-columns: 1fr;
	}

	.contacts-info-card {
		text-align: left;
	}

	.contacts-chat-btn {
		align-self: flex-start;
	}
}

@media (max-width: 640px) {
	.contacts-row {
		grid-template-columns: 1fr;
	}

	.contacts-form-card,
	.contacts-info-card {
		padding: 24px;
	}
}

/* ===================================================================
PRODUCT PAGE
=================================================================== */

/* === PRODUCT HERO === */
#product-hero {
	padding: var(--section-py) 0 0;
}

.product-hero-inner {
	display: grid;
	grid-template-columns: 61fr 43fr;
	gap: 5px;
	align-items: center;
	padding-bottom: 56px;
}

.product-hero-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.product-hero-title {
	font-size: clamp(32px, 4.5vw, 52px);
	font-weight: 400;
	text-transform: uppercase;
	line-height: 1.1;
}

.product-hero-text {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.4;
}

.product-hero-text strong {
	color: var(--color-dark);
	font-weight: 500;
}

.product-hero-img-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-hero-img-wrap img {
	width: 100%;
	height: auto;
	max-width: 520px;
}

/* === STAGES (dark) === */
#product-stages {
	background: transparent;
	padding: var(--section-py) 0;
}

.stages-card {
	background: var(--color-dark);
	border-radius: 20px;
	padding: 56px 48px;
}

.stages-title {
	font-size: clamp(32px, 3.5vw, 52px);
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	margin-bottom: 48px;
}

.stages-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.stage-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.stage-num {
	font-size: clamp(26px, 3vw, 36px);
	color: #fff;
	font-weight: 500;
}

.stage-text {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.4;
}

.stage-text strong {
	color: #fff;
	font-weight: 500;
}

/* === INDICATIONS / CONTRAINDICATIONS === */
#product-indications,
#product-contraindications {
	padding: var(--section-py) 0;
}

.indications-inner,
.contraindications-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.indications-content h2,
.contraindications-content h2 {
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 28px;
}

.indications-content ul,
.contraindications-content ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.indications-content li,
.contraindications-content li {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.4;
	position: relative;
	padding-left: 24px;
}

.indications-content li::before {
	content: “\2713”;
	position: absolute;
	left: 0;
	color: var(--color-muted);
}

.contraindications-content li::before {
	content: "\00D7";
	position: absolute;
	left: 0;
	color: var(--color-muted);
	font-size: 32px;
	top: -10px;
}

.indications-content li strong,
.contraindications-content li strong {
	color: var(--color-dark);
	font-weight: 500;
	display: block;
	margin-bottom: 2px;
	font-size: 24px;
}

.indications-img,
.contraindications-img {
	max-height: 420px;
	overflow: hidden;
	border-radius: 12px;
}

.indications-img img,
.contraindications-img img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: 12px;
	display: block;
}

/* === VIDEO === */
#product-video {
	padding: var(--section-py) 0;
}

.product-video-caption {
	font-size: 20px;
	color: var(--color-muted);
	max-width: 965px;
	margin: 0 auto 32px;
	text-align: center;
	line-height: 1.65;
}

.product-video-caption span {
	color: var(--color-dark);
	font-size: 32px;
}

.product-video-wrap {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	max-width: 960px;
	margin: 0 auto;
}

.product-video-thumb {
	width: 100%;
	display: block;
}

.product-video-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.product-video-wrap:hover .product-video-overlay {
	background: rgba(0, 0, 0, 0.3);
}

.product-video-play {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #e05a2b;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s;
}

.product-video-wrap:hover .product-video-play {
	transform: scale(1.08);
}

.product-video-play svg {
	margin-left: 5px;
}

#product-video-iframe-wrap {
	display: none;
	position: relative;
	padding-bottom: 56.25%;
	border-radius: 16px;
	overflow: hidden;
	max-width: 960px;
	margin: 0 auto;
}

#product-video-iframe-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* === RECOMMENDATIONS === */
#product-recommendations {
	padding: var(--section-py) 0;
}

.rec-section-inner {
	display: grid;
	grid-template-columns: 350px 1fr;
	gap: 20px;
	align-items: center;
}

.rec-section-left {
	min-width: 0;
}

.rec-section-right {
	min-width: 0;
	overflow: hidden;
}

.rec-section-title {
	font-size: clamp(32px, 3.5vw, 52px);
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 20px;
	line-height: 1.15;
	letter-spacing: -3px;
}

.rec-section-desc {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.4;
}

.rec-section-desc strong {
	color: var(--color-dark);
	font-weight: 600;
}

.rec-slider-outer {
	display: flex;
	align-items: center;
	gap: 0;
}

.rec-slider-outer .swiper {
	flex: 1;
	min-width: 0;
}

.rec-arrow {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-dark);
	border: none;
	cursor: pointer;
	color: #fff;
	transition: opacity var(--transition);
}

.rec-arrow:hover {
	opacity: 0.65;
}

.rec-card {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #e8e8e8;
	padding: 12px;
}

.rec-card-img {
	height: 385px;
	overflow: hidden;
	border-radius: 10px;
}

.rec-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

.rec-card:hover .rec-card-img img {
	transform: scale(1.04);
}

.rec-card-body {
	padding: 14px 4px 0;
}

.rec-card-title {
	font-size: 17px;
	font-weight: 400;
	color: var(--color-dark);
	text-align: center;
	line-height: 1.4;
}

.rec-card-btn {
	display: none;
}

/* === DOCUMENTS === */
#product-documents {
	background: #fff;
	padding: var(--section-py) 0;
}

.documents-title {
	color: var(--color-dark);
	font-size: clamp(32px, 3.5vw, 52px);
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}

.doc-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.doc-card {
	background: #242424;
	border-radius: 14px;
	overflow: hidden;
}

.doc-card-img {
	height: 230px;
	overflow: hidden;
}

.doc-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.doc-card-body {
	padding: 20px 24px 24px;
}

.doc-card-label {
	font-size: 13px;
	color: #8d8d8d;
	margin-bottom: 4px;
}

.doc-card-name {
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 18px;
	line-height: 1.3;
}

.doc-card-btn {
	font-size: 14px;
	color: var(--color-accent);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid #3a3a3a;
	border-radius: 20px;
	padding: 7px 14px;
	transition: color var(--transition), border-color var(--transition);
}

.doc-card-btn:hover {
	color: #fff;
	border-color: #666;
}

/* === SOURCES === */
#product-sources {
	padding: var(--section-py) 0;
}

.sources-title {
	font-size: clamp(32px, 3.5vw, 52px);
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}

.sources-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.source-card {
	border: 1px solid var(--color-dark);
	border-radius: 14px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.source-title {
	font-size: 26px;
	color: var(--color-dark);
	line-height: 1.3;
}

.source-pub {
	font-size: 20px;
	color: var(--color-dark);
	line-height: 1.4;
	margin-bottom: 20px;
}

.source-btn {
	font-size: 16px;
	color: var(--color-dark);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	border: 1px solid var(--color-dark);
	border-radius: 20px;
	padding: 8px 16px;
	transition: border-color var(--transition);
	width: fit-content;
}

.source-btn:hover {
	border-color: #aaa;
}

/* === PRODUCT FAQ === */
#product-faq {
	padding: var(--section-py) 0;
}

.product-faq-inner {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 64px;
	align-items: start;
}

.product-faq-img img {
	width: 340px;
	height: auto;
	border-radius: 12px;
}

.product-faq-title {
	font-size: clamp(32px, 3.5vw, 52px);
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 32px;
}

#product-faq .accordion-item {
	border: 1px solid var(--color-dark);
	border-radius: 12px;
	margin-bottom: 12px;
	padding: 0 24px;
}

#product-faq .accordion-header {
	font-size: 23px;
	padding: 22px 0;
	gap: 16px;
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-family: var(--font);
	color: var(--color-dark);
}

#product-faq .accordion-header>span:first-child {
	flex: 1;
}

#product-faq .accordion-body {
	padding: 0 0 22px 0;
	font-size: 16px;
	color: var(--color-muted);
	line-height: 1.7;
}

/* === CONSULTATION === */
#product-consultation {
	padding: var(--section-py) 0;
}

.consultation-inner {
	display: grid;
	grid-template-columns: 0.65fr 0.35fr;
	gap: 20px;
	align-items: center;
}

.consultation-title {
	font-size: clamp(32px, 3.5vw, 52px);
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 16px;
	line-height: 1.15;
}

.consultation-desc {
	font-size: 15px;
	color: var(--color-muted);
	line-height: 1.65;
}

.consultation-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.consultation-input {
	border: 1px solid #e0e0e0;
	border-radius: 30px;
	padding: 14px 20px;
	font-family: var(--font);
	font-size: 15px;
	background: #f5f5f5;
	outline: none;
	transition: border-color 0.2s;
	box-sizing: border-box;
	width: 100%;
}

.consultation-input:focus {
	border-color: #aaa;
	background: #fff;
}

.consultation-btn {
	background: var(--color-dark);
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 16px 24px;
	font-size: 16px;
	font-family: var(--font);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: opacity var(--transition);
}

.consultation-btn:hover {
	opacity: 0.75;
}

/* === PRODUCT ADAPTIVE === */
@media (max-width: 1024px) {
	.product-hero-inner {
		grid-template-columns: 1fr;
	}

	.product-hero-img-wrap {
		max-width: 400px;
		margin: 0 auto;
	}

	.stages-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.indications-inner,
	.contraindications-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contraindications-inner .contraindications-img {
		order: -1;
	}

	.rec-section-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.doc-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sources-grid {
		grid-template-columns: 1fr;
	}

	.product-faq-inner {
		grid-template-columns: 1fr;
	}

	.product-faq-img {
		display: none;
	}

	.consultation-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 640px) {
	.rec-card-img {
		height: 180px;
	}

	.doc-card-img {
		height: 150px;
	}

	.doc-grid {
		grid-template-columns: 1fr;
	}
}



.product-page .breadcrumb {
	justify-content: flex-start;
}




/* ====================================================
IFU PAGE
==================================================== */
#ifu-hero {
	padding: var(--section-py) 0 0;
}

.ifu-hero-inner {
	display: grid;
	grid-template-columns: 55fr 45fr;
	gap: 48px;
	align-items: center;
	padding-bottom: 56px;
}

.ifu-hero-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.ifu-hero-title {
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 400;
	text-transform: uppercase;
	line-height: 1.1;
}

.ifu-hero-text {
	font-size: 17px;
	color: var(--color-muted);
	line-height: 1.7;
}

.ifu-hero-text strong {
	color: var(--color-dark);
	font-weight: 400;
}

.ifu-hero-img img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}

#ifu-docs {
	padding: var(--section-py) 0;
}

.ifu-docs-title {
	font-size: clamp(24px, 2.8vw, 44px);
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}

.ifu-doc-row {
	display: flex;
	align-items: center;
	gap: 32px;
	border: 1px solid #c8c8c8;
	border-radius: 14px;
	padding: 24px 32px;
}

.ifu-doc-info {
	flex: 1;
	min-width: 0;
}

.ifu-doc-name {
	font-size: 18px;
	font-weight: 400;
	color: var(--color-dark);
	margin-bottom: 6px;
}

.ifu-doc-meta {
	font-size: 14px;
	color: var(--color-muted);
}

.ifu-doc-actions {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.ifu-doc-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--color-dark);
	color: #fff;
	border-radius: 30px;
	padding: 12px 22px;
	font-size: 15px;
	font-family: var(--font);
	text-decoration: none;
	white-space: nowrap;
	transition: opacity var(--transition);
}

.ifu-doc-btn:hover {
	opacity: 0.75;
}

#ifu-contact {
	padding: var(--section-py) 0;
}

.ifu-contact-card {
	background: var(--color-dark);
	border-radius: 20px;
	padding: 64px 48px;
	text-align: center;
}

.ifu-contact-title {
	font-size: clamp(24px, 2.5vw, 40px);
	font-weight: 400;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 20px;
}

.ifu-contact-text {
	font-size: 17px;
	color: #8d8d8d;
	line-height: 1.7;
}

.ifu-contact-text a {
	color: #fff;
	text-decoration: none;
}

.ifu-contact-text a:hover {
	text-decoration: underline;
}

@media (max-width: 1024px) {
	.ifu-hero-inner {
		grid-template-columns: 1fr;
	}

	.ifu-hero-img {
		max-width: 400px;
		margin: 0 auto;
	}

	.ifu-doc-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.ifu-contact-card {
		padding: 48px 32px;
	}
}

@media (max-width: 640px) {
	.ifu-doc-actions {
		flex-direction: column;
		width: 100%;
	}

	.ifu-doc-btn {
		justify-content: center;
	}
}

/* ====================================================
PRIVACY PAGE
==================================================== */
#privacy-hero {
	padding: var(--section-py) 0 var(--section-py);
}

.privacy-date {
	font-size: 14px;
	color: var(--color-muted);
	margin-bottom: 32px;
	font-style: italic;
}

.privacy-content {
	max-width: 860px;
}

.privacy-title {
	font-size: clamp(36px, 4.5vw, 64px);
	font-weight: 400;
	text-transform: uppercase;
	line-height: 1.05;
	margin-bottom: 16px;
}

.privacy-content h2 {
	font-size: clamp(18px, 1.8vw, 24px);
	font-weight: 500;
	margin: 44px 0 14px;
	color: var(--color-dark);
}

.privacy-content p {
	font-size: 16px;
	color: var(--color-muted);
	line-height: 1.8;
	margin-bottom: 12px;
}

.privacy-content p.p-upper {
	text-transform: uppercase;
	font-weight: 600;
	color: var(--color-dark);
	font-size: 15px;
	line-height: 1.7;
}

.privacy-content ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.privacy-content ul li {
	font-size: 16px;
	color: var(--color-muted);
	line-height: 1.7;
	padding-left: 18px;
	position: relative;
}

.privacy-content ul li::before {
	content: "\2022";
	position: absolute;
	left: 0;
}

.privacy-content a {
	color: var(--color-dark);
}




.reviews-pagination .swiper-pagination-bullet {
	margin: 0 10px !important
}





/* ====================================================
BLOG PAGE
==================================================== */
#blog-hero {
	padding: var(--section-py) 0 48px;
	text-align: center;
}

.blog-hero-inner {
	margin: 0 auto;
}

.blog-hero-inner .breadcrumb {
	justify-content: center;
}

.blog-title {
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 24px;
	line-height: 1;
}

.blog-desc {
	font-size: 23px;
	color: var(--color-muted);
	line-height: 1.4;
}

.blog-desc strong {
	color: var(--color-dark);
	font-weight: 400;
}

#blog-posts {
	padding: 0 0 var(--section-py);
}

.blog-list {
	display: flex;
	flex-direction: column;
}

.blog-post {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 48px;
	align-items: start;
	padding: 40px 0;
	border-bottom: 1px solid #e8e8e8;
	text-decoration: none;
}

.blog-post:first-child {
	border-top: 1px solid #e8e8e8;
}

.blog-post-img {
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 16/10;
}

.blog-post-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s;
	display: block;
}

.blog-post:hover .blog-post-img img {
	transform: scale(1.04);
}

.blog-post-body {
	padding-top: 4px;
}

.blog-post-meta {
	font-size: 13px;
	color: var(--color-muted);
	margin-bottom: 12px;
	letter-spacing: 0.02em;
}

.blog-post-title {
	font-size: 22px;
	font-weight: 400;
	color: var(--color-dark);
	line-height: 1.4;
}

@media (max-width: 900px) {
	.blog-post {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.blog-post-img {
		aspect-ratio: 16/9;
	}
}






/* ====================================================
SINGLE NEWS POST
==================================================== */
#post-hero {
	padding: var(--section-py) 0 32px;
}

.post-title {
	font-size: clamp(26px, 3.5vw, 52px);
	font-weight: 400;
	line-height: 1.15;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.post-meta {
	font-size: 14px;
	color: var(--color-muted);
}

.post-hero-img {
	width: 100%;
	overflow: hidden;
	margin-bottom: 0;
}

.post-hero-img img {
	width: 100%;
	height: auto;
	display: block;
}

.post-body {
	max-width: 760px;
}

.post-body p {
	font-size: 17px;
	color: var(--color-dark);
	line-height: 1.8;
	margin-bottom: 20px;
}

.post-body h2 {
	font-size: clamp(18px, 2vw, 26px);
	font-weight: 500;
	color: var(--color-dark);
	margin: 36px 0 14px;
}

.post-body h3 {
	font-size: 18px;
	font-weight: 500;
	color: var(--color-dark);
	margin: 24px 0 10px;
}

.post-body ul,
.post-body ol {
	padding-left: 20px;
	margin-bottom: 20px;
}

.post-body li {
	font-size: 17px;
	color: var(--color-muted);
	line-height: 1.7;
	margin-bottom: 6px;
}

.post-body a {
	color: var(--color-dark);
}

.post-body-img {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	margin: 24px 0;
}

.post-body-img img {
	width: 100%;
	height: auto;
	display: block;
}

.conteiner__blog {
	max-width: 700px;
	margin: 20px auto;
}

@media (max-width: 900px) {
	.blog-post {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.blog-post-img {
		aspect-ratio: 16/9;
	}
}





/* ============================================================
VR PAGE - vr-navchannya-dlya-hirurgiv
============================================================ */

/* === VR HERO === */
#vr-hero {
	padding: var(--section-py) 0;
}

#vr-hero .product-hero-inner {
	grid-template-columns: 68fr 32fr;
	align-items: start;
	padding-top: 8px;
}

#vr-hero .product-hero-title {
	font-size: clamp(32px, 4.5vw, 64px);
}

#vr-hero .product-hero-text {
	font-size: 23px;
	color: var(--color-dark);
}

#vr-hero .product-hero-text strong {
	color: var(--color-muted);
}

.product-hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--color-dark);
	color: #fff;
	border-radius: 30px;
	padding: 14px 28px;
	font-size: 15px;
	font-family: var(--font);
	text-decoration: none;
	transition: opacity var(--transition);
}

.product-hero-btn:hover {
	opacity: 0.75;
}

.vr-hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

#vr-hero .product-hero-img-wrap {
	flex-direction: column;
	gap: 10px;
}

.vr-hero-caption {
	font-size: 19px;
	color: color:var(--color-dark);
}

.vr-hero-video {
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	height: 460px;
	border-radius: 20px;
}

.vr-hero-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* === VR QUICKSTART (light) === */
.vr-quickstart .advantage-card {
	min-height: 365px;
}

.vr-quickstart .advantage-card:hover .advantage-desc {
	transform: translateY(-90%);
}

.vr-quickstart .section-title {
	text-align: center;
}

.vr-qs-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--color-dark);
	color: #fff;
	border-radius: 30px;
	padding: 5px 24px;
	font-size: 14px;
	font-family: var(--font);
	text-decoration: none;
	transition: opacity var(--transition);
	align-self: flex-start;
	margin-top: auto;
}

.vr-qs-btn:hover {
	opacity: 0.75;
}

/* === VR VIDEOS === */
#vr-videos {
	padding: var(--section-py) 0;
}

.vr-videos-intro {
	text-align: center;
	margin: 0 auto 32px;
	font-size: 23px;
	color: var(--color-muted);
	line-height: 1.7;
}

.vr-videos-intro strong {
	color: var(--color-dark);
}

.vr-search {
	display: block;
	width: 100%;
	border: 1px solid var(--color-dark);
	border-radius: 20px;
	padding: 14px 24px;
	font-family: var(--font);
	font-size: 15px;
	color: var(--color-dark);
	outline: none;
	margin-bottom: 40px;
	transition: border-color 0.2s;
}

.vr-search:focus {
	border-color: #aaa;
}

.vr-search::placeholder {
	color: #aaa;
}

.vr-vid-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.vr-vid-card {
	border: 1px solid #e0e0e0;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 24px;
	gap: 24px;
}

.vr-vid-thumb {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	display: block;
	border-radius: 20px;
}

.vr-vid-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vr-vid-title {
	font-size: 26px;
	font-weight: 400;
	color: var(--color-dark);
	line-height: 1.35;
}

.vr-vid-sub {
	font-size: 23px;
	color: var(--color-muted);
	margin-bottom: 20px;
}



.vr-vid-actions {
	display: flex;
	gap: 12px;

	flex-wrap: wrap;
	justify-content: space-between;
	flex: 1 1 100%;
	align-items: flex-end;
}

.vr-vid-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--color-dark);
	color: #fff;
	border-radius: 30px;
	padding: 5px 20px;
	font-size: 14px;
	font-family: var(--font);
	text-decoration: none;
	white-space: nowrap;
	transition: opacity var(--transition);
}

.vr-vid-btn:hover {
	opacity: 0.75;
}

.vr-show-more-wrap {
	text-align: center;
	margin-top: 36px;
	margin-bottom: 8px;
}

.vr-show-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--color-dark);
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 8px 32px;
	font-size: 15px;
	font-family: var(--font);
	cursor: pointer;
	transition: opacity var(--transition);
}

.vr-show-more:hover {
	opacity: 0.75;
}

.vr-vid-card.vr-hidden {
	display: none;
}

/* === VR SKILLS === */
#vr-skills {
	padding: var(--section-py) 0;
}

.vr-skills-title {
	font-size: clamp(26px, 3.5vw, 52px);
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.vr-skills-sub {
	font-size: 23px;
	color: var(--color-muted);
	margin-bottom: 40px;
	text-align: center;
}

.vr-skills-sub strong{color:var(--color-dark);}

.vr-skill-slider-outer {
	display: flex;
	align-items: center;
	gap: 0;
	margin-bottom: 24px;
}

.vr-skill-slider-outer .swiper {
	flex: 1;
	min-width: 0;
	padding-bottom: 48px;
}

.vr-skill-arrow {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-dark);
	transition: opacity var(--transition);
	padding: 0;
}

.vr-skill-arrow:hover {
	opacity: 0.5;
}

.vr-skill-arrow.swiper-button-disabled {
	opacity: 0.2;
	cursor: default;
}

.vr-skill-pagination.swiper-pagination {
	bottom: 12px;
}

.vr-skill-pagination .swiper-pagination-bullet {
	background: var(--color-dark);
	opacity: 0.25;
	width: 8px;
	height: 8px;
}

.vr-skill-pagination .swiper-pagination-bullet-active {
	opacity: 1;
}

.vr-skill-card {
	border: 1px solid var(--color-dark);
	border-radius: 16px;
	overflow: hidden;
	padding: 24px;
}

.vr-skill-img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	display: block;
	background: #111;
	border-radius:20px;
}

.vr-skill-body {
	padding-top: 24px;
}

.vr-skill-name {
	font-size: 26px;
	font-weight: 400;
	margin-bottom: 8px;
	line-height: 1.35;
}

.vr-skill-text {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.4;
	min-height: 64px;
}

.vr-checklist {
	background: var(--color-dark);
	border-radius: 16px;
	padding: 40px 48px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap:wrap;
}

.vr-checklist ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: 465px;
	position:relative;
	z-index:1;
}

.vr-checklist li {
	color: var(--color-accent);
	font-size: 20px;
	line-height: 1.4;
	padding-left: 22px;
	position: relative;
}

.vr-checklist li::before {
	content: "\25CF";
	position: absolute;
	left: 0;
	color:  var(--color-accent);
	font-size: 23px;
	top: -5px;
}

.vr-checklist li strong {
	color:  var(--color-accent);
	font-weight: 600;
}

.vr-checklist li em {
	color: #8d8d8d;
	font-style: normal;
}

.vr-checklist img{max-width:520px;    width: 100%;}


/* === VR FAQ === */
#vr-faq {
	padding: var(--section-py) 0;
}

.vr-faq-title {
	font-size: clamp(26px, 3.5vw, 48px);
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 48px;
}

.vr-faq-inner {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 64px;
	align-items: center;
}

.vr-faq-img-wrap img {
	width: 100%;
	height: auto;
	display: block;
}

.vr-faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: none;
	margin: 0;
}

#vr-faq .accordion-item {
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 0;
}

#vr-faq .accordion-item+.accordion-item {
	border-top: 1px solid #e0e0e0;
	margin-top: 0;
}

#vr-faq .accordion-header {
	width: 100%;
	justify-content: space-between;
	padding: 20px 24px;
	font-size: 26px;
}

#vr-faq .accordion-body {
	padding: 0 24px 20px;
	border-top: none;
}

#vr-faq .accordion-body p {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.4;
}

#vr-faq .accordion-header>span:first-child {
	flex: 1;
	text-align: left;
}

#vr-faq .accordion-icon svg {
	width: 20px;
	height: 20px;
}

/* === VR CONTACT SUPPORT === */
#vr-contact {
	padding: var(--section-py) 0;
}

.vr-ct-title {
	font-size: clamp(26px, 3.5vw, 48px);
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 10px;
}

.vr-ct-sub {
	font-size: 23px;
	color: var(--color-muted);
	text-align: center;
	margin-bottom: 40px;
	line-height: 1.6;
}

.vr-ct-sub strong{color:var(--color-dark); font-weight:400;}

.vr-ct-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 24px;
	align-items: start;
}

.vr-ct-card {
	border: 1px solid var(--color-dark);
	border-radius: 16px;
	padding: 32px;
}

.vr-form-row2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 30px;
}

.vr-input {
	border:none;
	border-radius: 30px;
	padding: 5px 20px;
	font-family: var(--font);
	font-size: 15px;
	color: var(--color-dark);
	background: #f7f7f7;
	outline: none;
	width: 100%;
	transition: border-color 0.2s;
}

.vr-input:focus {
	border-color: #aaa;
}

.vr-input::placeholder {
	color: #aaa;
}

.vr-textarea {
	border-radius: 16px;
	min-height: 120px;
	resize: vertical;
}

.vr-checkbox-wrap {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	color: var(--color-dark);
	line-height: 1.5;
	margin: 16px 0;
}

.vr-checkbox-wrap input {
	flex-shrink: 0;
	margin-top: 2px;
	accent-color: var(--color-dark);
}

.vr-form-btns {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vr-ct-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--color-dark);
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 10px 24px;
	font-size: 15px;
	font-family: var(--font);
	cursor: pointer;
	text-decoration: none;
	transition: opacity var(--transition);
}

.vr-ct-btn:hover {
	opacity: 0.75;
}

.vr-form-btns-row2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top:20px;
}

.vr-ct-btn-sec {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--color-dark);
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 10px 16px;
	font-size: 14px;
	font-family: var(--font);
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: border-color var(--transition);
}

.vr-ct-btn-sec:hover {
	border-color: var(--color-dark);
}

.vr-ct-info-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height:425px;
}

.vr-ct-info-card .vr-info-block {
	text-align: center;
}

.vr-info-block {
	margin-bottom: 28px;
}

.vr-info-block:last-child {
	margin-bottom: 0;
}

.vr-info-label {
	font-size: 26px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
	color: var(--color-dark);
	margin-bottom: 8px;
}

.vr-info-val {
	font-size: 20px;
	color: var(--color-muted);
	line-height: 1.65;
}

.vr-info-val a {
	color: var(--color-dark);
	text-decoration: none;
}

.vr-info-val a:hover {
	opacity: 0.7;
}

/* === VR ADAPTIVE === */
@media (max-width: 1200px) {
	.vr-qs-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1024px) {
	.vr-vid-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.vr-skill-grid,
	.vr-ct-grid,
	.vr-faq-inner {
		grid-template-columns: 1fr;
	}

	.vr-faq-img-wrap {
		max-width: 320px;
		margin: 0 auto;
	}

	.vr-checklist {
		padding: 32px 28px;
	}
}

@media (max-width: 640px) {

	.vr-qs-grid,
	.vr-vid-grid {
		grid-template-columns: 1fr;
	}

	.vr-form-row2,
	.vr-form-btns-row2 {
		grid-template-columns: 1fr;
	}

	.vr-faq-list {
		max-width: 100%;
	}

	#vr-hero .product-hero-inner{    grid-template-columns: 1fr; gap:20px;}

	.header-inner{justify-content: space-between;}

	.vr-hero-video {
		aspect-ratio: 9 / 16;
	}
}