:root {
  --red: #c8000a;
  --red-dark: #a90008;
  --gold: #e2a51b;
  --ink: #101417;
  --muted: #64686b;
  --line: #e3e4e4;
  --soft: #f5f5f3;
  --white: #fff;
  --radius: 12px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f3f4f3;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong,
.button {
  letter-spacing: -.025em;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: #000;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-shell {
  width: min(calc(100% - 36px), 1320px);
  margin: 18px auto;
  overflow: hidden;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 28px rgba(10, 15, 18, .13);
}

.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #eeeeec;
}

.header-inner {
  min-height: 78px;
  max-width: var(--container);
  margin: auto;
  padding: 12px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
}

.brand-shield {
  width: 44px;
  height: 49px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: linear-gradient(#fff, #eee);
  border: 2px solid #34383a;
  border-radius: 8px 8px 15px 15px;
  box-shadow: inset 0 0 0 3px #fff;
  font-size: 12px;
  transform: perspective(50px) rotateX(-2deg);
}

.brand-shield b {
  padding: 3px;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  line-height: .98;
}

.brand-name strong {
  letter-spacing: -.04em;
}

.brand-name small {
  margin-top: 3px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2vw, 31px);
  font-size: 12px;
  font-weight: 700;
}

.main-nav a {
  padding: 12px 0;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
}

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

.header-contact {
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: var(--red);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(200, 0, 10, .18);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: #111;
  transition: .2s ease;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(0, 54%) minmax(0, 46%);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 56% 48%, rgba(184, 0, 8, .48), transparent 28%),
    linear-gradient(108deg, #030303 0 45%, #250004 69%, #080808 100%);
}

.hero-beams {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-beams::before,
.hero-beams::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 160%;
  top: -31%;
  left: 50%;
  background: linear-gradient(transparent, #f10d19, transparent);
  box-shadow: 0 0 16px #d1000d;
  transform: rotate(38deg);
}

.hero-beams::after {
  left: 59%;
  opacity: .38;
}

.hero-copy {
  z-index: 2;
  align-self: center;
  padding: 42px 22px 36px 50px;
}

.hero h1 {
  max-width: 600px;
  margin-bottom: 12px;
  font-size: clamp(39px, 4.1vw, 58px);
  line-height: .98;
  font-weight: 800;
}

.hero h1 span {
  color: var(--gold);
}

.hero-copy > p:not(.hero-trust) {
  max-width: 480px;
  margin-bottom: 22px;
  color: #f2f2f2;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s, background-color .2s, color .2s;
}

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

.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 5px 18px rgba(200, 0, 10, .28);
}

.button-outline-light {
  color: #fff;
  background: rgba(0, 0, 0, .12);
  border-color: rgba(255, 255, 255, .72);
}

.button-outline {
  color: #17191a;
  background: #fff;
  border-color: #bfc1c2;
}

.hero-trust {
  margin: 24px 0 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.hero-trust span {
  margin-right: 7px;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(142px, 38%) minmax(0, 62%);
  align-items: stretch;
}

.hero-photo {
  min-width: 0;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: 58% center;
}

.experience-badge {
  z-index: 2;
  width: 180px;
  max-width: calc(100% - 10px);
  margin: auto -25px auto auto;
  padding: 22px 15px 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #17120a;
  background: linear-gradient(145deg, #fffdf2, #ead29c);
  border: 4px double #a56e14;
  border-radius: 44% 44% 48% 48% / 14% 14% 36% 36%;
  box-shadow: 0 9px 28px rgba(0, 0, 0, .4), inset 0 0 0 4px #fff8df;
  text-align: center;
}

.badge-top {
  font-size: 13px;
  font-weight: 900;
}

.experience-badge strong {
  color: #b77b14;
  font-size: 72px;
  line-height: .86;
}

.badge-years {
  font-size: 23px;
  font-weight: 900;
}

.badge-ribbon {
  width: calc(100% + 44px);
  margin-top: 6px;
  padding: 5px 4px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 4px 0 #760007;
  font-size: 13px;
  font-weight: 900;
}

.badge-stars {
  margin-top: 10px;
  color: #af7310;
  letter-spacing: 6px;
}

.stats {
  max-width: var(--container);
  margin: auto;
  padding: 18px 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.stat {
  min-height: 88px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid #d6d7d6;
}

.stat:last-child {
  border-right: 0;
}

.line-icon {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 40px;
  line-height: 1;
}

.stat small,
.stat p {
  display: block;
  margin: 0;
  color: #343738;
  font-size: 11px;
  line-height: 1.25;
}

.stat strong {
  display: block;
  font-size: 22px;
  line-height: 1.05;
}

.content-wrap {
  max-width: var(--container);
  margin: auto;
  padding: 0 24px;
  background: #fff;
}

.section {
  padding: 38px 0 44px;
  border-bottom: 1px solid #e8e8e6;
}

.section-heading {
  margin-bottom: 18px;
}

.eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.section h2 {
  margin-bottom: 14px;
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.08;
}

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

.service-card {
  min-height: 180px;
  padding: 21px 15px 17px;
  text-align: center;
  background: linear-gradient(#fff, #fbfbfa);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.service-card:nth-child(n+5) {
  transform: translateX(50%);
}

.service-icon {
  min-height: 55px;
  display: grid;
  place-items: center;
  color: #25292b;
  font-size: 42px;
  text-shadow: 2px 2px 0 rgba(226, 165, 27, .65);
}

.service-card h3 {
  margin: 6px 0 5px;
  font-size: 15px;
}

.service-card p {
  margin: 0;
  color: #3f4345;
  font-size: 12px;
  line-height: 1.38;
}

.services-more {
  display: none;
  width: max-content;
  margin: 15px auto 0;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, .65fr);
  align-items: center;
  gap: 56px;
}

.about-copy p {
  max-width: 745px;
  margin-bottom: 12px;
  color: #34383a;
  font-size: 13px;
}

.check-list {
  margin: 19px 0 20px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 28px;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 10px;
}

.experience-panel {
  min-height: 255px;
  padding: 27px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #b40008;
  background: #fffdf8;
  border: 2px solid var(--red);
  border-radius: 13px;
  text-align: center;
}

.experience-panel > small {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-panel > strong {
  font-size: 24px;
}

.laurel-row {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.laurel-row > span {
  color: var(--gold);
  font-size: 32px;
  writing-mode: vertical-lr;
}

.laurel-row div {
  display: flex;
  flex-direction: column;
}

.laurel-row small {
  font-size: 11px;
  font-weight: 900;
}

.laurel-row b {
  font-size: 27px;
}

.laurel-row em {
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.feature-grid article {
  padding: 9px 17px;
  text-align: center;
}

.feature-grid article > span {
  min-height: 46px;
  display: block;
  color: var(--red);
  font-size: 38px;
}

.feature-grid h3 {
  margin: 5px 0;
  font-size: 13px;
}

.feature-grid p {
  margin: 0;
  color: #55595b;
  font-size: 11px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
}

.gallery-grid figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #eee;
  border-radius: 9px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-more {
  width: max-content;
  margin: 14px auto 0;
}

.gallery-dots {
  display: none;
}

.process-heading {
  text-align: center;
}

.process-list {
  margin: 29px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  padding: 0 26px;
  text-align: center;
}

.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 19px;
  left: calc(50% + 35px);
  width: calc(100% - 70px);
  border-top: 1px dashed #aeb0b1;
}

.step-number {
  position: relative;
  z-index: 2;
  width: 41px;
  height: 41px;
  margin: auto auto 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 7px;
  font-size: 14px;
}

.process-list p {
  margin: 0;
  color: #464a4b;
  font-size: 11px;
}

.trust-banner {
  min-height: 90px;
  margin: 0;
  padding: 18px 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(110deg, #090b0d, #1d1e1f);
  border-radius: 12px;
}

.trust-shield {
  width: 51px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 3px solid var(--gold);
  border-radius: 10px 10px 18px 18px;
  font-size: 22px;
}

.trust-banner strong {
  max-width: 620px;
  font-size: 17px;
}

.people-mark {
  color: #666b6d;
  font-size: 52px;
}

.contact-faq {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 25px;
  border-bottom: 0;
}

.location-card,
.faq {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.location-card {
  display: flex;
  gap: 20px;
}

.location-symbol {
  color: var(--red);
  font-size: 50px;
  line-height: 1;
}

.dark-eyebrow {
  color: #282b2c;
}

.location-card h2 {
  margin: 4px 0 12px;
  font-size: 18px;
  text-transform: uppercase;
}

.location-card p {
  margin: 0;
  color: #45494a;
  font-size: 12px;
}

.faq-item {
  margin-top: 8px;
  border: 1px solid #dfe0df;
  border-radius: 6px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 41px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #191b1c;
  background: #fff;
  border: 0;
  text-align: left;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.faq-item button span {
  font-size: 18px;
  transition: transform .2s;
}

.faq-item button[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 13px 12px;
  color: #555;
  background: #fff;
  font-size: 12px;
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  max-width: 100%;
  min-height: 116px;
  padding: 21px max(36px, calc((100% - var(--container)) / 2 + 28px));
  display: grid;
  grid-template-columns: auto 1fr minmax(260px, 320px);
  align-items: center;
  gap: 24px;
  color: #fff;
  background: linear-gradient(110deg, #a70008, #d0000c 58%, #a40008);
}

.cta-shield {
  width: 62px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff;
  border: 4px double #303436;
  border-radius: 10px 10px 21px 21px;
  font-weight: 900;
}

.final-copy h2 {
  margin-bottom: 4px;
  font-size: 25px;
}

.final-copy p {
  max-width: 540px;
  margin: 0;
  font-size: 13px;
}

.final-actions {
  display: grid;
  gap: 8px;
}

.final-actions a {
  min-height: 38px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #17191a;
  background: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.final-actions a span {
  margin-right: 7px;
  color: #10a84c;
}

.final-actions a:last-child span {
  color: var(--red);
}

.site-footer {
  padding: 34px max(36px, calc((100% - var(--container)) / 2 + 28px)) 18px;
  color: #fff;
  background: #101519;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr 1.05fr;
}

.footer-brand,
.footer-group {
  min-width: 0;
  padding: 0 28px;
  border-right: 1px solid #3a3e40;
}

.footer-brand {
  padding-left: 0;
}

.footer-group:last-child {
  padding-right: 0;
  border-right: 0;
}

.brand-light .brand-name {
  color: #fff;
}

.footer-brand p {
  max-width: 225px;
  margin: 18px 0 14px;
  color: #e0e2e2;
  font-size: 12px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #777b7d;
  border-radius: 7px;
}

.footer-group-toggle {
  width: 100%;
  margin-bottom: 14px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  text-align: left;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-group-toggle span {
  display: none;
}

.footer-group-content {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #d8dadb;
  font-size: 11px;
}

.footer-group-content a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact {
  gap: 13px;
}

.copyright {
  margin: 28px 0 0;
  padding-top: 15px;
  color: #8f9496;
  border-top: 1px solid #292f32;
  font-size: 10px;
  text-align: center;
}

@media (min-width: 1100px) {
  .services-about-layout {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 36px;
  }

  .services-about-layout .section {
    padding-top: 40px;
  }

  .services-section .service-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
  }

  .services-section .service-card {
    min-height: 142px;
    padding: 12px 8px;
  }

  .services-section .service-icon {
    min-height: 42px;
    font-size: 32px;
  }

  .services-section .service-card h3 {
    font-size: 12px;
  }

  .services-section .service-card p {
    font-size: 10px;
  }

  .about-section {
    grid-template-columns: minmax(0, 1.45fr) minmax(190px, .7fr);
    align-items: start;
    gap: 25px;
  }

  .about-section h2 {
    font-size: 24px;
  }

  .about-copy p {
    font-size: 11px;
  }

  .about-section .check-list {
    font-size: 10px;
    gap: 8px 18px;
  }

  .about-section .experience-panel {
    min-height: 225px;
    padding: 20px 10px;
  }
}

@media (max-width: 1099px) {
  .main-nav {
    gap: 14px;
  }

  .header-contact {
    padding-inline: 11px;
  }

  .hero {
    grid-template-columns: 52% 48%;
  }
}

@media (max-width: 900px) {
  .header-phone {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 72px 18px auto;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
  }

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

  .main-nav a {
    min-height: 44px;
    padding: 12px 8px;
    border-bottom: 1px solid #eee;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: block;
  }

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

  .hero-copy {
    padding: 38px 35px 26px;
    text-align: center;
  }

  .hero h1,
  .hero-copy > p:not(.hero-trust) {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 330px;
    grid-template-columns: 37% 63%;
  }

  .experience-badge {
    margin: auto -15px auto auto;
  }

  .hero-photo img {
    min-height: 330px;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .service-card:nth-child(n+5) {
    transform: none;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 7px);
    justify-self: center;
  }
}

@media (max-width: 768px) {
  body {
    background: #fff;
  }

  .site-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .header-inner {
    min-height: 64px;
    padding: 9px 16px;
  }

  .brand-shield {
    width: 36px;
    height: 40px;
    font-size: 10px;
  }

  .brand-name {
    font-size: 8px;
  }

  .brand-name small {
    font-size: 6px;
  }

  .header-contact {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    font-size: 18px;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 27px 20px 20px;
  }

  .hero h1 {
    max-width: 430px;
    margin-bottom: 9px;
    font-size: clamp(30px, 8.3vw, 38px);
    line-height: 1.01;
  }

  .hero-copy > p:not(.hero-trust) {
    max-width: 400px;
    margin-bottom: 17px;
    font-size: 13px;
  }

  .hero-actions {
    max-width: 320px;
    margin: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

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

  .hero-trust {
    display: none;
  }

  .hero-visual {
    min-height: 265px;
    grid-template-columns: 42% 58%;
  }

  .hero-photo img {
    min-height: 265px;
    object-position: 54% center;
  }

  .experience-badge {
    width: 130px;
    margin: auto -11px auto auto;
    padding: 15px 10px 13px;
    border-width: 3px;
  }

  .badge-top {
    font-size: 10px;
  }

  .experience-badge strong {
    font-size: 53px;
  }

  .badge-years {
    font-size: 17px;
  }

  .badge-ribbon {
    width: calc(100% + 26px);
    font-size: 10px;
  }

  .badge-stars {
    margin-top: 7px;
    font-size: 10px;
  }

  .stats {
    padding: 9px 12px;
  }

  .stat {
    min-height: 88px;
    padding: 10px 8px;
    gap: 8px;
  }

  .line-icon {
    font-size: 27px;
  }

  .stat strong {
    font-size: 16px;
  }

  .stat small,
  .stat p {
    font-size: 9px;
  }

  .content-wrap {
    padding: 0 16px;
  }

  .section {
    padding: 29px 0 34px;
  }

  .section h2 {
    font-size: 22px;
  }

  .service-grid {
    gap: 8px;
  }

  .service-card {
    min-height: 132px;
    padding: 12px 7px;
  }

  .service-icon {
    min-height: 36px;
    font-size: 29px;
  }

  .service-card h3 {
    margin-top: 4px;
    font-size: 11px;
  }

  .service-card p {
    font-size: 9px;
  }

  .service-card:last-child {
    width: 100%;
  }

  .services-more {
    display: flex;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-copy p {
    font-size: 12px;
  }

  .check-list {
    grid-template-columns: 1fr;
    gap: 9px;
    font-size: 11px;
  }

  .experience-panel {
    width: min(100%, 330px);
    min-height: 220px;
    margin: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .feature-grid article {
    padding: 7px 3px;
  }

  .feature-grid article:nth-child(n+4) {
    transform: translateX(50%);
  }

  .feature-grid article > span {
    min-height: 36px;
    font-size: 31px;
  }

  .feature-grid h3 {
    font-size: 10px;
  }

  .feature-grid p {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(5, minmax(125px, 1fr));
    overflow-x: auto;
    gap: 7px;
    padding-bottom: 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .gallery-grid figure {
    scroll-snap-align: start;
  }

  .gallery-dots {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 5px;
  }

  .gallery-dots i {
    width: 6px;
    height: 6px;
    background: #c8c8c8;
    border-radius: 50%;
  }

  .gallery-dots i.active {
    background: var(--red);
  }

  .process-heading {
    text-align: left;
  }

  .process-list {
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-list li {
    padding: 0;
    display: grid;
    grid-template-columns: 43px 1fr;
    gap: 12px;
    text-align: left;
  }

  .process-list li:not(:last-child)::after {
    top: 41px;
    bottom: -14px;
    left: 20px;
    width: auto;
    border-top: 0;
    border-left: 1px dashed #aeb0b1;
  }

  .step-number {
    margin: 0;
  }

  .process-list h3 {
    margin: 2px 0 4px;
    font-size: 13px;
  }

  .process-list p {
    font-size: 10px;
  }

  .trust-banner {
    min-height: 98px;
    padding: 17px;
    grid-template-columns: auto 1fr;
    gap: 13px;
  }

  .trust-shield {
    width: 43px;
    height: 50px;
  }

  .trust-banner strong {
    font-size: 13px;
  }

  .people-mark {
    display: none;
  }

  .contact-faq {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .location-card,
  .faq {
    min-height: 0;
    padding: 18px;
  }

  .location-symbol {
    font-size: 38px;
  }

  .final-cta {
    padding: 24px 18px;
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .cta-shield {
    margin: auto;
  }

  .final-copy h2 {
    font-size: 21px;
  }

  .final-copy p {
    margin: auto;
    font-size: 12px;
  }

  .final-actions {
    width: min(100%, 330px);
    margin: auto;
  }

  .site-footer {
    padding: 28px 20px 18px;
  }

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

  .footer-brand,
  .footer-group {
    padding: 0;
    border-right: 0;
  }

  .footer-brand {
    padding-bottom: 22px;
  }

  .footer-group {
    border-top: 1px solid #343a3d;
  }

  .footer-group-toggle {
    min-height: 48px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .footer-group-toggle span {
    display: inline;
    font-size: 17px;
  }

  .footer-group-content {
    display: none;
    padding: 0 0 15px;
  }

  .footer-group.open .footer-group-content {
    display: flex;
  }

  .footer-brand p {
    max-width: 310px;
  }
}

@media (max-width: 390px) {
  .brand-name {
    max-width: 76px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .experience-badge {
    width: 116px;
  }

  .experience-badge strong {
    font-size: 46px;
  }

  .badge-ribbon {
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* Site Fácil IA V5.7.7 — WhatsApp e ícones fiéis */
.sf-whatsapp-button{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  min-height:44px!important;
  padding:11px 18px!important;
  border-radius:8px!important;
  background:#25D366!important;
  color:#fff!important;
  border:0!important;
  text-decoration:none!important;
  font-weight:800!important;
  line-height:1.1!important;
  box-shadow:none!important;
}
.sf-whatsapp-button:hover{filter:brightness(.96)}
.sf-whatsapp-floating{
  width:46px!important;
  height:46px!important;
  min-width:46px!important;
  min-height:46px!important;
  padding:0!important;
  border-radius:999px!important;
}
.sf-faithful-icon,.sf-wa-icon{
  display:inline-grid!important;
  place-items:center!important;
  flex:0 0 auto!important;
  width:20px!important;
  height:20px!important;
}
.sf-whatsapp-floating .sf-wa-icon{width:22px!important;height:22px!important}
.sf-faithful-icon svg,.sf-wa-icon svg,.sf-faithful-icon-host svg{
  width:100%!important;
  height:100%!important;
  display:block!important;
}
.sf-faithful-icon-host{
  display:grid!important;
  place-items:center!important;
  width:42px!important;
  height:42px!important;
  min-width:42px!important;
  min-height:42px!important;
  border-radius:999px!important;
  background:#0057c8!important;
  color:#fff!important;
}
.sf-faithful-icon-host svg{
  width:20px!important;
  height:20px!important;
  fill:none!important;
  stroke:currentColor!important;
  stroke-width:1.9!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}
.sf-wa-icon svg{color:#fff!important}
@media(max-width:768px){
  .sf-whatsapp-button{min-height:42px!important;padding:10px 14px!important;font-size:13px!important}
  .sf-whatsapp-floating{width:44px!important;height:44px!important;padding:0!important}
}

/* Site Fácil IA: proteção de integridade visual */
html,body{max-width:100%;overflow-x:clip}main>section{position:relative;isolation:isolate;clear:both}img{max-width:100%;height:auto}img[src*="assets/"]{object-fit:contain}


/* =========================================================
   AJUSTE HEADER + WHATSAPP — Grupo Riograndense
   ========================================================= */

/* Header compacto e organizado */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #eeeeec;
  box-shadow: 0 4px 18px rgba(0,0,0,.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner{
  min-height: 82px !important;
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 26px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  overflow: visible !important;
}

/* Logo verdadeira do cliente no lugar da imagem solta */
.site-header .brand{
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
}

.site-header .header-logo{
  display: block !important;
  width: auto !important;
  height: 66px !important;
  max-width: 190px !important;
  object-fit: contain !important;
  object-position: center !important;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  margin: 0 !important;
  transform: none !important;
  flex-shrink: 0;
}

/* Navegação */
.site-header .main-nav{
  flex: 1 1 auto;
  min-width: 0;
}

.site-header .header-actions{
  flex: 0 0 auto;
  margin-left: auto;
}

/* Botão hamburguer mais visível */
.site-header .menu-toggle{
  position: relative;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,.06);
}

.site-header .menu-toggle span{
  width: 24px;
  height: 2.5px;
  margin: 4.5px auto;
  border-radius: 999px;
  background: #111;
}

/* WhatsApp: somente UM ícone por botão */
.sf-whatsapp-button > .sf-wa-icon{
  display: inline-grid !important;
  place-items: center !important;
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
  flex: 0 0 20px !important;
}

.sf-whatsapp-button > .sf-wa-icon svg{
  display: block !important;
  width: 20px !important;
  height: 20px !important;
}

/* Evita qualquer símbolo legado ao lado do SVG */
.sf-whatsapp-button > span[aria-hidden="true"]:not(.sf-wa-icon){
  display: none !important;
}

/* Links sociais do rodapé não devem virar botão verde comprido */
.social-links .sf-whatsapp-button{
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  padding: 0 !important;
  border: 1px solid #777b7d !important;
  border-radius: 7px !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
}

.social-links .sf-whatsapp-button .sf-wa-icon,
.social-links .sf-whatsapp-button .sf-wa-icon svg{
  width: 18px !important;
  height: 18px !important;
}

/* Mobile */
@media (max-width: 900px){
  .site-header .header-inner{
    min-height: 70px !important;
    padding: 7px 14px !important;
    gap: 12px;
  }

  .site-header .header-logo{
    height: 54px !important;
    max-width: 150px !important;
  }

  .site-header .main-nav{
    position: fixed;
    top: 78px;
    right: 12px;
    left: 12px;
    inset: 78px 12px auto 12px;
    z-index: 1100;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 12px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
  }

  .site-header .main-nav a{
    min-height: 46px;
    padding: 13px 12px;
    display: flex;
    align-items: center;
    font-size: 14px;
  }

  .site-header .menu-toggle{
    display: block;
    flex: 0 0 46px;
  }
}

@media (max-width: 480px){
  .site-header .header-inner{
    min-height: 66px !important;
    padding: 6px 12px !important;
  }

  .site-header .header-logo{
    height: 50px !important;
    max-width: 138px !important;
  }

  .site-header .main-nav{
    top: 72px;
    inset: 72px 10px auto 10px;
  }

  .hero-actions .sf-whatsapp-button{
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* Site Fácil IA V5.7.8 — transições suaves entre seções */
html{scroll-behavior:smooth}
.sf-motion-ready main>section,
.sf-motion-ready body>section,
.sf-motion-ready .sf-animate-section{
    opacity:0;
    transform:translate3d(0,28px,0);
    transition:opacity .72s cubic-bezier(.22,.61,.36,1),transform .72s cubic-bezier(.22,.61,.36,1);
    will-change:opacity,transform;
}
.sf-motion-ready main>section.sf-in-view,
.sf-motion-ready body>section.sf-in-view,
.sf-motion-ready .sf-animate-section.sf-in-view{
    opacity:1;
    transform:translate3d(0,0,0);
}
img{max-width:100%;height:auto}
@media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    .sf-motion-ready main>section,
    .sf-motion-ready body>section,
    .sf-motion-ready .sf-animate-section{
        opacity:1!important;
        transform:none!important;
        transition:none!important;
    }
}