:root {
  --purple: #26197f;
  --purple-2: #311f93;
  --yellow: #ffcb05;
  --yellow-deep: #ffb800;
  --text: #24243f;
  --muted: #5f6280;
  --card: #ffffff;
  --border: #eceaf5;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #f5f5f5 0%, #e8e8e8 60%, #dedede 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page-wrap {
  max-width: 1040px;
  margin: 0 auto 36px;
  padding: 0 14px;
}

.site-shell,
.content-shell,
.site-footer {
  background: var(--card);
}

.site-shell {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 18px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--purple-2) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: none;
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
  min-width: 0;
  flex-wrap: nowrap;
}

.nav-links a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  white-space: nowrap;
}

.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  font-size: 16px;
  flex: 0 0 32px;
}

.contact-lines {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-lines span,
.contact-lines strong {
  display: block;
  line-height: 1.1;
}

.contact-lines span {
  font-size: 10px;
  opacity: 0.92;
}

.contact-lines strong {
  font-size: 15px;
  font-weight: 700;
}

.content-shell {
  padding: 16px 0 0;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.feature-strip,
.service-card,
.locations-card {
  margin: 0 18px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.feature-item {
  display: flex;
  gap: 14px;
  padding: 18px 14px;
  align-items: flex-start;
}

.feature-item + .feature-item {
  border-left: 1px solid var(--border);
}

.icon-circle {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.feature-item h2,
.service-copy h2,
.section-title {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--purple);
  text-transform: uppercase;
}

.feature-item p,
.service-copy p,
.location-meta p,
.footer-item p {
  margin: 0;
  line-height: 1.5;
  color: var(--text);
}

.service-card {
  display: grid;
  grid-template-columns: 280px 1fr 290px;
  gap: 18px;
  padding: 18px;
  align-items: center;
}

.service-brand img,
.service-photo img,
.location-box img {
  border: 3px solid #ffffff;
  box-shadow: 0 10px 24px rgba(38, 25, 127, 0.18);
}

.service-brand img {
  width: 100%;
  border-radius: 14px;
}

.service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.service-copy p {
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 320px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  color: var(--purple);
  border-radius: 10px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.service-photo img {
  width: 100%;
  height: 135px;
  min-height: 135px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
}

.locations-card {
  padding: 14px 18px 18px;
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 14px;
}

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

.location-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  align-items: center;
}

.location-meta {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.location-meta h3 {
  margin: 0 0 8px;
  color: var(--purple);
  font-size: 18px;
  text-transform: uppercase;
}

.pin {
  font-size: 28px;
  line-height: 1;
}

.nowrap-phone {
  white-space: nowrap;
}

.location-box img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
}

.site-footer {
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.footer-info-bar {
  background: linear-gradient(90deg, var(--purple) 0%, var(--purple-2) 100%);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 14px 18px;
}

.footer-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 6px 12px;
}

.footer-item + .footer-item {
  border-left: 1px solid rgba(255,255,255,0.12);
}

.footer-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex: 0 0 42px;
}

.footer-item h3 {
  margin: 0 0 4px;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-item p,
.footer-item a {
  color: #fff;
  opacity: 0.96;
  font-size: 13px;
}

.footer-bottom-bar {
  background: linear-gradient(180deg, #ffca06 0%, #f5b300 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  font-size: 13px;
  color: #332500;
  text-align: center;
}

.footer-bottom-bar p { margin: 0; }

@media (max-width: 980px) {
  .main-nav {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .menu-toggle { display: inline-flex; }

  .nav-links {
    order: 3;
    width: 100%;
    display: none;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 18px;
    padding-top: 4px;
  }

  .nav-links.open { display: flex; }

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

  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(3),
  .feature-item:nth-child(4) { border-top: 1px solid var(--border); }
  .feature-item:nth-child(3) { border-left: none; }
  .service-card { grid-template-columns: 1fr; }
  .service-brand img { max-width: 280px; }
  .footer-info-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-item:nth-child(3),
  .footer-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.12); }
  .footer-item:nth-child(3) { border-left: none; }
}

@media (max-width: 720px) {
  .page-wrap {
    margin: 0 auto 16px;
    padding: 0 8px;
  }

  .main-nav {
    padding: 10px 12px;
  }

  .nav-contact {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-lines {
    gap: 12px;
    flex-wrap: wrap;
  }

  .contact-lines strong {
    font-size: 13px;
  }

  .feature-strip { grid-template-columns: 1fr; }
  .feature-item + .feature-item { border-left: none; border-top: 1px solid var(--border); }
  .locations-grid { grid-template-columns: 1fr; }
  .location-box { grid-template-columns: 1fr; }
  .footer-info-bar { grid-template-columns: 1fr; }
  .footer-item + .footer-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); }
}

.pdf-promo a {
  display: block;
  border-radius: 14px;
}

.pdf-promo a:hover img {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(38, 25, 127, 0.22);
}

.service-photo img {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}
