:root {
	--body-bg: #f9f9f9;
	--bg: #ffffff;
	--bg-2: #f8f8f8;
	--bg-3: #f1f1f1;
	--ink: #2A2C32;
	--ink-soft: #4a4c52;
	--muted: #8B8B8B;
	--accent: #27ae60;
	--accent-dark: #1e8449;
	--blue: #4388D2;
	--line: #ECECEC;
	--line-2: #E4E4E4;
	--pad: clamp(20px, 6vw, 80px);
	--radius: 4px;
	--font-body: "Montserrat", system-ui, sans-serif;
	--font-head: "Montserrat", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }

body {
	font: 400 16px/1.5 var(--font-body);
	background: var(--body-bg);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; transition: color .15s; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 var(--pad); }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 400; letter-spacing: .02em; line-height: 1.2; color: var(--ink); }
h1, h2 { text-transform: uppercase; }
em { font-style: normal; color: var(--accent); }

/* ============ topbar ============ */
.topbar { background: #e9e9e9; color: var(--ink-soft); font-size: 13px; border-bottom: 1px solid var(--line-2); }
.topbar-inner { max-width: 1240px; margin: 0 auto; padding: 8px var(--pad); display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar a { color: var(--ink); text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--accent); }
.topbar .top-phone { display: flex; gap: 18px; }
.topbar .top-phone a { display: inline-flex; align-items: center; font-weight: 700; }
.topbar .top-phone a::before {
	content: "";
	width: 15px; height: 15px; margin-right: 4px; flex: 0 0 auto;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232A2C32'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.topbar .hours { color: var(--ink); font-weight: 700; opacity: 1; display: inline-flex; align-items: center; }
.topbar .hours::before {
	content: "";
	width: 7px; height: 7px; border-radius: 50%; margin-right: 8px; flex: 0 0 auto;
	background: var(--accent);
	display: none;
}

/* ============ header ============ */
header.site {
	position: sticky; top: 0; z-index: 60;
	background: #000;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.nav {
	display: flex; align-items: center; justify-content: space-between;
	height: 72px; padding: 0 var(--pad); max-width: 1240px; margin: 0 auto; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { display: block; height: 40px; width: auto; }
.nav ul { display: flex; gap: 4px; list-style: none; align-items: stretch; }
.nav ul li { position: relative; display: flex; align-items: center; }
.nav ul li.has-drop::after { content: "▾"; margin-left: 3px; font-size: 16px; color: #8a8a8a; line-height: 1; display: inline-block; }
	.nav ul li.has-drop > a { padding-right: 14px; }
.nav ul li a {
	color: #cfcfcf; text-decoration: none; display: block;
	font-size: 13px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase;
	padding: 9px 14px; transition: color .15s, background .15s;
}
.nav ul li a:hover { background: rgba(255, 255, 255, .14); color: #fff; border-radius: 3px; }
.nav ul li a.active { background: rgba(39, 174, 96, .35); color: #fff; border-radius: 3px; }
.nav ul li a.nav-home::after { content: "Главная"; }
.dropdown {
	position: absolute; top: 100%; left: 0; min-width: 320px;
	background: #111; padding: 6px 0; display: none; z-index: 75;
	border-top: 3px solid var(--accent);
	box-shadow: 0 18px 36px rgba(0, 0, 0, .45);
}
.nav ul li.has-drop:hover .dropdown, .nav ul li.has-drop:focus-within .dropdown, .nav ul li.has-drop.open .dropdown { display: block; }
.dropdown a { display: block; text-transform: none; color: #e0e0e0; padding: 13px 24px; font-size: 15px; font-weight: 500; }
.dropdown a:hover { background: var(--accent); color: #fff; }

.btn {
	display: inline-block; padding: 15px 24px; border-radius: 3px;
	font-family: var(--font-body); font-weight: 600; font-size: 16px; letter-spacing: .02em; text-decoration: none; cursor: pointer;
	border: none; background: transparent; color: var(--accent);
	transition: background .2s, color .15s, transform .15s, box-shadow .2s;
}
.btn:hover { color: var(--accent-dark); }
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(39,174,96,.25); }
.btn-lg { padding: 19px 30px; font-size: 18px; }
.btn-black { position: relative; overflow: hidden; background: linear-gradient(180deg, #111 0%, #000 100%); color: #27ae60; border: 1px solid rgba(255, 255, 255, .1); }
.btn-black:hover { background: linear-gradient(180deg, #1a1a1a 0%, #000 100%); color: #27ae60; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(0,0,0,.3); }
.btn-black::after { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(39,174,96,.45), transparent); animation: ctaShimmer 2.4s infinite; }
@keyframes ctaShimmer { 0% { left: -100%; } 100% { left: 200%; } }
.nav .btn-solid { font-size: 13px; padding: 9px 16px; }
.burger { display: none; background: none; border: none; cursor: pointer; color: #fff; width: 44px; height: 44px; padding: 0; align-items: center; justify-content: center; }
.burger svg { display: block; }

/* ============ hero ============ */
.hero { position: relative; padding: clamp(50px, 7vw, 96px) 0; overflow: hidden; background: #fff; }

/* ============ sections ============ */
section { padding: 92px 0; border-top: 1px solid var(--line); background: #fff; }
section:nth-of-type(even) { background: var(--bg-2); border-top: none; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(26px, 3.6vw, 44px); max-width: 22ch; }
.kicker { color: var(--accent); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.kicker b { font-weight: 700; }

/* ============ service cards ============ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: #fff; border: 1px solid #ccc; border-radius: var(--radius); overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; display: flex; flex-direction: column; text-decoration: none; }
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(0,0,0,.12); border-color: var(--accent); }
.card .thumb { height: 225px; overflow: hidden; position: relative; }
.card .thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.3)); }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .thumb img { transform: scale(1.06); }
.card .body { padding: 26px 26px 22px; display: flex; flex-direction: column; flex: 1; }
.card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 16px; flex: 1; }
.card .meta { margin-top: 16px; display: flex; justify-content: space-between; align-items: center; font-size: 16px; }
.card .price { font-weight: 700; color: var(--accent); font-family: var(--font-head); }
.card .arrow { color: var(--accent); font-weight: 700; font-size: 18px; }

/* ============ split / why ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.split .photo { height: 460px; }
.photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: grid; gap: 20px; margin-top: 28px; }
.why-item { display: flex; gap: 16px; }
.why-item .dot { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 3px; background: var(--bg-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent); font-family: var(--font-head); font-weight: 400; }
.why-item h3 { font-size: 18px; margin-bottom: 3px; }
.why-item p { font-size: 16px; color: var(--ink-soft); }

/* ============ steps ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.step { border-top: 2px solid var(--accent); padding-top: 18px; }
.step b { color: var(--accent); font-size: 12px; letter-spacing: .04em; }
.step h3 { font-size: 19px; margin: 10px 0 8px; }
.step p { font-size: 16px; color: var(--ink-soft); }

/* ============ gallery / portfolio ============ */
.grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.grid .tile { grid-column: span 2; height: 300px; position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 1px solid var(--line); background: var(--bg-2); }
.grid .tile.wide { grid-column: span 3; }
.grid .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.grid .tile:hover img { transform: scale(1.06); }
.grid .tile figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.85)); color: #fff; font-size: 13px; font-weight: 600; }

/* ============ page hero ============ */
.page-hero { padding: 40px 0 44px; border-top: none; border-bottom: 1px solid var(--line); background: #fff !important; }
.page-hero .crumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.page-hero .crumb a { color: var(--accent); text-decoration: none; }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); max-width: 20ch; }
.page-hero p { color: var(--ink-soft); margin-top: 18px; max-width: 62ch; font-size: 16px; }

/* ============ price list ============ */
.prices { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid #ccc; border-radius: var(--radius); overflow: hidden; background: #fff; }
.price-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 16px 26px; border-bottom: 1px solid #ddd; }
.price-row:last-child { border-bottom: 0; }
.price-row .name { font-weight: 600; color: var(--ink); }
.price-row .desc { font-size: 13px; color: var(--muted); margin-top: 3px; }
.price-row .price { font-weight: 700; color: var(--accent); white-space: nowrap; font-family: var(--font-head); }
.price-row .price small { color: var(--muted); font-weight: 500; }

/* ============ info cards ============ */
.about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.info-card b { color: var(--accent); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; display: block; margin-bottom: 8px; }
.info-card p { color: var(--ink); font-size: 16px; font-weight: 600; }

/* ============ reviews ============ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.review .stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 12px; }
.review p { color: var(--ink-soft); font-size: 16px; font-style: italic; }
.review .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.review .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-2); display: grid; place-items: center; color: var(--accent); font-family: var(--font-head); }
.review .who .nm b { color: var(--ink); font-size: 16px; display: block; }
.review .who .nm span { color: var(--muted); font-size: 12px; }

/* ============ contact ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-list { display: grid; gap: 14px; }
.cl { display: flex; gap: 16px; align-items: flex-start; }
.cl .ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 3px; background: var(--bg-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent); }
.cl b { color: var(--ink); display: block; font-size: 16px; }
.cl span { color: var(--muted); font-size: 16px; }
.cl a { color: var(--ink); text-decoration: none; font-weight: 600; display: block; }
.cl a:hover { color: var(--accent); }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 260px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.15); }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.form h3 { margin-bottom: 8px; }
.form p { color: var(--ink-soft); font-size: 16px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.field input, .field textarea, .field select { width: 100%; background: #fff; border: 1px solid var(--line-2); border-radius: 3px; padding: 13px 14px; color: var(--ink); font-family: var(--font-body); font-size: 16px; outline: none; transition: border-color .2s; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.form .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }
.alert-ok { background: rgba(39,174,96,.1); color: var(--accent); border: 1px solid rgba(39,174,96,.4); padding: 12px 16px; border-radius: 3px; font-size: 16px; margin-top: 14px; display: none; }

/* ============ CTA band ============ */
.cta-band { background: var(--accent); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,.8); margin: 12px 0 0; max-width: 48ch; }
.cta-band .btn { border: 1px solid rgba(255,255,255,.7); color: #fff; }
.cta-band .btn:hover { color: #fff; background: rgba(255,255,255,.1); }

/* ============ footer ============ */
footer.site {
	background: linear-gradient(180deg, #111 0%, #000 100%);
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: 52px 0 28px;
}
.foot { max-width: 1240px; margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
.foot h4 { font-size: 14px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .04em; color: #fff; }
.foot a, .foot span { display: block; color: #b9bdc4; font-size: 14px; text-decoration: none; margin-bottom: 9px; }
.foot a:hover { color: var(--accent); }
.foot .about-mini p { color: #b9bdc4; font-size: 14px; margin-top: 14px; max-width: 40ch; }
.foot-bottom { max-width: 1240px; margin: 40px auto 0; padding: 22px var(--pad) 0; border-top: 1px solid rgba(255,255,255,.1); color: #83878d; font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.foot-bottom a { color: #b9bdc4; text-decoration: none; }
.foot-bottom a:hover { color: var(--accent); }

/* ============ responsive ============ */
@media (max-width: 1000px) {
	.cards { grid-template-columns: repeat(2, 1fr); }
	.split, .contact-grid { grid-template-columns: 1fr; }
	.about-grid { grid-template-columns: repeat(2, 1fr); }
	.grid { grid-template-columns: repeat(2, 1fr); }
	.grid .tile.wide { grid-column: span 1; }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.foot { grid-template-columns: 1fr 1fr; }
	.nav ul { display: none; }
	.nav ul.open {
		display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
		background: #111; padding: 12px 0; z-index: 80; border-top: 1px solid rgba(255,255,255,.1);
	}
	.nav ul.open li.has-drop .dropdown { position: static; min-width: 0; box-shadow: none; border-top: none; padding: 0 0 0 18px; }
	.nav ul.open li.has-drop .dropdown a { padding: 10px 14px; font-size: 14px; }
	.nav ul.open li.has-drop { flex-direction: column; align-items: flex-start; }
	.nav ul.open li.has-drop::after { display: none; }
	.nav ul.open li.has-drop > a { display: inline-flex; align-items: center; }
	.nav ul.open li.has-drop > a::after { content: "▾"; margin-left: 8px; font-size: 16px; color: #8a8a8a; line-height: 1; }
	.nav ul.open li.has-drop.open > a::after { transform: rotate(180deg); }
	.nav ul.open li.has-drop:hover .dropdown,
	.nav ul.open li.has-drop:focus-within .dropdown { display: none; }
	.nav ul.open li.has-drop.open .dropdown { display: block; }
	.nav ul.open li.has-drop.open:hover .dropdown,
	.nav ul.open li.has-drop.open:focus-within .dropdown { display: block; }
	.burger { display: flex; }
	.nav .btn-solid { display: none; }
	.brand { margin: 0; }
}
@media (max-width: 620px) {
	.cards, .reviews, .about-grid { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; }
	.grid { grid-template-columns: 1fr; }
	.foot { grid-template-columns: 1fr; }
	.topbar .top-phone { gap: 12px; }
	.topbar .top-phone a { font-size: 14px; }
	.topbar .hours { display: none; }
	section { padding: 72px 0; }
}

/* ============ quiz ============ */
.quiz { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: 0 16px 40px rgba(0,0,0,.1); max-width: 680px; margin: 0 auto; }
.quiz-head { text-align: center; margin-bottom: 16px; }
.quiz-head h2 { font-size: 22px; margin-bottom: 6px; }
.quiz-head p { color: var(--ink-soft); font-size: 16px; }
.quiz-steps { position: relative; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-label { font-weight: 600; font-size: 18px; margin-bottom: 16px; color: var(--ink); text-align: center; }
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quiz-opt { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 1px solid #c8c8c8; border-radius: var(--radius); cursor: pointer; transition: border-color .2s, background .2s; }
.quiz-opt:hover { border-color: var(--accent); background: rgba(39,174,96,.04); }
.quiz-opt input { display: none; }
.quiz-opt input:checked + span { color: var(--accent); font-weight: 600; }
.quiz-opt:has(input:checked) { border-color: var(--accent); background: rgba(39,174,96,.08); }
.quiz-fields { display: grid; gap: 12px; max-width: 400px; margin: 0 auto; }
.quiz-fields input, .quiz-fields select { width: 100%; background: #fff; border: 1px solid #c8c8c8; border-radius: 3px; padding: 13px 14px; color: var(--ink); font-family: var(--font-body); font-size: 16px; outline: none; transition: border-color .2s; }
.quiz-fields select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
.quiz-fields input:focus, .quiz-fields select:focus { border-color: var(--accent); }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; gap: 12px; flex-wrap: wrap; }
.quiz-submit:disabled { opacity: .5; cursor: not-allowed; }
.quiz-dots { display: flex; gap: 6px; }
.quiz-dots span { width: 28px; height: 4px; border-radius: 2px; background: var(--line-2); transition: background .2s; }
.quiz-dots span.active { background: var(--accent); }
.quiz-done { text-align:center;padding:40px 20px;min-height:200px;display:flex;flex-direction:column;align-items:center;justify-content:center; }
.quiz-done h3 { font-size: 20px; margin-bottom: 8px; }
.quiz-done p { color: var(--ink-soft); font-size: 16px; }

@media (max-width: 620px) {
	.quiz { padding: 24px 18px; }
	.quiz-head h2 { font-size: 18px; }
	.quiz-options { grid-template-columns: 1fr; }
	.quiz-opt { padding: 10px 14px; font-size: 16px; }
	.hero-caption .hero-pills span { padding: 6px 12px !important; font-size: 13px !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; }
	.quiz-nav { gap: 8px; justify-content: center; }
	.quiz-nav .btn { padding: 10px 16px; font-size: 13px; }
	.quiz-label { font-size: 16px; }
	.quiz-dots { overflow: hidden; }
	.advantages-grid { grid-template-columns: 1fr !important; }
}
.hero-slider {
	position: relative;
	padding: 0;
	min-height: 560px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #111;
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-veil {
	position: absolute; inset: 0; z-index: 2;
	background: rgba(0, 0, 0, .5);
}
.hero-arrow {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
	width: 54px; height: 54px; border-radius: 50%;
	border: 1px solid rgba(255,255,255,.4);
	background-color: rgba(0,0,0,.35);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: center; background-size: 22px;
	cursor: pointer; transition: background-color .2s, border-color .2s;
}
.hero-arrow:hover { background-color: var(--accent); border-color: var(--accent); }
.hero-arrow--prev { left: 22px; transform: translateY(-50%) rotate(180deg); }
.hero-arrow--next { right: 22px; }
.hero-caption {
	position: relative; z-index: 3; text-align: center; width: 100%;
	max-width: 1240px; margin: 0 auto; padding: 40px var(--pad);
}
.hero-caption .eyebrow {
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(0, 0, 0, .4); border: 1px solid rgba(255,255,255,.35);
	color: #fff; padding: 4px 16px; border-radius: 999px; font-weight: 400; font-size: 13px;
	margin-bottom: 30px;
}
.hero-caption .eyebrow::before { display: none; }
.hero-caption h1 { color: #fff; max-width: 18em; margin: 0 auto; font-weight: 700; font-size: clamp(26px, 3.6vw, 46px); text-shadow: 0 2px 10px rgba(0,0,0,.6); }
.hero-caption .lead { color: rgba(255,255,255,.88); max-width: 54ch; margin: 20px auto 0; }
.hero-caption .hero-actions { justify-content: center; margin-top: 26px; gap: 16px; }
.hero-caption .hero-actions .btn { padding: 12px 22px; font-size: 16px; }
.hero-caption .btn:not(.btn-solid) { border: 1px solid rgba(255,255,255,.6); color: #fff; }
.hero-caption .btn:not(.btn-solid):hover { border-color: #fff; color: #fff; }
.hero-dots {
	position: absolute; bottom: 24px; left: 0; right: 0; z-index: 4;
	display: flex; justify-content: center; gap: 10px;
}
.hero-dots button { width: 32px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: background .2s; }
.hero-dots button:hover, .hero-dots button.active { background: #fff; }
@media (max-width: 620px) { .hero-slider { min-height: 440px; } }

/* ============ gallery tabs ============ */
.gallery-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 16px; }
#gallery .section-head h2 { white-space: nowrap; }
.gallery-tab { padding: 10px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink-soft); font-size: 14px; font-weight: 500; cursor: pointer; transition: all .2s; font-family: var(--font-body); }
.gallery-tab:hover { border-color: var(--accent); color: var(--accent); }
.gallery-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.reviews-slider { position: relative; overflow: hidden; padding: 0 50px; }
.reviews-track { display: flex; gap: 20px; transition: transform .4s ease; }
.reviews-track img { flex: 0 0 calc(25% - 15px); height: 300px; object-fit: contain; border-radius: var(--radius); cursor: pointer; transition: transform .25s; }
.reviews-track img:hover { transform: scale(1.03); }
.reviews-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; padding: 0; line-height: 0; z-index: 2; }
.reviews-arrow:hover { border-color: var(--accent); color: var(--accent); }
.reviews-arrow--prev { left: 0; }
.reviews-arrow--next { right: 0; }
@media (max-width: 1000px) {
	.reviews-track img { flex: 0 0 calc(33.333% - 14px); }
	.is-front .cta-band { flex-direction: column; justify-content: center; text-align: center; align-items: center; gap: 12px; }
	.is-front .cta-band > div { width: 100%; max-width: 100%; }
	.is-front .cta-band h2, .is-front .cta-band p { max-width: none; margin-left: auto; margin-right: auto; }
	.is-front .cta-band p { margin-bottom: 0; }
}
@media (max-width: 620px) {
	.reviews-slider { padding: 0 40px; }
	.reviews-track img { flex: 0 0 calc(50% - 10px); height: 220px; }
	.reviews-arrow { width: 36px; height: 36px; font-size: 16px; }
	.cta-band .btn { padding: 12px 20px; font-size: 16px; }
	.is-front .cta-band { justify-content: center; text-align: center; }
}
.gallery-panel { display: none; }
.gallery-panel.active { display: block; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); cursor: pointer; transition: transform .25s, box-shadow .25s; }
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.gallery-wrap { position: relative; }
.gallery-nav-top { display:flex; justify-content:center; align-items:center; gap:8px; margin-bottom:16px; }
.gallery-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; padding: 0; line-height: 0; }
.gallery-arrow:hover { border-color: var(--accent); color: var(--accent); background: rgba(39,174,96,.06); }
@media (max-width: 620px) {
	.gallery-tabs { gap: 6px; }
	.gallery-tab { padding: 8px 14px; font-size: 13px; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	.gallery-grid img { height: 140px; }
	.gallery-arrow { width: 36px; height: 36px; font-size: 16px; }
	.hero-arrow { width: 34px; height: 34px; background-size: 16px; top: 45%; }
	.hero-arrow--prev { left: 14px; }
	.hero-arrow--next { right: 14px; }
	.hero-caption .lead { font-size: 16px; }
	.advantages-grid p { font-size: 12px; }
	#gallery .section-head h2 { white-space: normal; }
	.quiz-consent-label { font-size: 10px !important; display: block !important; text-align: center !important; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	.gallery-grid img { height: 140px; }
	.prices { overflow-x: auto; }
	.price-row { flex-wrap: wrap; gap: 8px; }
	.price-row .price { white-space: normal; text-align: right; }
}

/* ============ lightbox ============ */
.lightbox { position:fixed;inset:0;background:rgba(0,0,0,.92);display:flex;align-items:center;justify-content:center;z-index:999; }
.lb-img-wrap { max-width:90vw;max-height:85vh;display:flex;align-items:center;justify-content:center; }
.lb-img { max-width:90vw;max-height:85vh;object-fit:contain;border-radius:4px;user-select:none; }
.lb-close { position:absolute;top:16px;right:20px;background:none;border:none;color:#fff;font-size:36px;cursor:pointer;z-index:1001;line-height:1;opacity:.7;transition:opacity .2s; }
.lb-close:hover { opacity:1; }
.lb-prev, .lb-next { position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.25);color:#fff;width:50px;height:50px;border-radius:50%;font-size:22px;cursor:pointer;z-index:1001;display:flex;align-items:center;justify-content:center;transition:background .2s;padding:0;line-height:0; }
.lb-prev:hover, .lb-next:hover { background:var(--accent);border-color:var(--accent); }
.lb-prev { left:16px; }
.lb-next { right:16px; }
.lb-counter { position:absolute;bottom:20px;left:50%;transform:translateX(-50%);color:rgba(255,255,255,.7);font-size:16px;z-index:1001; }
@media (max-width:620px) { .lb-prev, .lb-next { width:40px;height:40px;font-size:18px; } }
