:root {
  --bg: #f3f5f8;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-warm: #fff7ef;
  --text: #1f2937;
  --muted: #5f6b7a;
  --line: #d9e0e7;
  --line-soft: #e7edf3;
  --primary: #16324f;
  --primary-dark: #10263b;
  --accent: #f28c28;
  --accent-dark: #d97618;
  --success: #1f7a1f;
  --danger: #b42318;
  --radius-lg: 24px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-page: 0 20px 60px rgba(16, 38, 59, 0.06);
  --shadow-card: 0 10px 28px rgba(16, 38, 59, 0.06);
  --shadow-soft: 0 6px 16px rgba(16, 38, 59, 0.04);
  --container: 1180px;
  --content: 820px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--accent-dark);
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.site-logo__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-logo__subtitle {
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted);
}

.site-nav {
  margin-left: auto;
}

.site-menu {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu a {
  font-weight: 600;
  color: var(--text);
}

.site-menu a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-weight: 700;
  color: var(--primary);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--primary);
}

/* Buttons */
.btn,
.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--primary);
  border: 1px solid #fff;
}

.btn--light:hover {
  background: #f3f5f8;
  color: var(--primary);
}

.btn-call {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-call:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-call::before {
  content: "☎";
  margin-right: 6px;
}

/* Main layout */
.site-main {
  padding: 32px 0 72px;
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 0.92rem;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--muted);
}

.page-shell {
  background: var(--surface);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-page);
}

.page-title {
  margin: 0 0 24px;
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--primary);
}

.content-zone {
  max-width: 100%;
}

/* allow section-based homepage content to use full article width */
.content-zone > section,
.content-zone > .home-hero,
.content-zone > .home-services,
.content-zone > .home-situations,
.content-zone > .home-directions,
.content-zone > .home-advantages,
.content-zone > .home-process,
.content-zone > .home-articles,
.content-zone > .home-contacts {
  max-width: none;
}

.content-zone > section .container {
  width: 100%;
  margin: 0;
}

/* Typography inside %content% */
.content-zone h2,
.content-zone h3,
.content-zone h4 {
  margin-top: 2.1em;
  margin-bottom: 0.8em;
  line-height: 1.3;
  color: var(--primary);
}

.content-zone h2 { font-size: 1.8rem; }
.content-zone h3 { font-size: 1.4rem; }
.content-zone h4 { font-size: 1.15rem; }

.content-zone p {
  margin: 0 0 1.1em;
}

.content-zone ul,
.content-zone ol {
  margin: 0 0 1.2em 1.2em;
  padding: 0;
}

.content-zone li { margin-bottom: 0.5em; }
.content-zone strong { color: #111827; }

.content-zone blockquote {
  margin: 1.5em 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #fff8f2;
}

.content-zone table {
  display: block;
  width: 100%;
  margin: 1.5em 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  border-collapse: collapse;
}

.content-zone tr { border-bottom: 1px solid var(--line); }

.content-zone th,
.content-zone td {
  min-width: 160px;
  padding: 14px 16px;
  text-align: left;
}

.content-zone th {
  background: #f3f5f8;
  color: var(--primary);
}

.content-zone img { margin: 1.5em 0; }

.content-zone a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* Homepage sections */
.home-hero,
.home-services,
.home-situations,
.home-directions,
.home-advantages,
.home-process,
.home-articles,
.home-contacts {
  margin-top: 64px;
}

.home-hero { margin-top: 16px; }

.home-hero__inner {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f5f8fc);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.home-hero__inner::before {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--accent);
}

.home-hero__eyebrow {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(22, 50, 79, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.home-hero__title {
  margin: 0 0 14px;
  max-width: 690px;
  font-size: 2rem;
  line-height: 1.18;
  color: var(--primary);
}

.home-hero__text {
  max-width: 660px;
  margin: 0 0 18px;
  font-size: 1rem;
  color: var(--muted);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.home-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-metric {
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.home-metric__value {
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

.home-metric__label {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.home-section-head {
  position: relative;
  margin-bottom: 24px;
  padding-top: 12px;
}

.home-section-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.home-section-head h2 {
  margin: 0 0 8px;
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--primary);
}

.home-section-head p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--muted);
}

.home-services {
  padding-top: 28px;
  border-top: 2px solid rgba(242, 140, 40, 0.8);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  padding: 22px;
  border: 1px solid #dde5ec;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: #cfd9e3;
  box-shadow: 0 16px 36px rgba(16, 38, 59, 0.12);
}

.service-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 24px;
  padding: 0 8px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(242, 140, 40, 0.12);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--primary);
}

.service-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.service-card__link {
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
}

.service-card__link:hover {
  text-decoration: underline;
}

.home-situations__box,
.home-advantages,
.home-contacts {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.home-advantages {
  background: var(--surface-soft);
}

.home-contacts {
  background: var(--surface-warm);
  border-top: 2px solid rgba(242, 140, 40, 0.8);
}

.situations-grid,
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.situation-card,
.advantage-item,
.direction-item,
.article-card,
.home-contacts__card,
.home-contacts__aside {
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.situation-card h3,
.direction-item h3,
.article-card h3,
.home-contacts__card h3,
.home-contacts__aside h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--primary);
}

.situation-card p,
.direction-item p,
.article-card p,
.home-contacts__card p,
.home-contacts__aside p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.home-directions .directions-grid,
.home-articles .articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.advantage-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
}

.advantage-item__icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(242, 140, 40, 0.12);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.advantage-item__body h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  color: var(--primary);
}

.advantage-item__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-process {
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: var(--shadow-card);
}

.home-process .home-section-head::before { background: rgba(242, 140, 40, 0.95); }
.home-process .home-section-head h2,
.home-process .home-section-head p { color: #fff; }
.home-process .home-section-head p { opacity: 0.8; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.process-step {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.process-step__num {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.3;
  color: #fff;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

.article-card h3 a {
  color: var(--primary);
  text-decoration: none;
}

.article-card h3 a:hover { color: var(--accent-dark); }

.article-card p { margin-bottom: 12px; }

.article-card__link {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.article-card__link:hover { text-decoration: underline; }

.home-contacts__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.home-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.home-contact-list a {
  font-weight: 700;
  text-decoration: none;
}

.home-address {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.home-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 14px;
}

.home-inline-links a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* CTA */
.cta-block {
  margin-top: 32px;
}

.cta-block__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: var(--shadow-card);
}

.cta-block__content {
  max-width: 640px;
}

.cta-block__content h2 {
  margin: 0 0 10px;
  font-size: 1.65rem;
  line-height: 1.2;
  color: #fff;
}

.cta-block__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.cta-block__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 220px;
  flex-shrink: 0;
}

.cta-block__actions .btn,
.cta-block__actions .btn-call {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  line-height: 1.2;
  white-space: normal;
}

.cta-phone {
  color: #fff;
  font-weight: 700;
}

/* Form */
.request-form {
  margin-top: 24px;
}

.request-form__inner {
  padding: 32px;
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.request-form__head h2 {
  margin: 0 0 10px;
  color: var(--primary);
}

.request-form__head p {
  margin: 0 0 24px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field--full { grid-column: 1 / -1; }

.form-field--hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

label {
  font-weight: 600;
  color: var(--primary);
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.12);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-note.ok { color: var(--success); }
.form-note.bad { color: var(--danger); }

.form-agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
  color: var(--muted);
}

.form-agree input {
  width: auto;
  margin-top: 3px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
}

.footer-title {
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--primary);
}

.footer-text {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li + li { margin-top: 10px; }

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Responsive */
@media (max-width: 1100px) {
  .site-menu { gap: 14px; }
  .header-phone { display: none; }
  .home-directions .directions-grid,
  .home-articles .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: 14px 0;
  }

  .burger {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 10;
    margin: 12px 0 0;
  }

  .site-nav.is-open { display: block; }

  .site-menu {
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .header-actions { display: none; }

  .page-shell,
  .request-form__inner { padding: 24px; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero__metrics,
  .services-grid,
  .situations-grid,
  .advantages-grid,
  .home-directions .directions-grid,
  .home-articles .articles-grid,
  .home-contacts__grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-block__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }

  .cta-block__actions {
    width: 100%;
    margin-top: 14px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-main {
    padding: 20px 0 56px;
  }

  .page-shell {
    padding: 20px;
    border-radius: 20px;
  }

  .page-title {
    font-size: 1.7rem;
  }

  .content-zone h2 { font-size: 1.45rem; }
  .content-zone h3 { font-size: 1.18rem; }

  .home-hero,
  .home-services,
  .home-situations,
  .home-directions,
  .home-advantages,
  .home-process,
  .home-articles,
  .home-contacts {
    margin-top: 44px;
  }

  .home-hero__inner,
  .home-situations__box,
  .home-advantages,
  .home-process,
  .home-contacts,
  .request-form__inner {
    padding: 20px;
    border-radius: 16px;
  }

  .home-hero__title {
    font-size: 1.42rem;
    line-height: 1.25;
  }

  .home-hero__text {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .home-section-head h2 {
    font-size: 1.35rem;
  }

  .service-card,
  .situation-card,
  .advantage-item,
  .direction-item,
  .article-card,
  .home-contacts__card,
  .home-contacts__aside,
  .process-step {
    padding: 18px;
    border-radius: 14px;
  }

  .service-card p,
  .situation-card p,
  .direction-item p,
  .advantage-item__body p,
  .article-card p,
  .process-step p {
    font-size: 0.9rem;
  }

  .process-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .process-step {
    min-width: 220px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .cta-block__content h2 {
    font-size: 1.35rem;
  }

  .cta-block__actions a {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .site-logo {
    min-width: 0;
    max-width: calc(100% - 56px);
  }

  .site-logo__title {
    font-size: 0.95rem;
  }

  .site-logo__subtitle {
    font-size: 0.76rem;
  }

  .home-hero__actions {
    flex-direction: column;
  }

  .home-hero__actions .btn,
  .home-hero__actions .btn--light {
    width: 100%;
  }

  .home-hero__metrics {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-main {
    padding-bottom: 40px;
  }
}
@media (max-width: 768px){
  .process-grid{
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .process-grid::-webkit-scrollbar{
    display: none;
  }

  .process-step{
    flex: 0 0 220px;
    min-width: 240px;
    scroll-snap-align: start;
  }
}
/* mobile menu */

@media (max-width: 860px){

  .header-inner{
    flex-wrap: wrap;
  }

  .burger{
    display:block;
    margin-left:auto;
  }

  .site-nav{
    display:none;
    width:100%;
    order:10;
    margin-top:12px;
  }

  .site-nav.is-open{
    display:block;
  }

  .site-menu{
    display:flex;
    flex-direction:column;
    gap:12px;
    padding-top:12px;
    border-top:1px solid #e3e9f0;
  }

  .header-actions{
    display:none;
  }

}
.services-page{
  margin-top: 24px;
}

.page-section-head{
  margin-bottom: 28px;
  position: relative;
  padding-left: 18px;
}

.page-section-head::before{
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 34px;
  border-radius: 6px;
  background: var(--accent);
}

.page-section-head h2{
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 1.9rem;
}

.page-section-head p{
  margin: 0;
  max-width: 760px;
  color: var(--muted);
}

.services-page__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-entry{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(16,38,59,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-entry:hover{
  transform: translateY(-3px);
  border-color: #ccd6e0;
  box-shadow: 0 14px 30px rgba(16,38,59,.09);
}

.service-entry__num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 8px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(242,140,40,.12);
  color: var(--accent-dark);
  font-size: .8rem;
  font-weight: 700;
}

.service-entry h3{
  margin: 0 0 12px;
  font-size: 1.1rem;
  line-height: 1.35;
}

.service-entry h3 a{
  color: var(--primary);
  text-decoration: none;
}

.service-entry h3 a:hover{
  color: var(--accent-dark);
}

.service-entry p{
  margin: 0 0 14px;
  color: var(--muted);
}

.service-entry__link{
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
}

.service-entry__link:hover{
  text-decoration: underline;
}

@media (max-width: 768px){
  .services-page__grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-entry{
    padding: 20px;
  }

  .page-section-head h2{
    font-size: 1.5rem;
  }
}
.page-intro{
max-width:720px;
margin-bottom:40px;
color:#5f6f82;
line-height:1.6;
}

.articles-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.article-card{
background:#fff;
padding:22px;
border-radius:14px;
border:1px solid #e6edf3;
text-decoration:none;
color:inherit;
transition:all .25s ease;
}

.article-card h3{
font-size:16px;
margin-bottom:10px;
}

.article-card p{
font-size:14px;
color:#6b7a8c;
margin-bottom:14px;
}

.article-card span{
color:#f07f1a;
font-size:13px;
font-weight:600;
}

.article-card:hover{
transform:translateY(-4px);
box-shadow:0 12px 30px rgba(16,38,59,.08);
}
@media (max-width:900px){

.articles-grid{
grid-template-columns:1fr;
}

}
.content-zone h2{
  margin-top:32px;
  margin-bottom:12px;
  font-size:1.4rem;
}

.content-zone ul{
  margin:16px 0;
  padding-left:18px;
}

.content-zone ul li{
  margin-bottom:8px;
}

.content-zone p{
  line-height:1.7;
  margin-bottom:16px;
  color:#5c6a79;
}
.contacts-page h2{
  margin-top:24px;
  font-size:1.2rem;
}

.contacts-page a{
  color:var(--accent);
  text-decoration:none;
  font-weight:500;
}

.contacts-page a:hover{
  text-decoration:underline;
}