/* О производстве. */
.about-section { padding: 44px 0; border-bottom: 1px solid var(--hairline); }
.about-section:last-of-type { border-bottom: none; }
.about-cols { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.about-h2 { font-size: clamp(1.5rem, 3vw, 2rem); text-transform: uppercase; letter-spacing: .02em; margin-top: 10px; }
.about-text p { color: var(--steel); margin-bottom: 16px; max-width: 60ch; line-height: 1.85; }
.about-addr { color: var(--steel); margin: 14px 0 4px; line-height: 1.7; }

.equip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.equip-card { border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 30px; background: var(--paper); }
.equip-ic { width: 52px; height: 52px; border-radius: var(--r); background: var(--brand-tint); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.equip-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
.equip-card p { color: var(--steel); font-size: .92rem; line-height: 1.7; }

.about-map { aspect-ratio: 16 / 10; border: 1px solid var(--hairline); border-radius: var(--r-lg); overflow: hidden; }
.about-map iframe { width: 100%; height: 100%; display: block; }

@media (max-width: 768px) {
  .about-cols, .equip-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Преимущества (перенесено с главной) */
.advantages { padding: 70px 0 30px; }
.adv-head { margin-bottom: 40px; }
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.adv { background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 36px 30px; position: relative; overflow: hidden; transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease); }
.adv::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--brand-glow), transparent); opacity: 0; transition: opacity .4s var(--ease); }
.adv:hover { transform: translateY(-6px); border-color: rgba(59,138,230,.3); box-shadow: var(--shadow-lift); }
.adv:hover::before { opacity: 1; }
.adv-num { font-family: var(--font-display); font-size: .8rem; letter-spacing: .2em; color: var(--brand-glow); margin-bottom: 22px; }
.adv-ic { width: 54px; height: 54px; border-radius: var(--r); background: var(--brand-tint); color: var(--brand-glow); display: grid; place-items: center; font-size: 1.35rem; margin-bottom: 20px; box-shadow: inset 0 0 0 1px rgba(59,138,230,.2); }
.adv h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.12rem; margin-bottom: 10px; }
.adv p { color: var(--steel); font-size: .92rem; line-height: 1.7; }
@media (max-width: 900px) { .advantages-grid { grid-template-columns: 1fr; } }
