/* ================================================================
   Page About — страница /about/
   Hero + бренды + преимущества + манифест + география + удобство + CTA.
   Префикс .about-*
   ================================================================ */

.page-about {
	background: var(--paper);
	color: var(--ink);
}

/* ── Section header common ────────────────────────────── */

.about-sec-num { margin-bottom: 18px; }

.about-h2 {
	margin: 0;
	max-width: 1400px;
}

.about-kicker {
	margin: 18px 0 0;
	max-width: 720px;
	font-size: 17px;
	line-height: 1.6;
	color: rgba(14, 14, 14, 0.72);
}

/* ── Hero ─────────────────────────────────────────────── */

.about-hero {
	background: var(--paper);
	overflow: hidden;
}

.about-hero-wrap {
	padding-top: 88px;
	padding-bottom: 88px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.about-hero-logo {
	height: 100px;
	width: auto;
	margin-bottom: 28px;
}

.about-hero-title {
	margin: 0;
	line-height: 1;
	font-size: clamp(40px, 8vw, 68px);
}

.about-hero-desc {
	margin-top: 24px;
	max-width: 720px;
	font-size: 18px;
	line-height: 1.6;
	color: rgba(14, 14, 14, 0.78);
}

.about-hero-desc b {
	color: var(--ink);
	font-weight: 700;
}

.about-hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 36px;
	justify-content: center;
}

.about-hero-btn { color: var(--ink); }
.about-hero-btn.btn--ghost { background: transparent; }

/* ── Brands ───────────────────────────────────────────── */

.about-brands-grid {
	margin-top: 48px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.about-brand-card {
	border: 1.5px solid var(--ink);
	border-radius: 8px;
	background: var(--paper);
	height: 156px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 44px;
}

.about-brand-card img {
	max-width: 100%;
	max-height: 64px;
	object-fit: contain;
}

@media (max-width: 900px) {
	.about-brands-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
	.about-brands-grid { grid-template-columns: 1fr; }
}

/* ── Advantages ───────────────────────────────────────── */

.about-adv-grid {
	margin-top: 48px;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}

.about-adv-card {
	grid-column: span 2;
	border: 1.5px solid var(--ink);
	border-radius: 8px;
	background: var(--paper);
	padding: 26px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	min-height: 188px;
}

.about-adv-card.is-wide { grid-column: span 3; }

.about-adv-num {
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 10px;
	letter-spacing: 0.14em;
	opacity: 0.45;
}

.about-adv-icon {
	width: 52px;
	height: 52px;
	border-radius: 8px;
	background: var(--orange);
	color: var(--paper);
	border: 1.5px solid var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-adv-h {
	margin: 4px 0 0;
	font-size: 19px;
	font-family: var(--font-display);
	text-transform: uppercase;
	line-height: 1.1;
}

.about-adv-t {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(14, 14, 14, 0.7);
}

@media (max-width: 1024px) {
	.about-adv-grid { grid-template-columns: 1fr 1fr; }
	.about-adv-card,
	.about-adv-card.is-wide { grid-column: span 1; }
}

@media (max-width: 560px) {
	.about-adv-grid { grid-template-columns: 1fr; }
}

/* ── Manifesto ────────────────────────────────────────── */

.about-manifesto {
	background: var(--ink);
	color: var(--paper);
}

.about-manifesto-wrap {
	padding-top: 160px;
	padding-bottom: 160px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.about-mf-title {
	margin: 0;
	font-size: clamp(28px, 4.2vw, 60px);
	line-height: 1.06;
	max-width: 1000px;
	color: var(--paper);
}

.about-mf-mark {
	color: var(--orange);
	white-space: nowrap;
}

.about-mf-sub {
	margin-top: 24px;
	max-width: 760px;
	font-size: 20px;
	line-height: 1.6;
	color: rgba(244, 241, 234, 0.85);
}

@media (max-width: 768px) {
	.about-manifesto-wrap { padding-top: 96px; padding-bottom: 96px; }
}

@media (max-width: 480px) {
	.about-manifesto-wrap { padding-top: 72px; padding-bottom: 72px; }
}

/* ── Geography ────────────────────────────────────────── */

.about-geo-title { display: block; }

.about-geo-title-main { color: var(--orange); display: block; }

.about-geo-subline {
	font-size: 0.5em;
	display: inline-block;
	white-space: nowrap;
}

.about-geo-grid {
	margin-top: 52px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.about-geo-card {
	border: 1.5px solid var(--ink);
	border-radius: 8px;
	padding: 26px;
	background: var(--paper);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.about-geo-head {
	display: flex;
	align-items: center;
	gap: 10px;
}

.about-geo-pin {
	color: var(--orange);
	display: inline-flex;
}

.about-geo-city {
	font-size: 24px;
}

.about-geo-addr {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(14, 14, 14, 0.68);
	border-top: 1px dashed var(--line-soft);
	padding-top: 14px;
}

.about-geo-note {
	margin-top: 18px;
	border: 1.5px solid var(--ink);
	border-radius: 8px;
	background: var(--orange);
	color: var(--ink);
	padding: 22px 28px;
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.about-geo-note-icon { display: inline-flex; }

.about-geo-note-text {
	font-weight: 700;
	font-size: 17px;
	flex: 1;
	min-width: 240px;
}

.about-geo-note-mono {
	font-size: 12px;
	letter-spacing: 0.1em;
}

@media (max-width: 900px) {
	.about-geo-grid { grid-template-columns: 1fr; }
}

/* ── Convenient ───────────────────────────────────────── */

.about-conv-grid {
	margin-top: 48px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.about-conv-card {
	border: 1.5px solid var(--ink);
	border-radius: 8px;
	background: var(--paper);
	color: var(--ink);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 240px;
}

.about-conv-card.is-dark {
	background: var(--ink);
	color: var(--paper);
}

.about-conv-num {
	font-size: 56px;
	line-height: 0.85;
	color: var(--orange);
	letter-spacing: -0.04em;
}

.about-conv-h {
	margin: 0;
	font-size: 21px;
	font-family: var(--font-display);
	text-transform: uppercase;
	line-height: 1.1;
}

.about-conv-t {
	margin: 0;
	margin-top: auto;
	font-size: 15px;
	line-height: 1.55;
	color: rgba(14, 14, 14, 0.7);
}

.about-conv-card.is-dark .about-conv-t {
	color: rgba(244, 241, 234, 0.8);
}

@media (max-width: 900px) {
	.about-conv-grid { grid-template-columns: 1fr; }
}

/* ── CTA ──────────────────────────────────────────────── */

.about-cta-grid {
	border: 1.5px solid var(--ink);
	border-radius: 10px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
}

.about-cta-left {
	padding: 56px;
	background: var(--ink);
	color: var(--paper);
}

.about-cta-secnum { color: var(--paper); margin-bottom: 20px; }

.about-cta-secnum .sec-num__num {
	background: var(--orange);
	color: var(--ink);
}

.about-cta-title {
	margin: 0;
	color: var(--paper);
}

.about-cta-text {
	margin-top: 18px;
	font-size: 17px;
	line-height: 1.6;
	color: rgba(244, 241, 234, 0.78);
	max-width: 520px;
}

.about-cta-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.about-cta-phone-note {
	display: block;
	font-size: 11px;
	opacity: 0.55;
	margin-top: 16px;
	letter-spacing: 0.08em;
}

.about-cta-right {
	padding: 56px;
	background: var(--paper);
	display: flex;
	flex-direction: column;
}

.about-social-mono {
	font-size: 10px;
	letter-spacing: 0.14em;
	opacity: 0.6;
}

.about-social-title {
	margin: 12px 0 0;
	font-size: 24px;
	line-height: 1.1;
}

.about-social-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 22px;
}

.about-social-link {
	border: 1.5px solid var(--ink);
	border-radius: 6px;
	padding: 12px 14px;
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--paper);
	color: var(--ink);
	text-decoration: none;
	transition: transform .12s ease, box-shadow .15s ease;
}

.about-social-link:hover {
	transform: translate(-2px, -2px);
	box-shadow: 4px 4px 0 var(--ink);
}

.about-social-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 6px;
	background: var(--ink);
	color: var(--paper);
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-social-info {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.about-social-name {
	font-weight: 700;
	font-size: 15px;
}

.about-social-handle {
	font-size: 11px;
	opacity: 0.55;
}

.about-social-arrow {
	display: inline-flex;
	color: var(--ink);
}

@media (max-width: 900px) {
	.about-cta-grid { grid-template-columns: 1fr; }
	.about-cta-left,
	.about-cta-right { padding: 36px; }
}
