/* ClickOptics — контентные страницы (услуги, салоны) */
/* Стиль продолжает styles.css главного сайта: красный #e30613, тёмный текст, Arial */

.page-hero {
  background: var(--paper, #fff);
  padding: clamp(40px, 6vw, 72px) 0 clamp(24px, 4vw, 48px);
}

.page-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 72px);
}

.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.page-hero .lead {
  max-width: 720px;
  color: var(--muted, #636773);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.3;
}

.page-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) clamp(18px, 5vw, 72px) 64px;
}

.page-body h2 {
  margin: 40px 0 14px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.05;
  font-weight: 950;
  text-transform: uppercase;
}

.page-body h3 {
  margin: 24px 0 8px;
  font-size: 20px;
  line-height: 1.15;
}

.page-body p {
  margin-bottom: 14px;
  line-height: 1.55;
  color: var(--ink, #0f1115);
}

.page-body ul,
.page-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
  line-height: 1.55;
}

.page-body li {
  margin-bottom: 6px;
}

.page-body strong {
  font-weight: 900;
}

.page-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.page-card {
  background: var(--paper, #fff);
  border: 1px solid var(--line, #e3e5e8);
  border-radius: var(--radius, 8px);
  padding: 20px;
}

.page-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.page-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted, #636773);
}

.page-cta {
  margin: 40px 0 0;
  padding: 28px;
  background: var(--soft-red, #fff1f2);
  border-radius: var(--radius, 8px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.page-cta p {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.page-cta .button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  border-radius: var(--radius, 8px);
  font-weight: 900;
  text-decoration: none;
}

.page-cta .button--primary {
  background: var(--red, #e30613);
  color: #fff;
}

.page-cta .button--ghost {
  border: 1px solid var(--red, #e30613);
  color: var(--red, #e30613);
}

.breadcrumbs {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px clamp(18px, 5vw, 72px) 0;
  color: var(--muted, #636773);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--muted, #636773);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--red, #e30613);
}

.salon-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.salon-block__card {
  background: var(--paper, #fff);
  border: 1px solid var(--line, #e3e5e8);
  border-radius: var(--radius, 8px);
  padding: 22px;
}

.salon-block__card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.salon-block__card p {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.45;
}

.salon-block__card a {
  color: var(--red, #e30613);
  font-weight: 800;
  text-decoration: none;
}

.salon-block__card a:hover {
  text-decoration: underline;
}

.faq-item {
  margin-bottom: 18px;
}

.faq-item details {
  border: 1px solid var(--line, #e3e5e8);
  border-radius: var(--radius, 8px);
  padding: 16px 20px;
  background: var(--paper, #fff);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 17px;
}

.faq-item p {
  margin: 12px 0 0;
}

@media (max-width: 720px) {
  .page-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .page-cta .button {
    justify-content: center;
  }
}
