:root {
  --blue: #294895;
  --blue-dark: #172f70;
  --blue-light: #eaf0ff;
  --yellow: #f5c85b;
  --ink: #172033;
  --muted: #596273;
  --surface: #f5f7fc;
  --white: #fff;
  --shadow: 0 18px 50px rgba(31, 55, 116, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font: 16px/1.55 "Open Sans", Arial, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.service-container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.service-header { position: sticky; top: 0; z-index: 20; background: rgba(255, 255, 255, 0.94); border-bottom: 1px solid #e8ebf2; backdrop-filter: blur(14px); }
.service-header__inner { min-height: 76px; display: flex; align-items: center; gap: 32px; }
.service-logo img { width: 92px; height: 62px; object-fit: contain; }
.service-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.service-nav a, .service-phone { text-decoration: none; font-weight: 600; }
.service-nav a:hover { color: var(--blue); }
.service-phone { padding: 11px 16px; color: var(--blue); background: var(--blue-light); border-radius: 14px; white-space: nowrap; }

.service-hero { padding: 64px 0 76px; background: radial-gradient(circle at 80% 20%, #eef3ff 0, #eef3ff 18%, transparent 38%), var(--surface); }
.service-hero--green { background: radial-gradient(circle at 80% 20%, #e4f3eb 0, #e4f3eb 18%, transparent 38%), var(--surface); }
.service-hero__grid { display: grid; grid-template-columns: 1.03fr 0.97fr; align-items: center; gap: 68px; }
.service-eyebrow { margin: 0 0 12px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 22px; font-size: clamp(44px, 6vw, 72px); line-height: 1.02; letter-spacing: -.045em; }
h2 { margin-bottom: 32px; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: -.035em; }
.service-lead { max-width: 620px; margin-bottom: 28px; color: var(--muted); font-size: 21px; }
.service-price { display: flex; align-items: baseline; gap: 18px; margin-bottom: 30px; }
.service-price span { color: var(--muted); }
.service-price strong { color: var(--blue-dark); font-size: 32px; }
.service-note { margin: -18px 0 26px; color: var(--muted); font-size: 13px; }
.service-button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; padding: 14px 26px; color: var(--white); background: var(--blue); border-radius: 16px; box-shadow: 0 10px 26px rgba(41, 72, 149, .24); font-weight: 700; text-decoration: none; transition: transform .2s, background .2s; }
.service-button:hover { background: var(--blue-dark); transform: translateY(-2px); }
.service-hero__photo { padding: 18px; background: var(--white); border-radius: 34px; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.service-hero__photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 24px; }

.service-section { padding: 88px 0 96px; }
.service-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-benefits--five { grid-template-columns: repeat(5, 1fr); }
.service-benefits article { min-height: 230px; padding: 26px; background: var(--surface); border: 1px solid #e2e8f6; border-radius: 24px; }
.service-benefits span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 34px; color: var(--blue); background: var(--blue-light); border-radius: 50%; font-weight: 800; }
.service-benefits h3 { margin-bottom: 10px; font-size: 20px; }
.service-benefits p { margin-bottom: 0; color: var(--muted); }

.service-section--soft { background: var(--surface); }
.service-programs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-programs article { padding: 34px; border-radius: 26px; background: var(--surface); border: 1px solid #e2e8f6; }
.service-programs article:last-child { color: #153c2d; background: #e6f3ec; border-color: #d3e8dd; }
.service-programs h3 { margin-bottom: 22px; font-size: 26px; }
.service-programs ul { columns: 2; margin: 0; padding: 0; list-style: none; }
.service-programs li { position: relative; margin-bottom: 9px; padding-left: 20px; }
.service-programs li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }

.service-cta { padding: 0 0 88px; }
.service-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: 48px; color: var(--white); background: linear-gradient(135deg, var(--blue-dark), var(--blue)); border-radius: 30px; box-shadow: var(--shadow); }
.service-cta h2 { max-width: 670px; margin-bottom: 12px; }
.service-cta p { margin-bottom: 0; color: #dfe7ff; }
.service-cta .service-eyebrow { color: var(--yellow); }
.service-button--light { flex: 0 0 auto; color: var(--blue-dark); background: var(--white); box-shadow: none; }
.service-button--light:hover { color: var(--white); }

.service-footer { padding: 38px 0; border-top: 1px solid #e8ebf2; }
.service-footer__inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 28px; align-items: start; }
.service-footer strong { font-size: 20px; }
.service-footer p { margin: 4px 0 0; color: var(--muted); }
.service-footer a { display: block; margin-bottom: 4px; color: var(--blue); text-decoration: none; }
.service-footer address { color: var(--muted); font-style: normal; }

@media (max-width: 860px) {
  .service-header__inner { min-height: 66px; gap: 14px; }
  .service-logo img { width: 72px; height: 48px; }
  .service-nav { display: none; }
  .service-phone { margin-left: auto; padding: 9px 12px; font-size: 14px; }
  .service-hero { padding: 38px 0 54px; }
  .service-hero__grid { grid-template-columns: 1fr; gap: 38px; }
  .service-hero__photo { max-width: 560px; transform: none; }
  .service-benefits { grid-template-columns: repeat(2, 1fr); }
  .service-programs { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .service-container { width: min(1120px, calc(100% - 32px)); }
  h1 { font-size: 43px; }
  h2 { font-size: 31px; }
  .service-lead { font-size: 18px; }
  .service-price { justify-content: space-between; gap: 10px; }
  .service-price strong { font-size: 27px; }
  .service-button { width: 100%; }
  .service-section { padding: 64px 0 70px; }
  .service-benefits { grid-template-columns: 1fr; }
  .service-benefits article { min-height: 0; }
  .service-programs article { padding: 28px; }
  .service-programs ul { columns: 1; }
  .service-cta { padding-bottom: 64px; }
  .service-cta__inner { display: block; padding: 32px 24px; }
  .service-cta .service-button { margin-top: 24px; }
  .service-footer__inner { grid-template-columns: 1fr; gap: 18px; }
}
