/* HOME V31
   Strong red hero in light mode, dark editorial service module,
   and fewer generic white-card patterns. */

:root {
  --zuhu-tech: #315a60;
  --zuhu-tech-soft: #dce9e9;
  --home-red: #ab1b14;
  --home-wine: #68100c;
  --home-charcoal: #172027;
  --home-charcoal-2: #222d34;
}

/* HERO — strong brand cover in light mode */
body.page-home .hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(255,255,255,.11), transparent 28rem),
    linear-gradient(128deg, var(--home-red) 0%, #8d1711 48%, var(--home-wine) 100%);
}

body.page-home .hero-copy h1 {
  color: #fff;
}

body.page-home .hero-copy > p,
body.page-home .hero .meta {
  color: rgba(255,255,255,.82);
}

body.page-home .hero .meta span::before {
  color: rgba(255,255,255,.92);
}

body.page-home .hero-copy .eyebrow {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
}

body.page-home .hero-copy .btn.primary {
  color: var(--home-red);
  border-color: #fff;
  background: #fff;
}

body.page-home .hero-copy .btn.primary:hover {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
}

body.page-home .hero-copy .btn:not(.primary) {
  color: #fff;
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
}

body.page-home .hero-copy .btn:not(.primary):hover {
  border-color: #fff;
  background: rgba(255,255,255,.15);
}

/* In light mode the browser and floating labels remain white */
html[data-theme="light"] body.page-home .hero-browser {
  border-color: rgba(31,42,50,.10);
  background: #fff;
  box-shadow: 0 34px 85px rgba(60,9,6,.30);
}

html[data-theme="light"] body.page-home .hero-browser .bar,
html[data-theme="light"] body.page-home .hero-brand-screen {
  background: #fff;
}

html[data-theme="light"] body.page-home .hero-browser .bar {
  border-color: rgba(31,42,50,.10);
}

html[data-theme="light"] body.page-home .hero-browser .bar small {
  color: #78828a;
}

html[data-theme="light"] body.page-home .showcase .float {
  color: #45515a;
  border-color: rgba(31,42,50,.10);
  background: rgba(255,255,255,.96);
  box-shadow: 0 20px 50px rgba(60,9,6,.22);
}

html[data-theme="light"] body.page-home .showcase .float strong {
  color: #202a32;
}

/* Dark theme: dark cover, but the animated brand object stays white */
html[data-theme="dark"] body.page-home .hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(171,27,20,.24), transparent 29rem),
    linear-gradient(128deg, #11171b 0%, #182127 52%, #260907 100%);
}

html[data-theme="dark"] body.page-home .hero-browser {
  border-color: rgba(255,255,255,.14);
  background: #fff;
  box-shadow: 0 34px 85px rgba(0,0,0,.44);
}

html[data-theme="dark"] body.page-home .hero-browser .bar,
html[data-theme="dark"] body.page-home .hero-brand-screen {
  background: #fff;
}

html[data-theme="dark"] body.page-home .hero-browser .bar {
  border-color: rgba(31,42,50,.10);
}

html[data-theme="dark"] body.page-home .hero-browser .bar small {
  color: #78828a;
}

html[data-theme="dark"] body.page-home .hero-brand-name {
  color: #171717 !important;
}

html[data-theme="dark"] body.page-home .showcase .float {
  color: #45515a;
  border-color: rgba(31,42,50,.10);
  background: rgba(255,255,255,.97);
  box-shadow: 0 20px 50px rgba(0,0,0,.34);
}

html[data-theme="dark"] body.page-home .showcase .float strong {
  color: #202a32;
}

/* TRUST STRIP */
body.page-home .trust {
  border-color: rgba(171,27,20,.18);
}

/* SERVICES — one editorial module, not three generic white cards */
.home-services .section-head,
.home-site-types .section-head {
  max-width: 780px;
}

.home-service-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 8%, rgba(171,27,20,.30), transparent 25rem),
    linear-gradient(145deg, var(--home-charcoal) 0%, var(--home-charcoal-2) 100%);
  box-shadow: 0 32px 80px rgba(23,32,39,.22);
}

.home-service-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, var(--home-red), #d63a31 48%, var(--home-wine));
}

.home-service-shell::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -145px;
  width: 330px;
  height: 330px;
  border: 48px solid rgba(171,27,20,.09);
  border-radius: 50%;
  pointer-events: none;
}

.home-service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 0;
}

.home-service-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 42px 36px 36px;
  color: #cbd2d6;
  background: transparent;
  transition: background .24s ease, transform .24s ease;
}

.home-service-card + .home-service-card {
  border-left: 1px solid rgba(255,255,255,.10);
}

.home-service-card:hover {
  background: rgba(255,255,255,.035);
}

.home-service-card::before {
  content: "";
  position: absolute;
  left: 36px;
  bottom: 0;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: var(--home-red);
  transform: scaleX(.45);
  transform-origin: left;
  transition: transform .24s ease;
}

.home-service-card:hover::before {
  transform: scaleX(1);
}

.home-service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ef6a62;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
}

.home-service-top i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  color: #fff;
  background: rgba(171,27,20,.28);
}

.home-service-top i::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.category-marketing .home-service-top i::after {
  border-radius: 50%;
}

.category-brand .home-service-top i::after {
  transform: rotate(45deg);
  border-radius: 2px;
}

.home-service-card h3 {
  max-width: 330px;
  margin-top: 46px;
  color: #fff;
  font-size: clamp(27px,2.25vw,35px);
}

.home-service-card > p {
  margin-top: 15px;
  color: #c4cdd2;
}

.home-service-card ul {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.home-service-card li {
  position: relative;
  padding-left: 20px;
  color: #aeb8be;
  font-size: 14px;
}

.home-service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ef6a62;
  font-weight: 900;
}

.home-service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 30px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.home-service-card > a b {
  color: #ef6a62;
  transition: transform .2s ease;
}

.home-service-card > a:hover b {
  transform: translateX(4px);
}


/* SITE TYPES — animated bento choices with modern CSS symbols */
.home-site-types {
  background:
    linear-gradient(180deg,var(--bg),color-mix(in srgb,var(--soft) 48%,var(--bg)));
}

.home-site-type-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}

.home-site-type-card {
  position: relative;
  display: grid;
  min-height: 250px;
  grid-template-columns: 1fr auto;
  align-content: end;
  gap: 14px 24px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  color: var(--ink);
  background: var(--card);
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(23,32,39,.07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.home-site-type-card:hover {
  transform: translateY(-7px);
  border-color: rgba(171,27,20,.30);
  box-shadow: 0 28px 65px rgba(23,32,39,.15);
}

.site-type-number {
  position: absolute;
  top: 22px;
  right: 26px;
  color: rgba(30,42,51,.08);
  font: 800 clamp(64px,7vw,94px)/.82 "Montserrat",sans-serif;
  letter-spacing: -.08em;
  transition: color .28s ease, transform .28s ease;
}

.home-site-type-card:hover .site-type-number {
  color: rgba(171,27,20,.15);
  transform: translateY(-3px);
}

.site-type-symbol {
  position: absolute;
  top: 28px;
  left: 30px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--home-charcoal);
  box-shadow: 0 14px 28px rgba(23,32,39,.16);
  transition: transform .32s ease;
}

.home-site-type-card:hover .site-type-symbol {
  transform: rotate(-5deg) scale(1.06);
}

.site-type-symbol i,
.site-type-symbol i::before,
.site-type-symbol i::after {
  position: absolute;
  display: block;
  content: "";
  box-sizing: border-box;
}

/* Present company: browser frame */
.site-type-1 .site-type-symbol i {
  width: 27px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 5px;
}
.site-type-1 .site-type-symbol i::after {
  left: 7px;
  bottom: -7px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

/* Sell products: modern cart */
.site-type-2 .site-type-symbol {
  background: var(--home-red);
}
.site-type-2 .site-type-symbol i {
  width: 25px;
  height: 17px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skew(-8deg);
}
.site-type-2 .site-type-symbol i::before,
.site-type-2 .site-type-symbol i::after {
  bottom: -8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}
.site-type-2 .site-type-symbol i::before { left: 3px; }
.site-type-2 .site-type-symbol i::after { right: 1px; }

/* Catalog: dynamic grid */
.site-type-3 .site-type-symbol {
  color: var(--home-charcoal);
  background: #f2e7e3;
}
.site-type-3 .site-type-symbol i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 12px 0 currentColor,0 12px currentColor,12px 12px currentColor;
  animation: site-grid-pulse 2.8s ease-in-out infinite;
}

/* Leads: directional arrow */
.site-type-4 .site-type-symbol {
  background: var(--zuhu-tech);
}
.site-type-4 .site-type-symbol i {
  width: 23px;
  height: 23px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}
.site-type-4 .site-type-symbol i::after {
  top: 9px;
  right: -3px;
  width: 28px;
  height: 3px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.site-type-content {
  grid-column: 1 / -1;
  max-width: 410px;
  padding-top: 88px;
}

.site-type-content h3 {
  font-size: clamp(24px,2.2vw,32px);
}

.site-type-content p {
  margin-top: 9px;
  color: var(--text);
}

.home-site-type-card > b {
  position: absolute;
  right: 28px;
  bottom: 27px;
  color: var(--home-red);
  font-size: 24px;
  transition: transform .24s ease;
}

.home-site-type-card:hover > b {
  transform: translate(4px,-4px);
}

/* Two colored cards avoid another wall of white */
.site-type-1 {
  color: #fff;
  border-color: rgba(255,255,255,.08);
  background: linear-gradient(145deg,#172027,#243039);
}
.site-type-1 .site-type-number { color: rgba(255,255,255,.07); }
.site-type-1 .site-type-content p { color: #bdc7cc; }
.site-type-1 > b { color: #ef6a62; }

.site-type-2 {
  color: #fff;
  border-color: rgba(255,255,255,.08);
  background: linear-gradient(145deg,#ab1b14,#78110c);
}
.site-type-2 .site-type-number { color: rgba(255,255,255,.09); }
.site-type-2 .site-type-content p { color: #f2d2cf; }
.site-type-2 > b { color: #fff; }

@keyframes site-grid-pulse {
  0%,100% { opacity:.45; transform:scale(.86); }
  50% { opacity:1; transform:scale(1); }
}

.home-site-extras {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
}

.home-site-extras > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.home-site-extras > div span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--card);
  font-size: 12px;
  font-weight: 700;
}

.swatch-tech {
  position: absolute;
  right: 42px;
  top: 44px;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--zuhu-tech);
}

.home-about .section-head {
  margin-bottom: 0;
}


/* PROJECTS — lighter visual stages, protected client logos and smaller mockup titles */
.project-carousel-section .carousel-project-visual {
  background: linear-gradient(145deg,#f1e7e4,#d8c1bd) !important;
}

.project-carousel-section .project-theme-witness-electrical .carousel-project-visual {
  background: linear-gradient(145deg,#e8eef0,#cdd9dd) !important;
}
.project-carousel-section .project-theme-logmine .carousel-project-visual {
  background: linear-gradient(145deg,#eee7f0,#d6c8db) !important;
}
.project-carousel-section .project-theme-bennys-pet-market .carousel-project-visual {
  background: linear-gradient(145deg,#f6ead9,#dfc5a6) !important;
}
.project-carousel-section .project-theme-cmic-durango .carousel-project-visual {
  background: linear-gradient(145deg,#e5eee7,#c9dbce) !important;
}
.project-carousel-section .project-theme-petrologia-avanzada .carousel-project-visual {
  background: linear-gradient(145deg,#f4e8df,#ddc6b6) !important;
}

.project-carousel-section .carousel-browser {
  border-color: rgba(30,42,51,.14);
  background: #fff;
  box-shadow: 0 30px 70px rgba(45,28,25,.20);
}

.project-carousel-section .carousel-screen > strong {
  max-width: 390px;
  font-size: clamp(25px,2.6vw,42px) !important;
  line-height: 1.04 !important;
}

.project-carousel-section .client-logo {
  border-color: rgba(30,42,51,.11) !important;
  background: rgba(255,255,255,.96) !important;
  box-shadow: 0 12px 28px rgba(30,42,51,.11) !important;
}

/* White client logos keep a charcoal badge */
.project-carousel-section .client-logo-cmic-durango,
.project-carousel-section .client-logo-witness-electrical,
.project-carousel-section .client-logo-petrologia-avanzada {
  border-color: rgba(255,255,255,.12) !important;
  background: #222c33 !important;
}

/* PACKAGE PREVIEW — one accessible starting price + custom quote */
.package-preview-offer {
  display: grid;
  gap: 12px;
}

.package-starting-price {
  display: grid;
  gap: 7px;
  padding: 28px;
  border: 1px solid rgba(171,27,20,.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(171,27,20,.08), transparent 13rem),
    var(--card);
}

.package-starting-price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.package-starting-price strong {
  color: var(--home-red);
  font: 800 clamp(34px,4vw,54px)/1 "Montserrat",sans-serif;
  letter-spacing: -.04em;
}

.package-starting-price span {
  color: var(--text);
  font-size: 14px;
}

.package-custom-note {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border-left: 4px solid var(--home-red);
  border-radius: 14px;
  background: color-mix(in srgb,var(--soft) 62%,var(--card));
}

.package-custom-note b {
  color: var(--ink);
}

.package-custom-note span {
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.package-preview-offer .btn {
  width: 100%;
}

/* FINAL BANNER — more life without repeating the dog-circle motif */
.home-contact {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0,1fr) 240px auto;
  overflow: hidden;
}

.home-contact::before {
  content: "";
  position: absolute;
  right: 19%;
  bottom: -135px;
  width: 290px;
  height: 290px;
  border: 42px solid rgba(255,255,255,.09);
  border-radius: 50%;
  pointer-events: none;
}

.home-contact-copy {
  position: relative;
  z-index: 2;
}

.home-contact-art {
  position: relative;
  z-index: 2;
  min-height: 160px;
}

.contact-mini-window {
  position: absolute;
  inset: 18px 0 8px 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  box-shadow: 0 20px 45px rgba(75,8,5,.18);
  transform: rotate(-3deg);
  transition: transform .3s ease;
}

.home-contact:hover .contact-mini-window {
  transform: rotate(0deg) translateY(-4px);
}

.contact-mini-window > span {
  position: absolute;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
}
.contact-mini-window > span:nth-child(1) { left: 17px; }
.contact-mini-window > span:nth-child(2) { left: 30px; }
.contact-mini-window > span:nth-child(3) { left: 43px; }

.contact-mini-window > i {
  position: absolute;
  left: 20px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.30);
}
.contact-mini-window > i:nth-of-type(1) {
  top: 58px;
  width: 72%;
}
.contact-mini-window > i:nth-of-type(2) {
  top: 76px;
  width: 48%;
}

.contact-mini-window > b {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #fff;
  font-size: 12px;
}

.contact-floating-note {
  position: absolute;
  right: -16px;
  top: -3px;
  padding: 12px 15px;
  border-radius: 14px;
  color: var(--home-red);
  background: #fff;
  box-shadow: 0 16px 34px rgba(75,8,5,.20);
  font-size: 11px;
  line-height: 1.35;
  animation: contact-note-float 4.6s ease-in-out infinite;
}

.contact-floating-note strong {
  color: #202a32;
}

@keyframes contact-note-float {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-7px); }
}

@media (max-width:980px) {
  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card {
    min-height: 0;
  }

  .home-service-card + .home-service-card {
    border-top: 1px solid rgba(255,255,255,.10);
    border-left: 0;
  }

  .home-site-type-grid {
    grid-template-columns: 1fr;
  }

  .home-site-type-card:nth-child(odd),
  .home-site-type-card:nth-child(even) {
    padding-inline: 8px;
    border-right: 0;
  }
}

@media (max-width:700px) {
  body.page-home .hero {
    background: linear-gradient(145deg,var(--home-red),var(--home-wine));
  }

  .home-service-shell {
    border-radius: 27px;
  }

  .home-service-card {
    padding: 30px 24px;
  }

  .home-service-card h3 {
    margin-top: 30px;
  }

  .home-site-extras {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-site-extras .btn {
    width: 100%;
  }

  .home-site-type-card {
    grid-template-columns: 48px 1fr;
    padding-block: 22px;
  }

  .home-site-type-card > span {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }
}


/* V30 refinements */

/* Large editorial numbering */
.home-service-top {
  position: relative;
  min-height: 72px;
}

.home-service-top > span {
  color: rgba(255,255,255,.14);
  font: 800 clamp(58px,6.2vw,82px)/.78 "Montserrat", sans-serif;
  letter-spacing: -.08em;
}

.home-service-card:hover .home-service-top > span {
  color: rgba(239,106,98,.26);
}

/* The site objective rows are now actual links */
.home-site-type-card {
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: background .22s ease, padding .22s ease;
}

.home-site-type-card > b {
  justify-self: end;
  color: var(--home-red);
  font-size: 20px;
  transition: transform .22s ease;
}

.home-site-type-card:hover {
  background: color-mix(in srgb, var(--card) 62%, transparent);
  padding-inline-start: 18px;
}

.home-site-type-card:hover > b {
  transform: translateX(5px);
}

/* Stronger featured-project label */
.project-carousel-section .section-head .eyebrow {
  color: var(--home-red);
  border-color: rgba(255,255,255,.68);
  background: #fff;
  box-shadow: 0 10px 28px rgba(54,7,5,.18);
}

/* Keep the separator visible where the hero begins directly below the menu */
body.page-home header#header + main .hero {
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width:980px) {
  .home-service-top > span {
    font-size: 64px;
  }
}

@media (max-width:700px) {
  .home-service-top {
    min-height: 58px;
  }

  .home-service-top > span {
    font-size: 52px;
  }

  .home-site-type-card {
    grid-template-columns: 48px 1fr auto;
  }
}


@media (max-width:980px) {
  .home-site-type-grid {
    grid-template-columns: 1fr;
  }

  .home-contact {
    grid-template-columns: 1fr auto !important;
  }

  .home-contact-art {
    display: none;
  }
}

@media (max-width:700px) {
  .home-site-type-card {
    min-height: 225px;
    padding: 24px;
  }

  .site-type-number {
    font-size: 66px;
  }

  .site-type-symbol {
    top: 22px;
    left: 24px;
  }

  .site-type-content {
    padding-top: 78px;
  }

  .home-contact {
    grid-template-columns: 1fr !important;
  }
}

/* V32 — explicit contrast for site-type cards */
.site-type-1,
.site-type-2 {
  color: #fff !important;
}

.site-type-1 .site-type-content h3,
.site-type-2 .site-type-content h3 {
  color: #fff !important;
}

.site-type-1 .site-type-content p {
  color: #c9d2d7 !important;
}

.site-type-2 .site-type-content p {
  color: #f5d9d6 !important;
}

.site-type-1 .site-type-number,
.site-type-2 .site-type-number {
  color: rgba(255,255,255,.12) !important;
}

.site-type-1:hover {
  background: linear-gradient(145deg,#1b252c,#2a3740) !important;
}

.site-type-2:hover {
  background: linear-gradient(145deg,#b72018,#82130e) !important;
}

/* Keep symbols and arrows readable on dark cards. */
.site-type-1 .site-type-symbol,
.site-type-2 .site-type-symbol {
  color: #fff !important;
}

.site-type-1 > b,
.site-type-2 > b {
  color: #fff !important;
}

/* Dark theme: ensure the two light cards remain readable too. */
html[data-theme="dark"] .site-type-3,
html[data-theme="dark"] .site-type-4 {
  border-color: rgba(255,255,255,.10);
  background: #20282e;
}

html[data-theme="dark"] .site-type-3 .site-type-content h3,
html[data-theme="dark"] .site-type-4 .site-type-content h3 {
  color: #fff !important;
}

html[data-theme="dark"] .site-type-3 .site-type-content p,
html[data-theme="dark"] .site-type-4 .site-type-content p {
  color: #c5cdd2 !important;
}



/* HOME HERO LABELS V40
   The service type is the main message; the client is supporting context. */
body.page-home .showcase .float {
  min-width: 195px;
}

body.page-home .showcase .float small {
  max-width: 220px;
  line-height: 1.2;
  letter-spacing: .025em;
}

body.page-home .showcase .float strong {
  font-size: 15px;
  line-height: 1.2;
}

@media (max-width:700px) {
  body.page-home .showcase .float {
    min-width: 160px;
  }

  body.page-home .showcase .float strong {
    font-size: 13px;
  }
}


/* HOME HERO LABELS V41
   Service names only; no client names in the Home hero. */
body.page-home .showcase .float {
  min-width: 195px;
  max-width: 225px;
  place-items: center;
  padding: 18px 20px;
  text-align: center;
}

body.page-home .showcase .float strong {
  font-size: 14px;
  line-height: 1.25;
  text-wrap: balance;
}

@media (max-width:700px) {
  body.page-home .showcase .float {
    min-width: 155px;
    max-width: 185px;
    padding: 14px 16px;
  }

  body.page-home .showcase .float strong {
    font-size: 12px;
  }
}
