:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef4fa;
  --text: #19324a;
  --muted: #667b8f;
  --line: #dbe4ec;
  --navy: #173c5a;
  --blue: #1e9ce3;
  --blue-dark: #0f86ca;
  --container: 1180px;
  --shadow: 0 18px 42px rgba(23, 60, 90, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  flex-shrink: 0;
}

.menu-panel,
.main-nav,
.header-actions,
.hero-actions,
.contact-cta-list,
.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-panel {
  margin-left: auto;
}

.main-nav {
  flex-wrap: wrap;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: #476076;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.85rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 320px;
  display: grid;
  gap: 6px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.18s ease;
  z-index: 120;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-dropdown-menu a:hover {
  background: var(--surface-soft);
}

.main-nav a,
.footer-links a {
  color: #476076;
  font-weight: 700;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--navy);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}

.button-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.78);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  border-radius: 999px;
  transition: 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(23, 60, 90, 0.86) 0%, rgba(23, 60, 90, 0.76) 34%, rgba(23, 60, 90, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 760px;
  padding: 84px 0;
}

.hero-copy {
  max-width: 760px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: #dbeaf7;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
}

.section-eyebrow {
  color: var(--blue-dark);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  letter-spacing: -0.05em;
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.18rem;
}

.subpage-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

.hero-text,
.lead,
.section-copy p,
.article-card p,
.article-card li,
.method-card p,
.process-card p,
.process-card li,
.quote-card p,
.accordion-body p,
.accordion-body li,
.site-footer p,
.form-note,
.tile-card li {
  color: var(--muted);
}

.hero-text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.94);
  max-width: 68ch;
  font-size: 1.05rem;
}

.hero-rating {
  margin: 20px 0 22px;
  font-weight: 700;
}

.hero-points {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 24px;
}

.hero-points div {
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.alt-section {
  background: #eef3f9;
}

.section-head {
  max-width: 820px;
  margin-bottom: 24px;
}

.compact-head {
  max-width: 760px;
}

.article-layout {
  display: grid;
  gap: 24px;
}

.split-grid,
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.article-card,
.service-card,
.method-card,
.process-card,
.quote-card,
.contact-form,
.benefit-item,
.tile-card,
.accordion-card,
.mini-visual {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-card,
.method-card,
.process-card,
.quote-card,
.tile-card {
  padding: 24px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 24px 24px;
}

.service-card h3 {
  margin-top: 8px;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.service-card p {
  margin: 14px 0 0;
  max-width: 32ch;
  font-size: 1rem;
}

.service-card-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f2f8fd 0%, #e4f1fb 100%);
  border: 1px solid #cfe1f1;
  box-shadow: 0 10px 24px rgba(30, 156, 227, 0.12);
}

.service-card-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: 0.96;
  filter: invert(21%) sepia(31%) saturate(1328%) hue-rotate(173deg) brightness(93%) contrast(92%);
}

.mini-visual {
  overflow: hidden;
}

.mini-visual img {
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.service-grid,
.method-grid,
.process-grid,
.quote-grid,
.tiles-grid,
.services-overview-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tiles-grid {
  grid-template-columns: repeat(3, 1fr);
}

.method-grid,
.process-grid {
  grid-template-columns: repeat(2, 1fr);
}

.quote-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 20px 14px;
  border-radius: 24px;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid #fff;
  box-shadow: 0 10px 24px rgba(23, 60, 90, 0.12);
}

.review-meta {
  display: grid;
  gap: 2px;
}

.review-meta strong {
  font-size: 1.12rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.review-meta span {
  color: #557089;
  line-height: 1.2;
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.review-stars {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.review-time {
  font-size: 0.95rem;
  color: #6e8498;
}

.review-card p {
  margin: 0;
  color: #2f4d68;
  font-size: 1.02rem;
  line-height: 1.75;
}

.review-card-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #dce6ef;
}

.review-foot-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
}

.review-foot-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: invert(19%) sepia(26%) saturate(1212%) hue-rotate(173deg) brightness(95%) contrast(91%);
}

.services-overview-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.location-link-card {
  display: block;
  padding: 22px 18px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.45;
  transition: 0.18s ease;
}

.location-link-card:hover {
  transform: translateY(-2px);
  border-color: #b6cfe3;
}

.services-overview-card {
  display: block;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.18s ease;
}

.services-overview-card:hover {
  transform: translateY(-2px);
}

.services-overview-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.services-overview-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 18px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.link-card {
  transition: 0.18s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: #bfd7ea;
}

.link-card span,
.inline-phone {
  display: inline-block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--blue-dark);
  font-weight: 800;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-item {
  padding: 18px 20px;
  font-weight: 700;
  color: var(--navy);
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--navy);
  font-weight: 800;
}

.quote-card footer {
  margin-top: 16px;
  color: var(--navy);
  font-weight: 700;
}

.accordion-list {
  display: grid;
  gap: 14px;
}

.accordion-card {
  padding: 20px 22px;
}

.accordion-card summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
}

.accordion-body {
  margin-top: 16px;
}

.accordion-body ul,
.article-card ul,
.tile-card ul,
.contact-list {
  margin: 0 0 18px;
  padding-left: 22px;
}

.accordion-body li,
.article-card li,
.tile-card li,
.contact-list li {
  margin-bottom: 8px;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 24px;
}

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

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.subpage-main {
  min-height: calc(100vh - 122px);
}

.subpage-hero {
  padding-bottom: 40px;
}

.site-footer {
  padding: 54px 0 48px;
  background: #173f61;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(180px, 1fr));
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 20px;
}

.footer-logo {
  width: min(250px, 100%);
  height: auto;
  object-fit: contain;
}

.footer-brand strong,
.footer-title {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
  color: #fff;
}

.footer-brand p,
.footer-copy,
.footer-column p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.footer-column {
  display: grid;
  gap: 14px;
}

.footer-list {
  display: grid;
  gap: 12px;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.footer-list a:hover {
  color: #fff;
}

.footer-contact-block {
  display: grid;
  gap: 6px;
}

.sticky-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 95;
  grid-template-columns: 72px 72px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(23, 60, 90, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(14, 31, 48, 0.3);
  backdrop-filter: blur(12px);
}

.sticky-call,
.sticky-mail,
.sticky-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 18px;
  border-radius: 22px;
  font-weight: 800;
}

.sticky-call,
.sticky-mail {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.95rem;
}

.sticky-primary {
  background: #ff991a;
  color: #fff;
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .menu-panel {
    position: fixed;
    top: 122px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 12px 18px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .menu-panel.is-open {
    display: flex;
  }

  .main-nav,
  .header-actions {
    display: grid;
    gap: 10px;
  }

  .main-nav a,
  .nav-dropdown-toggle,
  .header-actions a {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    box-shadow: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .service-grid,
  .tiles-grid,
  .quote-grid,
  .services-overview-grid,
  .locations-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .brand-logo {
    width: 92px;
    height: 92px;
  }

  .header-inner {
    min-height: 92px;
  }

  .menu-panel {
    top: 92px;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding: 42px 0 54px;
  }

  h1 {
    font-size: 2.8rem;
    max-width: 100%;
  }

  .hero-actions,
  .contact-cta-list,
  .split-grid,
  .contact-box,
  .service-grid,
  .tiles-grid,
  .method-grid,
  .process-grid,
  .quote-grid,
  .services-overview-grid,
  .locations-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section {
    padding: 52px 0;
  }

  .article-card,
  .service-card,
  .method-card,
  .process-card,
  .quote-card,
  .tile-card,
  .accordion-card,
  .contact-form {
    padding: 20px;
  }

  .site-footer {
    padding: 42px 0 118px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand strong,
  .footer-title {
    font-size: 1.65rem;
  }

  .sticky-bar {
    display: grid;
  }
}


:root {
  --bg: #f8f5f4;
  --surface: #ffffff;
  --surface-soft: #f7eeee;
  --text: #181313;
  --muted: #6f6060;
  --line: #ead8d8;
  --navy: #181313;
  --blue: #d32f2f;
  --blue-dark: #b71c1c;
  --accent: #d32f2f;
  --accent-dark: #a91717;
  --shadow: 0 18px 42px rgba(24, 19, 19, 0.10);
}
body { background: linear-gradient(180deg, #fbf8f7 0%, #f5f0ef 100%); }
.brand-mark, .service-card-icon-wrap, .footer-brand-mark {
  background: linear-gradient(180deg, #fff5f5 0%, #f6e5e5 100%);
  border-color: #f0caca;
  box-shadow: 0 10px 24px rgba(211, 47, 47, 0.12);
}
.brand-mark svg, .footer-brand-mark svg { color: var(--navy); }
.site-header { background: rgba(255, 251, 249, 0.96); }
.header-inner {
  justify-content: space-between;
  flex-wrap: nowrap;
}
.brand {
  gap: 14px;
  min-width: 0;
}
.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.brand-text strong,
.brand-text span,
.main-nav a,
.nav-dropdown-toggle,
.button {
  white-space: nowrap;
}
.brand-text strong {
  font-size: 1.02rem;
  line-height: 1.1;
}
.brand-text span {
  font-size: 0.98rem;
  line-height: 1.2;
  color: #181313;
}
.menu-panel {
  margin-left: auto;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
  gap: 26px;
}
.main-nav {
  flex-wrap: nowrap;
  gap: 18px;
}
.header-actions {
  flex-shrink: 0;
}
.main-nav a, .footer-links a, .nav-dropdown-toggle { color: #4e6478; }
.main-nav a:hover, .footer-links a:hover, .nav-dropdown-toggle:hover { color: #181313; }
.hero-overlay { background: linear-gradient(90deg, rgba(24, 19, 19, 0.88) 0%, rgba(24, 19, 19, 0.78) 34%, rgba(24, 19, 19, 0.32) 100%); }
.hero-media img { object-position: center 62%; }
.hero-copy h1 { max-width: 11.8ch; }
.hero-copy { max-width: 740px; }
.hero-rating { color: rgba(255, 255, 255, 0.98); }
.hero-points div { color: #181313; }
.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.section-eyebrow { color: var(--blue-dark); }
.button-accent { background: var(--accent); }
.button-accent:hover { background: var(--accent-dark); }
.review-avatar.a1, .review-avatar.a2, .review-avatar.a3 { background: linear-gradient(135deg, #c62828, #181313); }
.process-card span.step-number { background: var(--accent); }
.site-footer { background: #140f0f; }
.site-footer a, .site-footer p, .site-footer li, .site-footer .footer-note { color: #f0dddd; }
.site-footer h3, .site-footer h4, .site-footer strong { color: #fff6f6; }
.button-light { background: #fff; border-color: var(--line); }

@media (max-width: 980px) {
  .header-inner {
    min-height: 96px;
    justify-content: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu-panel {
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 18px 14px 22px;
    background: rgba(255, 251, 249, 0.98);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(24, 19, 19, 0.12);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    margin-left: 0;
  }

  .menu-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav,
  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav a,
  .nav-dropdown-toggle,
  .header-actions .button {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    color: #181313;
    justify-content: flex-start;
  }

  .header-actions .button-dark {
    justify-content: center;
    background: #181313;
    color: #fff;
    border-color: #181313;
  }

  .nav-dropdown {
    display: grid;
    gap: 10px;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    box-shadow: none;
    border-radius: 18px;
    background: #fffaf8;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 112px 0 68px;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 10vw, 4.4rem);
    max-width: 8.8ch;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .brand-text strong {
    font-size: 1.1rem;
  }

  .brand-text span {
    font-size: 0.9rem;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-content {
    padding: 92px 0 52px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
    max-width: 8.2ch;
  }

  .hero-text,
  .hero-rating {
    font-size: 0.98rem;
  }

  .hero-points div {
    padding: 14px 16px;
  }
}

