/*02------------------------------------*/
/* =========================================================
   SNOW REMOVAL INTRO
========================================================= */

.snow-removal-intro {
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
}

.snow-removal-intro .tx-section-inner {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.snow-removal-intro-section {
  position: relative;
  z-index: 2;
}

.snow-removal-intro-content {
  position: relative;
  z-index: 2;
}

/* =========================================================
   HEADING
========================================================= */

.snow-removal-intro h2 {
  position: relative;
  z-index: 2;
}

.snow-removal-intro h2 span {
  color: var(--color-red);
}

/* =========================================================
   FIRST PARAGRAPH
========================================================= */

.snow-removal-intro-content .mb:first-of-type {
  margin-top: 35px;
}

/* =========================================================
   RED + BLACK LINE
========================================================= */

.snow-removal-intro-content .mb:first-of-type::before {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin-bottom: 25px;
  background: linear-gradient(
    to right,
    var(--color-red) 0 70%,
    var(--color-black) 70% 100%
  );
}

/* =========================================================
   PARAGRAPHS
========================================================= */

.snow-removal-intro-content p.mb {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 24px;
}

.snow-removal-intro-content p.mt {
  margin-top: 30px;
}

/* =========================================================
   SNOW PAGE LIST
========================================================= */

.snow-page-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 35px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.snow-page-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}

.snow-page-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--color-red);
  transform: rotate(45deg);
}

/* =========================================================
   SUBTLE 10X BACKGROUND
========================================================= */

.snow-removal-intro::after {
  content: "10X";
  position: absolute;
  top: 50%;
  right: max(2%, calc((100% - 1280px) / 2));
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(180px, 18vw, 280px);
  font-weight: var(--weight-extrabold);
  line-height: 1;
  color: rgba(183, 0, 0, 0.045);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* =========================================================
   INTRO CTA
========================================================= */

.snow-removal-intro-cta {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 850px;
  margin-top: 45px;
}

/* =========================================================
   CTA CARD
========================================================= */

.snow-removal-intro-cta-card {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 115px;
  overflow: hidden;
  background: var(--color-black);
  border-left: 6px solid var(--color-red);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
  isolation: isolate;
  text-decoration: none !important;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.snow-removal-intro-cta-card:hover,
.snow-removal-intro-cta-card:focus,
.snow-removal-intro-cta-card:active,
.snow-removal-intro-cta-card:visited {
  text-decoration: none !important;
}

/* =========================================================
   CTA BADGE
========================================================= */

.snow-removal-intro-cta-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 135px;
  min-width: 135px;
  overflow: hidden;
  background: var(--color-red);
  color: var(--color-white);
}

.snow-removal-intro-cta-badge::after {
  content: "";
  position: absolute;
  top: 0;
  right: -35px;
  width: 70px;
  height: 100%;
  background: var(--color-white);
  opacity: 0.12;
  transform: skewX(-18deg);
  transition: right 0.35s ease;
}

.snow-removal-intro-cta-badge span {
  position: relative;
  z-index: 2;
  display: block;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: var(--weight-extrabold);
  line-height: 1;
}

.snow-removal-intro-cta-badge small {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 7px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--weight-bold);
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =========================================================
   CTA CONTENT
========================================================= */

.snow-removal-intro-cta-content {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 25px 40px;
}

.snow-removal-intro-cta-content::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 0;
  width: 4px;
  height: 50%;
  background: var(--color-red);
  transition:
    height 0.35s ease,
    top 0.35s ease;
}

.snow-removal-intro-cta-content p {
  margin: 0;
  padding-left: 20px;
  color: var(--color-white);
  line-height: 1.4;
}

.snow-removal-intro-cta-content p strong {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: var(--weight-extrabold);
  line-height: 1.3;
}

/* =========================================================
   CTA CONTACT LINKS
========================================================= */

.snow-removal-intro-cta-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--weight-bold);
}

.snow-removal-intro-cta-links span {
  transition: color 0.3s ease;
}

.snow-removal-intro-cta-links .cta-divider {
  color: var(--color-red);
}

/* =========================================================
   CTA HOVER
========================================================= */

.snow-removal-intro-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
}

.snow-removal-intro-cta-card:hover .snow-removal-intro-cta-badge::after {
  right: -20px;
}

.snow-removal-intro-cta-card:hover .snow-removal-intro-cta-content::before {
  top: 15%;
  height: 70%;
}

.snow-removal-intro-cta-card:hover .snow-removal-intro-cta-links {
  color: var(--color-white);
}

/*03--------------------------------------------------------*/
/* =========================================================
   SNOW REMOVAL SERVICE
========================================================= */

.snow-removal-service {
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
}

/* =========================================================
   GRID
========================================================= */

.snow-removal-page-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-areas:
    "c1 c1 c1 c2 c2 c2"
    "c3 c3 c4 c4 c5 c5"
    "c6 c6 c6 c7 c7 c7";
  gap: 24px;
}

/* =========================================================
   GRID AREAS
========================================================= */

.snow-removal-page-grid .sn-card:nth-child(1) {
  grid-area: c1;
}

.snow-removal-page-grid .sn-card:nth-child(2) {
  grid-area: c2;
}

.snow-removal-page-grid .sn-card:nth-child(3) {
  grid-area: c3;
}

.snow-removal-page-grid .sn-card:nth-child(4) {
  grid-area: c4;
}

.snow-removal-page-grid .sn-card:nth-child(5) {
  grid-area: c5;
}

.snow-removal-page-grid .sn-card:nth-child(6) {
  grid-area: c6;
}

.snow-removal-page-grid .sn-card:nth-child(7) {
  grid-area: c7;
}

/* =========================================================
   SNOW CARD
========================================================= */

.sn-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 42px 36px 34px;
  background: var(--color-white);
  border: 1px solid rgba(26, 26, 26, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  box-sizing: border-box;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.sn-card:hover {
  transform: translateY(-8px);
  border-color: rgba(183, 0, 0, 0.4);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.13);
}

/* =========================================================
   TOP ACCENT
========================================================= */

.sn-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: var(--color-black);
  z-index: 5;
  transition: background-color 0.35s ease;
}

.sn-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 85px;
  height: 7px;
  background: var(--color-red);
  z-index: 6;
  transform: skewX(-25deg);
  transform-origin: left;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.sn-card:hover::before {
  background: var(--color-black);
}

.sn-card:hover::after {
  width: 170px;
}

/* =========================================================
   TOP RIGHT TRANSPARENT CORNER
========================================================= */

.sn-card-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 105px;
  height: 105px;
  background: rgba(26, 26, 26, 0.18);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  z-index: 3;
  pointer-events: none;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease;
}

.sn-card-corner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 105px;
  height: 105px;
  background: rgba(183, 0, 0, 0.3);
  clip-path: polygon(100% 0, 100% 58%, 42% 0);
}

.sn-card:hover .sn-card-corner {
  transform: scale(1.08);
  background: rgba(26, 26, 26, 0.22);
}

/* =========================================================
   WATERMARK
========================================================= */

.sn-watermark {
  position: absolute;
  right: -28px;
  bottom: -38px;
  font-family: var(--font-heading);
  font-size: 165px;
  font-weight: var(--weight-extrabold);
  line-height: 0.8;
  letter-spacing: -10px;
  color: rgba(183, 0, 0, 0.035);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  transform: rotate(-18deg);
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.4s ease;
}

.sn-card:hover .sn-watermark {
  color: rgba(183, 0, 0, 0.075);
  transform: rotate(0deg) scale(1.08);
}

/* =========================================================
   ICON
========================================================= */

.sn-icon-wrap {
  position: relative;
  width: 62px;
  height: 62px;
  margin-bottom: 27px;
  z-index: 4;
}

.sn-icon-wrap::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease;
}

.sn-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 26px;
  line-height: 1;
  transition:
    background-color 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sn-card:hover .sn-icon-wrap::before {
  transform: translate(5px, 5px);
  background: var(--color-red);
}

.sn-card:hover .sn-icon {
  background: var(--color-black);
  transform: translate(-2px, -2px);
}

/* =========================================================
   CARD CONTENT
========================================================= */

.sn-card h3 {
  position: relative;
  z-index: 4;
  margin: 0 0 12px;
  padding-left: 17px;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-weight: var(--weight-extrabold);
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.sn-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--color-black);
  transition:
    background-color 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sn-card:hover h3 {
  color: var(--color-red);
}

.sn-card:hover h3::before {
  background: var(--color-red);
  transform: scaleY(1.08);
}

/* =========================================================
   TAGLINE
========================================================= */

.sn-tagline {
  position: relative;
  z-index: 4;
  margin: 0 0 17px;
  color: var(--color-red);
  font-weight: var(--weight-semibold);
  font-style: italic;
}

/* =========================================================
   DIVIDER
========================================================= */

.sn-card .card-divider {
  position: relative;
  z-index: 4;
  display: block;
  width: 50px;
  height: 3px;
  margin-bottom: 21px;
  background: var(--color-red);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.sn-card .card-divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% + 5px);
  width: 11px;
  height: 3px;
  background: var(--color-black);
}

.sn-card:hover .card-divider {
  width: 78px;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.sn-desc {
  position: relative;
  z-index: 4;
  margin: 0 0 24px;
  color: var(--color-dark-gray);
  line-height: 1.75;
}

/* =========================================================
   FEATURES
========================================================= */

.sn-features {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.sn-features li {
  position: relative;
  padding-left: 22px;
  color: var(--color-dark-gray);
  line-height: 1.55;
}

.sn-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--color-red);
  transform: rotate(45deg);
  transition:
    background-color 0.3s ease,
    transform 0.35s ease;
}

.sn-card:hover .sn-features li::before {
  background: var(--color-black);
  transform: rotate(135deg);
}

/* =========================================================
   CTA FOOTER
========================================================= */

.sn-cta {
  position: relative;
  z-index: 5;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

/* =========================================================
   SIMPLE CTA BUTTON
========================================================= */

.sn-cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 14px 20px;
  margin: 0;
  background: var(--color-red);
  border: 2px solid var(--color-red);
  color: var(--color-white);
  text-decoration: none;
  box-sizing: border-box;
  overflow: hidden;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.sn-cta-btn:hover {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/* =========================================================
   HIDE OLD SLASH ELEMENT
========================================================= */

.sn-cta-slash {
  display: none;
}

/* =========================================================
   CTA CONTENT
========================================================= */

.sn-cta-btn-main {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 18px;
  width: 100%;
  padding-left: 0;
}

/* =========================================================
   CTA TEXT
========================================================= */

.sn-cta-btn-text {
  display: block;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 14px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
}

.sn-cta-btn:hover .sn-cta-btn-text {
  color: var(--color-white);
  transform: translateX(3px);
}

/* =========================================================
   PHONE NUMBER
========================================================= */

.sn-cta-btn-phone {
  display: block;
  flex-shrink: 0;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.sn-cta-btn:hover .sn-cta-btn-phone {
  color: var(--color-white);
  transform: translateX(-2px);
}

/*04--------------------------------------------------------*/
/* =========================================================
   SNOW PLOWING VS REMOVAL
========================================================= */

.snow-plowing-vs-removal {
  position: relative;
  background: var(--color-white);
  overflow: hidden;
}

/* =========================================================
   SUBTLE BACKGROUND DESIGN
========================================================= */

.snow-plowing-vs-removal::before {
  content: "VS";

  position: absolute;
  right: -45px;
  top: 42%;

  transform: translateY(-50%);

  color: rgba(183, 0, 0, 0.035);

  font-family: var(--font-heading);
  font-size: clamp(220px, 25vw, 390px);
  font-weight: var(--weight-extrabold);
  line-height: 1;

  pointer-events: none;
  user-select: none;
}

.snow-plowing-vs-removal .tx-section-inner {
  position: relative;
  z-index: 2;
}

/* =========================================================
   INTRO
========================================================= */

.snow-plowing-vs-removal .tx-section-inner > p:not(.sub-title-r) {
  max-width: 850px;
  margin-bottom: 50px;
}

/* =========================================================
   COMPARISON TABLE
========================================================= */

.snow-vs-table {
  width: 100%;
  margin-top: 45px;

  border: 1px solid rgba(26, 26, 26, 0.12);

  background: var(--color-white);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);

  overflow: hidden;
}

/* =========================================================
   TABLE HEADER
========================================================= */

.snow-vs-header {
  display: grid;
  grid-template-columns: 1fr 1fr;

  background: var(--color-black);
}

.snow-vs-column {
  position: relative;

  padding: 28px 35px;

  overflow: hidden;

  /* SAME TOP BORDER FOR BOTH */
  border-top: 5px solid var(--color-red);
}

/* SAME DIVIDER FOR BOTH SIDES */

.snow-vs-column + .snow-vs-column {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

/* SUBTLE DECORATIVE SHAPE */

.snow-vs-column::after {
  content: "";

  position: absolute;

  right: -30px;
  top: -50px;

  width: 110px;
  height: 150px;

  background: var(--color-red);
  opacity: 0.12;

  transform: rotate(35deg);

  pointer-events: none;
}

/* =========================================================
   HEADER LABEL
========================================================= */

.snow-vs-label {
  position: relative;
  z-index: 2;

  display: block;

  margin-bottom: 8px;

  color: var(--color-red);

  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--weight-bold);

  line-height: 1;
  letter-spacing: 2px;

  text-transform: uppercase;
}

/* SAME HEADING COLOR FOR BOTH */

.snow-vs-column h3 {
  position: relative;
  z-index: 2;

  margin: 0;

  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: var(--weight-extrabold);

  line-height: 1.2;
}

/* =========================================================
   TABLE ROW
========================================================= */

.snow-vs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

  border-top: 1px solid rgba(26, 26, 26, 0.1);

  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.snow-vs-row:hover {
  background: rgba(183, 0, 0, 0.025);

  box-shadow: inset 5px 0 0 var(--color-red);
}

/* =========================================================
   TABLE CELL
========================================================= */

.snow-vs-cell {
  position: relative;

  display: flex;
  align-items: center;

  min-width: 0;

  padding: 23px 35px;

  box-sizing: border-box;
}

/* COLUMN DIVIDER */

.snow-vs-cell + .snow-vs-cell {
  border-left: 1px solid rgba(26, 26, 26, 0.1);
}

/* SAME BULLET COLOR FOR BOTH */

.snow-vs-cell::before {
  content: "";

  flex: 0 0 8px;

  width: 8px;
  height: 8px;

  margin-right: 15px;

  background: var(--color-red);

  transform: rotate(45deg);
}

/* TABLE TEXT */

.snow-vs-cell p {
  margin: 0;

  color: var(--color-dark-gray);

  line-height: 1.65;
}

.snow-vs-mobile-title {
  display: none;
}

/* =========================================================
   EXPLANATION
========================================================= */

.snow-vs-explanation {
  position: relative;

  display: grid;
  grid-template-columns: 6px minmax(0, 1fr);

  gap: 25px;

  width: 100%;

  margin-top: 50px;

  box-sizing: border-box;
}

.snow-vs-explanation-line {
  width: 6px;

  background: var(--color-red);
}

.snow-vs-explanation-content {
  max-width: 1050px;
}

.snow-vs-explanation-content p {
  margin: 0 0 22px;

  color: var(--color-dark-gray);

  line-height: 1.75;
}

.snow-vs-explanation-content p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   CTA
========================================================= */

.snow-vs-cta {
  position: relative;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;

  align-items: center;

  gap: 50px;

  width: 100%;

  margin-top: 55px;

  padding: 38px 42px;

  background: var(--color-black);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 6px solid var(--color-red);

  box-sizing: border-box;

  overflow: hidden;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* TOP ACCENT */

.snow-vs-cta::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 150px;
  height: 4px;

  background: var(--color-red);
}

/* LARGE BACKGROUND 10X */

.snow-vs-cta::after {
  content: "10X";

  position: absolute;

  right: 15px;
  bottom: -65px;

  color: rgba(255, 255, 255, 0.035);

  font-family: var(--font-heading);
  font-size: 175px;
  font-weight: var(--weight-extrabold);

  line-height: 1;

  pointer-events: none;
  user-select: none;
}

/* HOVER */

.snow-vs-cta:hover {
  transform: translateY(-4px);

  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

/* =========================================================
   CTA CONTENT
========================================================= */

.snow-vs-cta-content {
  position: relative;
  z-index: 2;

  min-width: 0;
}

.snow-vs-cta-label {
  display: block;

  margin-bottom: 10px;

  color: var(--color-red);

  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--weight-bold);

  line-height: 1;
  letter-spacing: 2px;

  text-transform: uppercase;
}

.snow-vs-cta-content h3 {
  margin: 0 0 11px;

  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: var(--weight-extrabold);

  line-height: 1.2;
}

.snow-vs-cta-content p {
  max-width: 700px;

  margin: 0;

  color: rgba(255, 255, 255, 0.7);

  line-height: 1.65;
}

/* =========================================================
   CTA ACTION
========================================================= */

.snow-vs-cta-action {
  position: relative;
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: flex-end;

  gap: 13px;

  min-width: 230px;
}

/* BUTTON */

.snow-vs-cta-action .red-btn {
  width: 230px;
}

.snow-vs-cta-action .red-btn a {
  width: 100%;

  box-sizing: border-box;

  justify-content: center;
}

/* =========================================================
   CTA PHONE
========================================================= */

.snow-vs-phone {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: var(--weight-bold);

  line-height: 1;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.snow-vs-phone span {
  color: var(--color-red);

  font-size: 10px;

  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.snow-vs-phone:hover {
  color: var(--color-red);

  transform: translateX(-3px);
}

/*05--------------------------------------------------------*/

/* =========================================================
   SECTION 05 · LOCAL CONDITIONS
========================================================= */

.snow-local-conditions {
  position: relative;
  overflow: hidden;
  background: var(--color-light-gray);
}

/* =========================================================
   SECTION INNER
========================================================= */

.snow-local-conditions-inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =========================================================
   HEADING
========================================================= */

.snow-local-conditions-heading {
  max-width: 1080px;
  margin-bottom: 55px;
}

.snow-local-conditions-eyebrow {
  position: relative;

  display: inline-flex;
  align-items: center;

  margin: 0 0 20px;
  padding-left: 22px;

  color: var(--color-red);

  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--weight-bold);

  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.snow-local-conditions-eyebrow::before {
  content: "";

  position: absolute;
  left: 0;
  top: 50%;

  width: 7px;
  height: 18px;

  background: var(--color-red);

  transform: translateY(-50%);
}

.snow-local-conditions-heading h2 {
  max-width: 1050px;

  margin: 0;

  color: var(--color-black);

  font-family: var(--font-heading);
  font-weight: var(--weight-extrabold);

  line-height: 1.08;
}

.snow-local-conditions-heading h2 span {
  color: var(--color-red);
}

.snow-local-conditions-intro {
  max-width: 850px;

  margin: 25px 0 0;

  color: var(--color-dark-gray);

  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
}

/* =========================================================
   GRID
========================================================= */

.snow-local-conditions-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;
}

/* =========================================================
   CARD
========================================================= */

.snow-local-condition-card {
  position: relative;

  display: grid;

  grid-template-columns: minmax(0, 1fr) 145px;

  min-height: 300px;

  background: var(--color-white);

  border: 1px solid #d8d8d8;

  overflow: hidden;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

/* Top black line */

.snow-local-condition-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: var(--color-black);

  z-index: 5;

  transition: background-color 0.35s ease;
}

/* =========================================================
   CONTENT
========================================================= */

.snow-local-condition-content {
  position: relative;

  padding: 32px 32px 34px;

  min-width: 0;
}

/* =========================================================
   TOP ICON + TITLE
========================================================= */

.snow-local-condition-top {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-bottom: 17px;
}

.snow-local-condition-icon {
  flex: 0 0 48px;

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: var(--color-red);

  color: var(--color-white);

  border: 1px solid var(--color-red);
}

.snow-local-condition-icon svg {
  width: 27px;
  height: 27px;

  display: block;
}

.snow-local-condition-heading-wrap {
  min-width: 0;
}

.snow-local-condition-kicker {
  display: block;

  margin-bottom: 5px;

  color: var(--color-red);

  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--weight-bold);

  letter-spacing: 1.5px;
  line-height: 1;

  text-transform: uppercase;
}

.snow-local-condition-card h3 {
  margin: 0;

  color: var(--color-black);

  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: var(--weight-extrabold);

  line-height: 1.15;

  text-transform: uppercase;

  transition: color 0.3s ease;
}

/* =========================================================
   RED DIVIDER
========================================================= */

.snow-local-condition-line {
  position: relative;

  width: 62px;
  height: 3px;

  margin-bottom: 18px;

  background: var(--color-red);

  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.snow-local-condition-line::after {
  content: "";

  position: absolute;

  left: calc(100% + 5px);
  top: 0;

  width: 12px;
  height: 3px;

  background: var(--color-black);
}

/* =========================================================
   TEXT
========================================================= */

.snow-local-condition-card p {
  margin: 0;

  color: var(--color-dark-gray);

  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--weight-regular);

  line-height: 1.7;
}

/* =========================================================
   VISUAL PANEL
========================================================= */

.snow-local-condition-visual {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  padding: 20px;

  background: linear-gradient(
    145deg,
    var(--color-dark-gray) 0%,
    var(--color-black) 72%
  );

  color: var(--color-white);

  overflow: hidden;
}

/* Red diagonal */

.snow-local-condition-visual::before {
  content: "";

  position: absolute;

  left: -25px;
  bottom: 0;

  width: 32px;
  height: 100%;

  background: var(--color-red);

  transform: skewX(-12deg);

  transition:
    width 0.4s ease,
    background-color 0.35s ease;
}

/* Snow texture lines */

.snow-local-condition-visual::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    transparent 0 45%,
    rgba(255, 255, 255, 0.045) 45% 46%,
    transparent 46% 100%
  );

  background-size: 38px 38px;

  opacity: 0.55;

  pointer-events: none;
}

/* =========================================================
   LARGE ICON
========================================================= */

.snow-local-visual-icon {
  position: relative;

  z-index: 3;

  width: 72px;
  height: 72px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 15px;

  color: var(--color-white);

  opacity: 0.9;
}

.snow-local-visual-icon svg {
  width: 100%;
  height: 100%;
}

/* =========================================================
   VISUAL LABEL
========================================================= */

.snow-local-visual-label {
  position: relative;

  z-index: 3;

  color: var(--color-white);

  font-family: var(--font-body);
  font-size: 9px;
  font-weight: var(--weight-bold);

  line-height: 1;
  letter-spacing: 1.5px;

  text-align: center;
}

/* =========================================================
   SNOW DECORATION
========================================================= */

.snow-local-snowflake {
  position: absolute;

  color: rgba(255, 255, 255, 0.12);

  font-family: Arial, sans-serif;

  line-height: 1;

  z-index: 2;

  pointer-events: none;
}

.snowflake-one {
  top: 18px;
  right: 18px;

  font-size: 30px;
}

.snowflake-two {
  bottom: 20px;
  right: 22px;

  font-size: 18px;
}

/* =========================================================
   CARD HOVER
========================================================= */

.snow-local-condition-card:hover {
  transform: translateY(-6px);

  border-color: var(--color-red);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.snow-local-condition-card:hover::before {
  background: var(--color-red);
}

.snow-local-condition-card:hover .snow-local-condition-line {
  width: 82px;
}

.snow-local-condition-card:hover .snow-local-condition-card h3 {
  color: var(--color-red);
}

.snow-local-condition-card:hover .snow-local-condition-visual::before {
  width: 42px;
}

/* =========================================================
   CTA
========================================================= */

.snow-local-conditions-cta {
  position: relative;

  display: grid;

  grid-template-columns: 145px minmax(0, 1fr) auto;

  min-height: 135px;

  margin-top: 50px;

  background: var(--color-black);

  overflow: hidden;

  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

/* CTA icon block */

.snow-local-conditions-cta-mark {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  background: var(--color-red);

  overflow: hidden;
}

.snow-local-conditions-cta-mark::after {
  content: "";

  position: absolute;

  right: -25px;
  top: -10%;

  width: 48px;
  height: 120%;

  background: var(--color-black);

  transform: skewX(-15deg);
}

.snow-local-conditions-cta-mark svg {
  position: relative;

  z-index: 2;

  width: 58px;
  height: 58px;

  color: var(--color-white);
}

/* CTA content */

.snow-local-conditions-cta-content {
  position: relative;

  display: flex;

  flex-direction: column;
  justify-content: center;

  padding: 25px 42px;
}

.snow-local-conditions-cta-content::before {
  content: "";

  position: absolute;

  left: 0;
  top: 25%;

  width: 3px;
  height: 50%;

  background: var(--color-red);
}

.snow-local-conditions-cta-content p {
  margin: 0 0 8px;

  color: var(--color-red);

  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--weight-bold);

  letter-spacing: 2px;
  text-transform: uppercase;
}

.snow-local-conditions-cta-content h3 {
  max-width: 700px;

  margin: 0;

  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: var(--weight-bold);

  line-height: 1.35;
}

/* CTA actions */

.snow-local-conditions-cta-action {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 25px 30px;

  background: #242424;
}

.snow-local-conditions-cta-action .red-btn,
.snow-local-conditions-cta-action .b-btn {
  white-space: nowrap;
}

@media (max-width: 1200px) {
  /*03*/
  .snow-removal-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "c1 c2"
      "c3 c4"
      "c5 c6"
      "c7 c7";
    gap: 24px;
  }

  .snow-removal-page-grid .sn-card:nth-child(1) {
    grid-area: c1;
  }

  .snow-removal-page-grid .sn-card:nth-child(2) {
    grid-area: c2;
  }

  .snow-removal-page-grid .sn-card:nth-child(3) {
    grid-area: c3;
  }

  .snow-removal-page-grid .sn-card:nth-child(4) {
    grid-area: c4;
  }

  .snow-removal-page-grid .sn-card:nth-child(5) {
    grid-area: c5;
  }

  .snow-removal-page-grid .sn-card:nth-child(6) {
    grid-area: c6;
  }

  .snow-removal-page-grid .sn-card:nth-child(7) {
    grid-area: c7;
  }

  .sn-card {
    padding: 38px 30px 32px;
  }

  .sn-watermark {
    font-size: 145px;
  }
}

@media (max-width: 1080px) {
  /*03*/
  .snow-removal-page-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "c1"
      "c2"
      "c3"
      "c4"
      "c5"
      "c6"
      "c7";
    gap: 20px;
  }

  .snow-removal-page-grid .sn-card:nth-child(1) {
    grid-area: c1;
  }

  .snow-removal-page-grid .sn-card:nth-child(2) {
    grid-area: c2;
  }

  .snow-removal-page-grid .sn-card:nth-child(3) {
    grid-area: c3;
  }

  .snow-removal-page-grid .sn-card:nth-child(4) {
    grid-area: c4;
  }

  .snow-removal-page-grid .sn-card:nth-child(5) {
    grid-area: c5;
  }

  .snow-removal-page-grid .sn-card:nth-child(6) {
    grid-area: c6;
  }

  .snow-removal-page-grid .sn-card:nth-child(7) {
    grid-area: c7;
  }

  .sn-card {
    padding: 36px 28px 30px;
  }

  .sn-watermark {
    font-size: 130px;
  }

  /*04*/
  .snow-vs-column {
    padding: 25px 28px;
  }

  .snow-vs-cell {
    padding: 21px 28px;
  }

  .snow-vs-cta {
    gap: 30px;
    padding: 34px;
  }

  .snow-vs-cta-content h3 {
    font-size: 25px;
  }

  .snow-vs-cta-action {
    min-width: 210px;
  }

  .snow-vs-cta-action .red-btn {
    width: 210px;
  }

  /*05*/
  .snow-local-conditions-grid {
    grid-template-columns: 1fr;
  }

  .snow-local-conditions-cta {
    grid-template-columns: 120px 1fr;
  }

  .snow-local-conditions-cta-action {
    grid-column: 1 / -1;

    padding: 20px 25px;
  }
}

/* =========================================================
   BELOW 900PX
========================================================= */

@media (max-width: 900px) {
  /*04*/
  .snow-vs-cta {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .snow-vs-cta-action {
    align-items: flex-start;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {
  /*02*/
  .snow-page-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .snow-removal-intro-cta {
    margin-top: 35px;
  }

  .snow-removal-intro-cta-card {
    min-height: 105px;
  }

  .snow-removal-intro-cta-badge {
    width: 105px;
    min-width: 105px;
  }

  .snow-removal-intro-cta-badge span {
    font-size: 24px;
  }

  .snow-removal-intro-cta-content {
    padding: 22px 25px;
  }

  .snow-removal-intro-cta-content p strong {
    font-size: 18px;
  }

  /*03*/
  .snow-removal-service::before {
    right: -110px;
    font-size: 250px;
  }

  .snow-removal-page-grid {
    gap: 18px;
  }

  .sn-card {
    padding: 32px 24px 28px;
  }

  .sn-card-corner {
    width: 85px;
    height: 85px;
    background: rgba(26, 26, 26, 0.15);
  }

  .sn-card-corner::after {
    width: 85px;
    height: 85px;
    background: rgba(183, 0, 0, 0.25);
  }

  .sn-icon-wrap {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }

  .sn-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .sn-watermark {
    font-size: 120px;
    right: -20px;
    bottom: -25px;
  }

  .sn-cta {
    padding-top: 22px;
  }

  .sn-cta-btn {
    min-height: 58px;
    padding: 12px 18px;
  }

  .sn-cta-btn-main {
    gap: 14px;
  }

  .sn-cta-btn-text {
    font-size: 13px;
  }

  .sn-cta-btn-phone {
    font-size: 15px;
  }

  /*04*/
  .snow-plowing-vs-removal::before {
    right: -90px;
    top: 38%;

    font-size: 250px;
  }

  /* TABLE */

  .snow-vs-table {
    margin-top: 35px;
  }

  .snow-vs-header {
    grid-template-columns: 1fr 1fr;
  }

  .snow-vs-column {
    padding: 22px 20px;
  }

  .snow-vs-column h3 {
    font-size: 21px;
  }

  .snow-vs-label {
    font-size: 9px;
  }

  .snow-vs-row {
    grid-template-columns: 1fr 1fr;
  }

  .snow-vs-cell {
    padding: 20px;
  }

  .snow-vs-cell p {
    line-height: 1.6;
  }

  /* EXPLANATION */

  .snow-vs-explanation {
    margin-top: 40px;

    grid-template-columns: 5px minmax(0, 1fr);

    gap: 18px;
  }

  /* CTA */

  .snow-vs-cta {
    margin-top: 40px;

    padding: 30px 24px;

    border-left-width: 5px;
  }

  .snow-vs-cta-content h3 {
    font-size: 23px;
  }

  .snow-vs-cta-action {
    width: 100%;
  }

  .snow-vs-cta-action .red-btn {
    width: 100%;
  }

  .snow-vs-phone {
    font-size: 14px;
  }

  /*05*/
  .snow-local-conditions-inner {
    width: calc(100% - 40px);
  }

  .snow-local-condition-card {
    grid-template-columns: 1fr;
  }

  .snow-local-condition-visual {
    min-height: 150px;

    flex-direction: row;

    gap: 15px;
  }

  .snow-local-visual-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 0;
  }

  .snow-local-condition-content {
    padding: 28px 25px 30px;
  }

  .snow-local-condition-card h3 {
    font-size: 19px;
  }

  .snow-local-condition-card p {
    font-size: 14px;
  }

  .snow-local-conditions-cta {
    grid-template-columns: 1fr;
  }

  .snow-local-conditions-cta-mark {
    min-height: 90px;
  }

  .snow-local-conditions-cta-content {
    padding: 28px;
  }

  .snow-local-conditions-cta-action {
    flex-direction: column;

    align-items: stretch;

    padding: 22px 28px;
  }

  .snow-local-conditions-cta-action .red-btn,
  .snow-local-conditions-cta-action .b-btn {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {
  /*02*/

  .snow-removal-intro-content .mb:first-of-type {
    margin-top: 28px;
  }

  .snow-page-list {
    margin: 25px 0;
  }

  .snow-removal-intro-cta-card {
    min-height: 100px;
    border-left-width: 5px;
  }

  .snow-removal-intro-cta-badge {
    width: 80px;
    min-width: 80px;
  }

  .snow-removal-intro-cta-badge span {
    font-size: 19px;
  }

  .snow-removal-intro-cta-badge small {
    margin-top: 5px;
    font-size: 7px;
    letter-spacing: 0.8px;
  }

  .snow-removal-intro-cta-content {
    padding: 18px 15px;
  }

  .snow-removal-intro-cta-content::before {
    width: 3px;
  }

  .snow-removal-intro-cta-content p {
    padding-left: 13px;
  }

  .snow-removal-intro-cta-content p strong {
    font-size: 16px;
    line-height: 1.35;
  }

  .snow-removal-intro-cta-links {
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 8px;
    padding-left: 13px;
    font-size: 12px;
  }

  /*03*/
  .snow-removal-service::before {
    right: -100px;
    font-size: 210px;
  }

  .snow-removal-page-grid {
    gap: 16px;
  }

  .sn-card {
    padding: 30px 20px 26px;
  }

  .sn-card-corner {
    width: 70px;
    height: 70px;
    background: rgba(26, 26, 26, 0.13);
  }

  .sn-card-corner::after {
    width: 70px;
    height: 70px;
    background: rgba(183, 0, 0, 0.23);
  }

  .sn-icon-wrap {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
  }

  .sn-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .sn-card h3 {
    padding-left: 14px;
  }

  .sn-card h3::before {
    width: 4px;
  }

  .sn-card .card-divider {
    width: 45px;
    margin-bottom: 18px;
  }

  .sn-desc {
    margin-bottom: 21px;
  }

  .sn-features {
    gap: 9px;
    margin-bottom: 25px;
  }

  .sn-features li {
    padding-left: 20px;
  }

  .sn-watermark {
    font-size: 95px;
    right: -12px;
    bottom: -18px;
  }

  .sn-cta {
    padding-top: 20px;
  }

  .sn-cta-btn {
    min-height: 62px;
    padding: 11px 15px;
  }

  .sn-cta-btn-main {
    gap: 10px;
  }

  .sn-cta-btn-text {
    font-size: 11px;
    letter-spacing: 0.4px;
  }

  .sn-cta-btn-phone {
    font-size: 15px;
    letter-spacing: 0.2px;
  }

  /*04*/
  .snow-plowing-vs-removal::before {
    right: -105px;

    font-size: 210px;
  }

  /* TABLE HEADER */

  .snow-vs-column {
    padding: 20px 15px;
  }

  .snow-vs-column h3 {
    font-size: 18px;
  }

  /* TABLE CELLS */

  .snow-vs-cell {
    display: block;

    padding: 17px 15px;
  }

  .snow-vs-cell::before {
    display: inline-block;

    vertical-align: middle;

    margin-right: 9px;
  }

  .snow-vs-cell p {
    display: inline;

    line-height: 1.55;
  }

  /* EXPLANATION */

  .snow-vs-explanation {
    grid-template-columns: 4px minmax(0, 1fr);

    gap: 14px;

    margin-top: 32px;
  }

  .snow-vs-explanation-content p {
    margin-bottom: 18px;

    line-height: 1.7;
  }

  /* CTA */

  .snow-vs-cta {
    margin-top: 32px;

    padding: 25px 18px;
  }

  .snow-vs-cta-content h3 {
    font-size: 21px;
  }

  .snow-vs-cta-content p {
    line-height: 1.6;
  }

  .snow-vs-cta::after {
    right: -20px;
    bottom: -40px;

    font-size: 120px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .sn-cta-btn-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .sn-cta-btn {
    min-height: 68px;
  }

  .sn-cta-btn-text {
    font-size: 11px;
  }

  .sn-cta-btn-phone {
    font-size: 16px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .sn-card,
  .sn-card *,
  .sn-cta-btn,
  .sn-cta-btn::before,
  .sn-cta-btn::after {
    transition: none !important;
  }
}
/* =========================================================
   SNOW REMOVAL · SECTIONS 03–17 COMPLETION
   Page-scoped additions only. Global paragraph sizing unchanged.
========================================================= */
.snow-removal-service > .tx-section-inner > p:not(.sub-title-r),
.snow-property-types .snow-section-intro,
.snow-removal-process .snow-section-intro,
.snow-post-storm .snow-section-intro,
.snow-why-us .snow-section-intro,
.snow-third-storm .snow-section-intro,
.snow-terminology .snow-section-intro {
  max-width: 900px;
}
.snow-section-cta {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--color-light-gray);
  border-left: 6px solid var(--color-red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.snow-section-cta::after {
  content: "10X";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 90px;
  font-weight: var(--weight-extrabold);
  color: rgba(26, 26, 26, 0.035);
  pointer-events: none;
}
.snow-section-cta > div {
  position: relative;
  z-index: 2;
}
.snow-section-cta h3 {
  font-size: 24px;
  margin: 5px 0 0;
}
.snow-section-cta-label {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-red);
}
.snow-section-cta-dark {
  background: var(--color-black);
  color: var(--color-white);
}
.snow-section-cta-dark h3,
.snow-section-cta-glass h3 {
  color: var(--color-white);
}
.snow-section-cta-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 6px solid var(--color-red);
  backdrop-filter: blur(8px);
}
.snow-dark-photo {
  position: relative;
  background-image: url("../img/hero/buffalo-ny-commercial-deicing-snow-removal.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--color-white);
  overflow: hidden;
}
.snow-dark-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-black);
  opacity: 0.94;
}
.snow-dark-photo > .tx-section-inner {
  position: relative;
  z-index: 2;
}
.snow-dark-photo h2 {
  color: var(--color-white);
}
/* services – connect restored markup to existing card design */
.sn-card-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  color: var(--color-white);
  margin-bottom: 25px;
  position: relative;
  z-index: 4;
  box-shadow: 7px 7px 0 var(--color-black);
}
.sn-card-icon img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
}
.sn-card-kicker {
  position: relative;
  z-index: 4;
  color: var(--color-red);
  font-weight: var(--weight-semibold);
  font-style: italic;
  margin-bottom: 12px;
}
.sn-card-copy {
  position: relative;
  z-index: 4;
  color: var(--color-dark-gray);
  margin-bottom: 22px;
}
.sn-card-list {
  position: relative;
  z-index: 4;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}
.sn-card-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}
.sn-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--color-red);
  transform: rotate(45deg);
}
.sn-card .sn-cta-btn {
  margin-top: auto;
}
.sn-card .sn-cta-btn > span:first-child {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
/* local conditions SVG files */
.snow-local-condition-icon img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
}
/* process */
.snow-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 52px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.snow-process-step {
  position: relative;
  background: rgba(26, 26, 26, 0.82);
  padding: 34px 30px;
  min-height: 300px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.snow-process-step:hover {
  background: rgba(183, 0, 0, 0.88);
  transform: translateY(-4px);
}
.snow-process-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: var(--weight-extrabold);
  line-height: 1;
  color: rgba(255, 255, 255, 0.16);
  margin-bottom: 28px;
}
.snow-process-step h3 {
  font-size: 25px;
  color: var(--color-white);
  margin-bottom: 16px;
}
.snow-process-step p {
  color: rgba(255, 255, 255, 0.82);
}
/* property types */
.snow-property-types {
  background: var(--color-white);
}
.snow-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.snow-feature-card {
  grid-column: span 2;
  padding: 34px 30px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: var(--color-white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}
.snow-feature-card:nth-child(4),
.snow-feature-card:nth-child(5) {
  grid-column: span 3;
}
.snow-feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--color-red);
  transform: scaleY(0.2);
  transform-origin: top;
  transition: 0.35s ease;
}
.snow-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.11);
}
.snow-feature-card:hover::before {
  transform: scaleY(1);
}
.snow-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.snow-feature-icon img {
  width: 31px;
  height: 31px;
  filter: brightness(0) invert(1);
}
.snow-feature-card h3 {
  font-size: 25px;
  margin-bottom: 14px;
}
/* managers */
.snow-property-managers {
  position: relative;
  background: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
}
.snow-property-managers::after {
  content: "10X";
  position: absolute;
  right: -40px;
  bottom: -80px;
  font-family: var(--font-heading);
  font-size: 300px;
  font-weight: var(--weight-extrabold);
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}
.snow-property-managers h2 {
  color: var(--color-white);
}
.snow-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.snow-manager-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.snow-manager-row {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.snow-manager-row > span {
  width: 8px;
  height: 8px;
  background: var(--color-red);
  transform: rotate(45deg);
  margin-top: 10px;
}
.snow-manager-row p {
  color: rgba(255, 255, 255, 0.84);
}
.snow-manager-close {
  margin-top: 36px;
  padding: 22px 26px;
  border-left: 4px solid var(--color-red);
  background: rgba(255, 255, 255, 0.05);
}
/* residential */
.snow-residential {
  background: var(--color-light-gray);
}
.snow-residential-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}
.snow-residential-list {
  background: var(--color-white);
  padding: 36px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
  border-top: 6px solid var(--color-red);
}
.snow-residential-list h3 {
  font-size: 26px;
}
.snow-check-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}
.snow-check-row span {
  color: var(--color-red);
  font-weight: var(--weight-bold);
  font-size: 20px;
}
.snow-residential-note {
  max-width: 920px;
  margin-top: 34px;
  font-weight: var(--weight-semibold);
}
/* post-storm */
.snow-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 45px;
}
.snow-post-grid article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.snow-post-grid article > span {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: var(--weight-extrabold);
  color: var(--color-red);
}
.snow-post-grid p {
  color: rgba(255, 255, 255, 0.84);
}
.snow-post-note {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--color-red);
  font-weight: var(--weight-semibold);
}
/* why us */
.snow-why-us {
  background: var(--color-white);
}
.snow-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.snow-why-grid article {
  padding: 32px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  position: relative;
  transition: 0.35s ease;
}
.snow-why-grid article:hover {
  background: var(--color-black);
  color: var(--color-white);
  transform: translateY(-5px);
}
.snow-why-grid article:hover h3 {
  color: var(--color-white);
}
.snow-why-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.snow-why-top img {
  width: 38px;
  height: 38px;
}
.snow-why-top span {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: var(--weight-extrabold);
  color: rgba(183, 0, 0, 0.18);
}
.snow-why-grid h3 {
  font-size: 25px;
  margin-bottom: 14px;
  transition: color 0.35s ease;
}
/* service area */
.snow-service-area {
  position: relative;
  background: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
}
.snow-service-area h2 {
  color: var(--color-white);
}
.snow-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.snow-area-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}
.snow-area-list span {
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  transition: 0.3s ease;
}
.snow-area-list span:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  transform: translateY(-2px);
}
/* near me */
.snow-near-me {
  background: var(--color-white);
}
.snow-near-box {
  position: relative;
  padding: 52px;
  background: var(--color-light-gray);
  border-left: 8px solid var(--color-red);
  overflow: hidden;
}
.snow-near-box::after {
  content: "BUFFALO";
  position: absolute;
  right: -25px;
  bottom: -25px;
  font-family: var(--font-heading);
  font-size: 110px;
  font-weight: var(--weight-extrabold);
  color: rgba(26, 26, 26, 0.035);
  pointer-events: none;
}
.snow-near-columns {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.snow-near-action {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}
.snow-inline-phone {
  color: var(--color-red);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  text-decoration: none;
}
/* third storm */
.snow-third-storm {
  background: var(--color-light-gray);
}
.snow-storm-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.snow-storm-timeline article {
  position: relative;
  padding: 30px 24px;
  background: var(--color-white);
  border-right: 1px solid rgba(26, 26, 26, 0.1);
  border-top: 5px solid var(--color-black);
}
.snow-storm-timeline article.critical {
  background: var(--color-red);
  color: var(--color-white);
  border-top-color: var(--color-red);
}
.snow-storm-timeline article > span {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: var(--weight-extrabold);
  color: rgba(183, 0, 0, 0.22);
}
.snow-storm-timeline .critical > span {
  color: rgba(255, 255, 255, 0.5);
}
.snow-storm-timeline h3 {
  font-size: 23px;
  margin: 20px 0 12px;
}
.snow-storm-timeline .critical h3 {
  color: var(--color-white);
}
.snow-storm-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-top: 35px;
}
/* terminology */
.snow-terminology {
  position: relative;
  background: var(--color-black);
  color: var(--color-white);
}
.snow-terminology h2 {
  color: var(--color-white);
}
.snow-term-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 46px;
}
.snow-term-grid article {
  position: relative;
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.snow-term-grid article > span {
  display: block;
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: var(--weight-extrabold);
  color: rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
}
.snow-term-grid h3 {
  color: var(--color-white);
  font-size: 27px;
}
.snow-term-grid p {
  color: rgba(255, 255, 255, 0.82);
}
.snow-term-grid article:nth-child(3) {
  border-color: var(--color-red);
  background: rgba(183, 0, 0, 0.16);
}
.snow-term-note {
  margin-top: 30px;
  padding-left: 20px;
  border-left: 4px solid var(--color-red);
}
/* FAQ keeps homepage component CSS/JS */
.snow-removal-faq {
  background: var(--color-white);
}
.snow-removal-faq .snow-section-cta {
  margin-top: 42px;
}
/* closing */
.snow-closing-cta {
  position: relative;
  background-image: url("../img/hero/buffalo-ny-commercial-deicing-snow-removal.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.snow-closing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-black);
  opacity: 0.94;
}
.snow-closing-cta > .tx-section-inner {
  position: relative;
  z-index: 2;
}
.snow-closing-card {
  max-width: 1050px;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  color: var(--color-white);
}
.snow-closing-card h2 {
  color: var(--color-white);
}
.snow-closing-card > p:not(.sub-title-w) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
}
.snow-closing-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.snow-closing-actions .w-btn a {
  background: var(--color-white);
  color: var(--color-black);
}
.snow-closing-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
}
.snow-closing-meta a {
  color: var(--color-white);
  text-decoration: none;
}

@media (max-width: 1080px) {
  .snow-process-grid,
  .snow-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .snow-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .snow-feature-card,
  .snow-feature-card:nth-child(4),
  .snow-feature-card:nth-child(5) {
    grid-column: auto;
  }
  .snow-split,
  .snow-residential-grid,
  .snow-area-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .snow-near-columns {
    grid-template-columns: 1fr;
  }
  .snow-storm-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .snow-term-grid {
    grid-template-columns: 1fr;
  }
  .snow-area-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .snow-section-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }
  .snow-process-grid,
  .snow-feature-grid,
  .snow-post-grid,
  .snow-why-grid,
  .snow-storm-timeline,
  .snow-storm-copy {
    grid-template-columns: 1fr;
  }
  .snow-process-step {
    min-height: 0;
  }
  .snow-area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .snow-near-box,
  .snow-closing-card {
    padding: 34px 24px;
  }
  .snow-near-action,
  .snow-closing-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .snow-near-action .b-btn,
  .snow-near-action .b-btn a,
  .snow-closing-actions > div,
  .snow-closing-actions a {
    width: 100%;
  }
  .snow-inline-phone {
    text-align: center;
  }
  .snow-section-cta::after {
    font-size: 64px;
  }
  .sn-card .sn-cta-btn {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .sn-cta-btn-phone {
    white-space: normal;
  }
}
@media (max-width: 480px) {
  .snow-area-list {
    grid-template-columns: 1fr;
  }
  .snow-residential-list {
    padding: 28px 22px;
  }
  .snow-manager-row {
    grid-template-columns: 10px 1fr;
  }
  .snow-post-grid article {
    grid-template-columns: 42px 1fr;
    padding: 20px;
  }
  .snow-closing-meta {
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================================================
   SNOW REMOVAL PAGE REFINEMENTS · V6
   Page-scoped overrides only. No homepage/global selectors.
========================================================= */

/* 01 · OUR SERVICES — red-btn CTA + persistent phone */
.snow-removal-service .sn-card {
  display: flex;
  flex-direction: column;
}
.snow-removal-service .sn-card-list {
  margin-bottom: 28px;
}
.snow-removal-service .sn-card-actions {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.snow-removal-service .sn-card-actions .red-btn {
  flex: 0 1 auto;
}
.snow-removal-service .sn-card-phone {
  color: var(--color-black);
  font-family: var(--font-heading);
  font-weight: var(--weight-extrabold);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.snow-removal-service .sn-card-phone:hover {
  color: var(--color-red);
}
.snow-removal-service .sn-cta-btn {
  display: none;
}

/* Shared Climate-style CTA — Snow Removal page only */
.snow-climate-cta {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: stretch;
  min-height: 145px;
  margin-top: 55px;
  overflow: hidden;
  background: var(--color-black);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
  isolation: isolate;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.snow-climate-mark {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  background: var(--color-red);
  overflow: hidden;
}
.snow-climate-mark::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -25px;
  width: 55px;
  height: 140%;
  background: var(--color-black);
  transform: skewX(-18deg);
  transition: right 0.35s ease;
}
.snow-climate-mark span,
.snow-climate-mark small {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}
.snow-climate-mark span {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: var(--weight-extrabold);
  line-height: 1;
  letter-spacing: 1px;
}
.snow-climate-mark small {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--weight-bold);
  line-height: 1.25;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.snow-climate-copy {
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px 45px;
}
.snow-climate-copy::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 0;
  width: 3px;
  height: 50%;
  background: var(--color-red);
  transition:
    top 0.35s ease,
    height 0.35s ease;
}
.snow-climate-copy strong {
  max-width: 760px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: var(--weight-bold);
  line-height: 1.45;
}
.snow-climate-action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 215px;
  padding: 25px 30px;
  background: #242424;
}
.snow-climate-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: -35px;
  width: 70px;
  height: 100%;
  background: var(--color-black);
  transform: skewX(-18deg);
}
.snow-climate-action .red-btn {
  position: relative;
  z-index: 2;
}
.snow-climate-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}
.snow-climate-cta:hover .snow-climate-copy::before {
  top: 15%;
  height: 70%;
}
.snow-climate-cta:hover .snow-climate-mark::after {
  right: -15px;
}

/* 03 · LOCAL CONDITIONS — homepage Why Choose Us card language */
.snow-local-conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.snow-local-condition-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--color-white);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  border: 0;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}
.snow-local-condition-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
}
.snow-local-condition-topbar {
  position: relative;
  height: 9px;
  background: var(--color-black);
  overflow: hidden;
}
.snow-local-condition-topbar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 75px;
  background: var(--color-red);
  transform: skewX(-25deg);
  transform-origin: left;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.snow-local-condition-card:hover .snow-local-condition-topbar::after {
  width: 150px;
}
.snow-local-condition-content {
  position: relative;
  padding: 34px 30px 38px;
  flex: 1;
  overflow: hidden;
}
.snow-local-condition-content::before {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  background: var(--color-red);
  opacity: 0.045;
  transform: rotate(45deg);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
  pointer-events: none;
}
.snow-local-condition-card:hover .snow-local-condition-content::before {
  opacity: 0.09;
  transform: rotate(25deg) scale(1.12);
}
.snow-local-condition-content h3 {
  position: relative;
  margin: 0 0 16px;
  padding-left: 16px;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: var(--weight-extrabold);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.snow-local-condition-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--color-black);
}
.snow-local-condition-line {
  display: block;
  width: 46px;
  height: 3px;
  margin: 0 0 20px 16px;
  background: var(--color-red);
}
.snow-local-condition-content p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-dark-gray);
}

/* 04 · OUR PROCESS — same visual system as homepage process */
.snow-removal-process .snow-process-intro {
  max-width: 820px;
  color: var(--color-white);
  margin-bottom: 55px;
}
.snow-home-process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.snow-home-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr);
  min-width: 0;
  min-height: 275px;
  background: var(--color-white);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.snow-home-process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}
.snow-home-process-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
  overflow: visible;
  z-index: 2;
}
.snow-home-process-number::before {
  content: "";
  position: absolute;
  top: 0;
  right: -48px;
  width: 95px;
  height: 100%;
  background: var(--color-black);
  clip-path: polygon(45% 0, 100% 0, 68% 100%, 0 100%);
  z-index: 1;
}
.snow-home-process-number::after {
  content: "";
  position: absolute;
  top: 0;
  right: -22px;
  width: 82px;
  height: 100%;
  background: var(--color-red);
  clip-path: polygon(38% 0, 100% 0, 70% 100%, 0 100%);
  z-index: 2;
}
.snow-home-process-number span {
  position: relative;
  z-index: 5;
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: var(--weight-extrabold);
  line-height: 0.9;
  letter-spacing: -5px;
  color: var(--color-white);
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.snow-home-process-step:hover .snow-home-process-number span {
  transform: translateX(7px);
}
.snow-home-process-content {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 38px 34px 38px 78px;
  background: var(--color-white);
  overflow: hidden;
}
.snow-home-process-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--color-black);
  transition: background 0.35s ease;
}
.snow-home-process-step:hover .snow-home-process-content::before {
  background: var(--color-red);
}
.snow-home-process-bg {
  position: absolute;
  right: -12px;
  bottom: -22px;
  color: rgba(26, 26, 26, 0.035);
  font-family: var(--font-heading);
  font-size: 105px;
  font-weight: var(--weight-extrabold);
  pointer-events: none;
}
.snow-home-process-inner {
  position: relative;
  z-index: 2;
}
.snow-home-process-inner h3 {
  margin-bottom: 15px;
  font-size: 24px;
  color: var(--color-black);
}
.snow-home-process-inner p {
  margin: 0;
  color: var(--color-dark-gray);
}
.snow-process-cta {
  margin-top: 45px;
}

/* 05 · COMMERCIAL PROPERTIES — asymmetric editorial layout */
.snow-property-types {
  background: var(--color-white);
}
.snow-commercial-heading {
  max-width: 980px;
  margin-bottom: 50px;
}
.snow-commercial-heading > p:last-child {
  max-width: 820px;
}
.snow-commercial-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.snow-commercial-item {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  align-items: start;
  padding: 32px 30px;
  background: var(--color-light-gray);
  border: 1px solid rgba(26, 26, 26, 0.08);
  overflow: hidden;
  transition: 0.35s ease;
}
.snow-commercial-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--color-red);
  transform: scaleY(0.25);
  transform-origin: top;
  transition: 0.35s ease;
}
.snow-commercial-item:hover {
  transform: translateY(-5px);
  background: var(--color-white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}
.snow-commercial-item:hover::after {
  transform: scaleY(1);
}
.snow-commercial-featured {
  grid-column: 1 / -1;
  grid-template-columns: 100px minmax(0, 1fr);
  padding: 40px;
  background: var(--color-black);
  color: var(--color-white);
}
.snow-commercial-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
}
.snow-commercial-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}
.snow-commercial-item h3 {
  margin: 0 0 10px;
  font-size: 25px;
}
.snow-commercial-featured h3 {
  color: var(--color-white);
  font-size: 30px;
}
.snow-commercial-featured p {
  color: rgba(255, 255, 255, 0.78);
}
.snow-commercial-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-red);
  margin-bottom: 16px;
}

/* 06 · Residential CTA — same CTA language as Snow Removal hero */
.snow-residential-hero-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
  max-width: 930px;
}
.snow-residential-hero-cta .snow-removal-hero-cta {
  margin: 0;
  width: 100%;
}

/* Shared Emergency-style CTA — Snow Removal page only */
.snow-emergency-cta {
  width: 100%;
  padding: 40px;
  background: var(--color-white);
  border-left: 8px solid var(--color-red);
  display: grid;
  /*grid-template-columns: 220px minmax(0, 1fr) 245px;*/
  grid-template-columns: minmax(220px, 1fr) 245px;
  align-items: center;
  gap: 35px;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 46px;
}
.snow-emergency-title h3 {
  color: var(--color-black);
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
}
.snow-emergency-text p {
  color: var(--color-dark-gray);
  font-size: 17px;
  line-height: 1.45;
  margin: 0;
}
.snow-emergency-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.snow-emergency-buttons .red-btn,
.snow-emergency-buttons .b-btn,
.snow-emergency-buttons .red-btn a,
.snow-emergency-buttons .b-btn a {
  width: 100%;
  box-sizing: border-box;
}
.snow-emergency-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* 07 · POST-STORM — Emergency-style glass benefit cards; no numbers */
.snow-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.snow-post-grid article {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 3px solid var(--color-red);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}
.snow-post-grid article:hover {
  transform: translateY(-6px);
  background: rgba(183, 0, 0, 0.15);
  border-color: var(--color-red);
}
.snow-post-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
}
.snow-post-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}
.snow-post-grid h3 {
  color: var(--color-white);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 10px;
}
.snow-post-grid p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.snow-post-note {
  color: rgba(255, 255, 255, 0.82);
}

/* 08 · WHY 10X — Built for WNY Climate card language, no numbers */
.snow-why-us {
  background: var(--color-white);
}
.snow-climate-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 50px;
}
.snow-climate-card {
  position: relative;
  min-height: 255px;
  padding: 0;
  background: var(--color-light-gray);
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.snow-climate-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: var(--color-red);
  transition: height 0.35s ease;
  z-index: 0;
}
.snow-climate-card-content {
  position: relative;
  z-index: 2;
  padding: 34px 32px;
  height: 100%;
  box-sizing: border-box;
}
.snow-climate-card-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  width: 5px;
  height: 54px;
  background: var(--color-black);
  transition: 0.35s ease;
}
.snow-climate-card h3 {
  margin: 0 0 18px;
  font-size: 25px;
  transition: color 0.35s ease;
}
.snow-climate-divider {
  display: block;
  width: 48px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--color-red);
  transition: width 0.35s ease;
}
.snow-climate-card p {
  margin: 0;
  position: relative;
  z-index: 2;
}
.snow-climate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}
.snow-climate-card:hover::after {
  height: 100%;
  opacity: 0.06;
}
.snow-climate-card:hover h3 {
  color: var(--color-red);
}
.snow-climate-card:hover .snow-climate-divider {
  width: 75px;
}

/* 09 · SERVICE AREA — existing location icon in every location */
.snow-area-list span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: left;
}
.snow-area-list span img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  filter: brightness(0) invert(1);
}
.snow-area-list span:hover img {
  filter: brightness(0) invert(1);
}
.snow-climate-cta-on-dark {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* 10 · NEAR BUFFALO — single-service two-column editorial structure */
.snow-near-me {
  background: var(--color-white);
}
.snow-near-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}
.snow-near-left h2 {
  margin-bottom: 28px;
}
.snow-near-left > p:last-child {
  max-width: 630px;
}
.snow-near-right {
  padding-top: 38px;
}
.snow-near-copy {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}
.snow-near-copy:first-child {
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}
.snow-near-copy > span {
  position: relative;
  height: 100%;
  min-height: 70px;
  background: var(--color-black);
  clip-path: polygon(0 0, 100% 0, 35% 100%, 0 100%);
}
.snow-near-copy > span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 8px;
  width: 12px;
  height: 100%;
  background: var(--color-red);
  transform: skewX(-18deg);
}
.snow-near-copy p {
  margin: 0;
  align-self: center;
}
.snow-near-right .snow-near-action {
  margin-top: 30px;
}

/* 12 · KNOW THE DIFFERENCE — black glass, no numbers */
.snow-terminology {
  overflow: hidden;
}
.snow-terminology::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero/buffalo-ny-commercial-deicing-snow-removal.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.12;
  z-index: 0;
}
.snow-terminology > .tx-section-inner {
  position: relative;
  z-index: 2;
}
.snow-term-glass {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 46px;
}
.snow-term-glass article {
  position: relative;
  padding: 38px 32px;
  min-height: 285px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: 0.35s ease;
}
.snow-term-glass article:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}
.snow-term-glass article.is-removal {
  background: rgba(183, 0, 0, 0.18);
  border-color: rgba(183, 0, 0, 0.75);
}
.snow-term-accent {
  width: 54px;
  height: 5px;
  background: var(--color-red);
  margin-bottom: 28px;
  transform: skewX(-25deg);
}
.snow-term-glass h3 {
  color: var(--color-white);
  font-size: 28px;
  margin-bottom: 16px;
}
.snow-term-divider {
  display: block;
  width: 42px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}
.snow-term-glass p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.snow-term-note {
  color: rgba(255, 255, 255, 0.82);
}

/* 13 · Closing section — full normal section width + Emergency CTA */
.snow-closing-card {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}
.snow-closing-emergency {
  margin-top: 38px;
}

/* Responsive */
@media (max-width: 1080px) {
  .snow-climate-cta {
    grid-template-columns: 180px 1fr;
  }
  .snow-climate-action {
    grid-column: 1 / -1;
    min-width: 0;
    padding: 22px 30px;
    padding-top: 0px!important;
    background-color: var(--color-black);
  }
  .snow-climate-action::before {
    display: none;
  }
  .snow-local-conditions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .snow-home-process-steps {
    grid-template-columns: 1fr;
  }
  .snow-commercial-layout {
    grid-template-columns: 1fr;
  }
  .snow-commercial-featured {
    grid-column: auto;
  }
  .snow-emergency-cta {
    grid-template-columns: 1fr 1fr;
  }
  .snow-emergency-buttons {
    grid-column: 1 / -1;
    flex-direction: row;
  }
  .snow-climate-cards {
    grid-template-columns: 1fr;
  }
  .snow-near-split {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .snow-near-right {
    padding-top: 0;
  }
  .snow-term-glass {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .snow-removal-service .sn-card-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
  .snow-climate-cta {
    grid-template-columns: 1fr;
  }
  .snow-climate-mark {
    min-height: 105px;
  }
  .snow-climate-copy {
    padding: 28px 26px;
  }
  .snow-climate-action {
    grid-column: auto;
    justify-content: flex-start;
    padding: 24px 26px;
  }
  .snow-local-conditions-grid {
    grid-template-columns: 1fr;
  }
  .snow-home-process-step {
    grid-template-columns: 82px 1fr;
    min-height: 0;
  }
  .snow-home-process-number span {
    font-size: 52px;
    letter-spacing: -3px;
  }
  .snow-home-process-number::before {
    right: -35px;
    width: 70px;
  }
  .snow-home-process-number::after {
    right: -18px;
    width: 58px;
  }
  .snow-home-process-content {
    padding: 30px 22px 30px 48px;
  }
  .snow-commercial-item,
  .snow-commercial-featured {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
  .snow-residential-hero-cta {
    grid-template-columns: 1fr;
  }
  .snow-emergency-cta {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    gap: 22px;
  }
  .snow-emergency-buttons {
    grid-column: auto;
    flex-direction: column;
  }
  .snow-post-grid {
    grid-template-columns: 1fr;
  }
  .snow-near-copy {
    grid-template-columns: 42px 1fr;
    gap: 18px;
  }
  .snow-term-glass article {
    min-height: 0;
  }
}
@media (max-width: 480px) {
  .snow-climate-mark span {
    font-size: 30px;
  }
  .snow-climate-copy strong {
    font-size: 18px;
  }
  .snow-home-process-step {
    grid-template-columns: 65px 1fr;
  }
  .snow-home-process-number span {
    font-size: 42px;
  }
  .snow-home-process-content {
    padding-left: 38px;
  }
  .snow-post-grid article {
    display: block;
  }
  .snow-post-icon {
    margin-bottom: 18px;
  }
  .snow-near-copy {
    grid-template-columns: 28px 1fr;
  }
}
@media (min-width: 1025px) {
  .snow-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .snow-post-grid article:last-child {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   SNOW REMOVAL · DESIGN REFINEMENT 03
   Page-scoped overrides only
========================================================= */

/* Light Snow Removal sections: white base + existing white texture, never gray */
.snow-removal-service,
.snow-property-types,
.snow-residential,
.snow-near-me {
  background-color: var(--color-white);
  background-image: url("../img/white-bg.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: auto;
}

/* OUR SERVICES · compact Climate-style CTA instead of a button */
.snow-removal-service .sn-card {
  background: var(--color-white);
}
.snow-removal-service .sn-card-actions {
  display: none;
}
.snow-removal-service .sn-mini-climate-cta {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 42px;
  align-items: stretch;
  width: 100%;
  min-height: 66px;
  margin-top: auto;
  background: var(--color-black);
  color: var(--color-white);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.snow-removal-service .sn-mini-climate-mark {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: var(--weight-extrabold);
  letter-spacing: -1px;
}
.snow-removal-service .sn-mini-climate-mark::after {
  content: "";
  position: absolute;
  top: 0;
  right: -16px;
  width: 30px;
  height: 100%;
  background: var(--color-red);
  transform: skewX(-18deg);
  z-index: -1;
}
.snow-removal-service .sn-mini-climate-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  padding: 10px 17px 10px 28px;
}
.snow-removal-service .sn-mini-climate-copy strong {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: var(--weight-bold);
  line-height: 1.2;
  text-transform: uppercase;
}
.snow-removal-service .sn-mini-climate-copy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.snow-removal-service .sn-mini-climate-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #242424;
  color: var(--color-red);
  font-size: 24px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
.snow-removal-service .sn-mini-climate-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}
.snow-removal-service .sn-mini-climate-cta:hover .sn-mini-climate-arrow {
  color: var(--color-white);
  transform: translateX(2px);
}
.snow-removal-service .sn-card-phone {
  display: block;
  margin-top: 12px;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: var(--weight-bold);
  text-decoration: none;
}

/* OUR PROCESS · use the exact homepage card component without Snow-specific re-skinning */
.snow-removal-process .process-step {
  background: var(--color-white);
}
.snow-removal-process .process-content {
  background: var(--color-white);
}
.snow-removal-process .process-number {
  align-items: flex-start;
  justify-content: center;
  padding-top: 30px;
  background: var(--color-red);
}
.snow-removal-process .process-content::after {
  content: "";
  position: absolute;
  right: 0;
  top: 35px;
  width: 5px;
  height: 70px;
  background: var(--color-red);
  transition:
    height 0.4s ease,
    top 0.4s ease;
}
.snow-removal-process .process-step:hover .process-content::after {
  top: 25px;
  height: 100px;
}

/* COMMERCIAL PROPERTIES · every card uses the same light treatment */
.snow-property-types .snow-commercial-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.snow-property-types .snow-commercial-item,
.snow-property-types .snow-commercial-featured {
  grid-column: auto;
  /* min-height: 100%;*/
  background: var(--color-white);
  color: var(--color-black);
  border: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.snow-property-types .snow-commercial-item:last-child {
  grid-column: 1 / -1;
}
.snow-property-types .snow-commercial-item h3,
.snow-property-types .snow-commercial-featured h3 {
  color: var(--color-black);
  font-size: 25px;
}
.snow-property-types .snow-commercial-item p,
.snow-property-types .snow-commercial-featured p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--color-dark-gray);
}
.snow-property-types .snow-commercial-icon {
  background: var(--color-red);
}
.snow-property-types .snow-commercial-icon img {
  filter: brightness(0) invert(1);
}

/* RESIDENTIAL · same Emergency CTA component as Post-Storm */
.snow-residential .snow-residential-list {
  background: var(--color-white);
}
.snow-residential .snow-residential-emergency {
  margin-top: 38px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

/* NEAR BUFFALO · editorial two-column layout, all three paragraphs together, no cards */
.snow-near-me .snow-near-split {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 76px;
}
.snow-near-me .snow-near-right {
  padding-top: 36px;
}
.snow-near-me .snow-near-paragraphs {
  position: relative;
  padding-left: 28px;
  border-left: 4px solid var(--color-red);
}
.snow-near-me .snow-near-paragraphs p {
  width: 100%;
  max-width: none;
  margin: 0 0 22px;
}
.snow-near-me .snow-near-paragraphs p:last-child {
  margin-bottom: 0;
}
.snow-near-me .snow-near-action {
  margin-top: 32px;
}
.snow-near-me .snow-near-copy {
  display: none;
}

@media (max-width: 1080px) {
  .snow-property-types .snow-commercial-layout {
    grid-template-columns: 1fr;
  }
  .snow-property-types .snow-commercial-item:last-child {
    grid-column: auto;
  }
  .snow-near-me .snow-near-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .snow-near-me .snow-near-right {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .snow-removal-service .sn-mini-climate-cta {
    grid-template-columns: 52px minmax(0, 1fr) 38px;
  }
  .snow-removal-service .sn-mini-climate-copy {
    padding-left: 24px;
  }
  .snow-property-types .snow-commercial-item,
  .snow-property-types .snow-commercial-featured {
    grid-template-columns: 1fr;
  }
  .snow-near-me .snow-near-paragraphs {
    padding-left: 20px;
  }
}

/* =========================================================
   SNOW REMOVAL · DESIGN REFINEMENT 04
   Requested page-only adjustments
========================================================= */

/* White texture treatment — one image, never tiled */
.snow-removal-service,
.snow-local-conditions,
.snow-property-types,
.snow-residential,
.snow-third-storm {
  position: relative;
  background-color: var(--color-white);
  background-image: url("../img/white-bg.webp") !important;
  background-repeat: no-repeat !important;
  background-position: right center !important;
  background-size: cover !important;
}

/* FAQ and Near Buffalo stay clean white */
.snow-near-me,
.snow-removal-faq {
  background-color: var(--color-white) !important;
  background-image: none !important;
}

/* OUR SERVICES · phone is the compact CTA itself */
.snow-removal-service .sn-mini-climate-copy strong {
  font-size: 17px;
  letter-spacing: 0.2px;
}
.snow-removal-service .sn-mini-climate-copy small {
  font-size: 9px;
}
.snow-removal-service .sn-card-phone {
  display: none !important;
}

/* OUR PROCESS · same homepage process cards + fixed-scroll photo parallax */
.snow-removal-process.home-process {
  position: relative;
  background-image: url("../img/hero/buffalo-ny-commercial-deicing-snow-removal.webp") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  background-attachment: fixed;
}
.snow-removal-process .process-step,
.snow-removal-process .process-content {
  background: var(--color-white) !important;
}

/* COMMERCIAL PROPERTIES · explicit row + column spacing */
.snow-property-types .snow-commercial-layout {
  column-gap: 24px !important;
  row-gap: 24px !important;
}

/* RESIDENTIAL · white texture is a single covered image */
.snow-residential {
  background-repeat: no-repeat !important;
  background-position: right center !important;
  background-size: cover !important;
}

/* NEAR BUFFALO · full-width Why 10X / Climate style CTA */
.snow-near-me .snow-near-full-cta {
  width: 100%;
  margin-top: 46px;
}

/* LARGE ACCUMULATIONS · white texture background */
.snow-third-storm {
  background-repeat: no-repeat !important;
  background-position: right center !important;
  background-size: cover !important;
}

@media (max-width: 1080px) {
  /* Fixed backgrounds are unreliable/expensive on touch devices; preserve the visual without forcing attachment. */
  .snow-removal-process.home-process {
    background-attachment: scroll;
    background-position: center center !important;
  }
}

/* =========================================================
   SNOW REMOVAL · DESIGN REFINEMENT 05
   Page-only corrections requested
========================================================= */

/* ABOUT US, PLOWING VS. REMOVAL and FAQ — clean theme white */
.snow-removal-intro,
.snow-plowing-vs-removal,
.snow-removal-faq {
  background-color: var(--color-white) !important;
  background-image: none !important;
}

/* OUR SERVICES — service-specific action + phone in one compact CTA */
.snow-removal-service .sn-mini-climate-copy strong {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: var(--weight-bold);
  line-height: 1.2;
  text-transform: uppercase;
}
.snow-removal-service .sn-mini-climate-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-transform: none;
}

/* COMMERCIAL PROPERTIES — make vertical and horizontal card spacing explicit */
.snow-property-types .snow-commercial-layout {
  display: grid !important;
  column-gap: 28px !important;
  row-gap: 28px !important;
  gap: 28px !important;
}
.snow-property-types .snow-commercial-item,
.snow-property-types .snow-commercial-featured {
  margin: 0 !important;
}

@media (max-width: 768px) {
  .snow-removal-service .sn-mini-climate-copy strong {
    font-size: 13px;
  }
  .snow-removal-service .sn-mini-climate-copy small {
    font-size: 10px;
  }
  .snow-property-types .snow-commercial-layout {
    row-gap: 20px !important;
    column-gap: 20px !important;
    gap: 20px !important;
  }
}

/* =========================================================
   SNOW CLIMATE CTA · TABLET / MOBILE LAYOUT
   1024px and below:
   [ RED MARK ] [ TEXT   ]
   [ RED MARK ] [ BUTTON ]
========================================================= */
@media (max-width: 1080px) {
  .snow-climate-cta {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: stretch;
  }

  .snow-climate-mark {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
    align-self: stretch;
  }

  .snow-climate-copy {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    box-sizing: border-box;
  }

  .snow-climate-action {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    justify-content: flex-start;
  }

  .snow-climate-action::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .snow-climate-cta {
    grid-template-columns: 105px minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  .snow-climate-mark {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 100%;
    padding: 20px 16px;
  }

  .snow-climate-mark span {
    font-size: 28px;
  }

  .snow-climate-mark small {
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .snow-climate-copy {
    grid-column: 2;
    grid-row: 1;
    padding: 25px 22px;
  }

  .snow-climate-action {
    grid-column: 2;
    grid-row: 2;
    padding: 20px 22px 25px;
  }
}


/* =========================================================
   SNOW REMOVAL · FINAL V6 RESPONSIVE REFINEMENTS
========================================================= */
.snow-removal-faq .snow-faq-climate-cta { margin-top: 44px; }

@media (max-width: 1080px) {
  .snow-climate-cta {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: stretch;
  }
  .snow-climate-mark {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    min-height: 100%;
    align-self: stretch;
    box-sizing: border-box;
  }
  .snow-climate-copy { grid-column: 2; grid-row: 1; width: 100%; box-sizing: border-box; }
  .snow-climate-action { grid-column: 2; grid-row: 2; width: 100%; min-width: 0; box-sizing: border-box; justify-content: flex-start; }
  .snow-climate-action::before { display: none; }

  .snow-term-glass {
    grid-template-columns: 1fr;
    align-items: start;
    grid-auto-rows: auto;
  }
  .snow-term-glass article {
    min-height: 0 !important;
    height: auto !important;
    align-self: start;
  }
}

@media (max-width: 768px) {
  .snow-climate-cta { grid-template-columns: 105px minmax(0, 1fr); grid-template-rows: auto auto; }
  .snow-climate-mark { grid-column: 1; grid-row: 1 / 3; min-height: 100%; padding: 20px 16px; }
  .snow-climate-copy { grid-column: 2; grid-row: 1; padding: 25px 22px; }
  .snow-climate-action { grid-column: 2; grid-row: 2; padding: 20px 22px 25px; }
}


@media(max-width:480px){
    .snow-climate-action .w-btn a::after{
      display: none;
    }
}