:root {
  --navy: #051f43;
  --navy-900: #031733;
  --blue: #0957b8;
  --blue-700: #0b4ea2;
  --yellow: #ffb800;
  --ink: #0d213f;
  --muted: #526176;
  --line: #dce5f0;
  --paper: #f8fbff;
  --white: #ffffff;
  --shadow: 0 16px 38px rgba(5, 31, 67, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

img,
svg {
  display: block;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.svg-sprite {
  display: none;
}

svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-strip {
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  gap: 28px;
  align-items: center;
  min-height: 40px;
  padding: 8px clamp(20px, 5vw, 58px);
  color: var(--white);
  background: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

.top-strip span,
.top-strip a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  white-space: nowrap;
}

.top-strip svg {
  width: 17px;
  height: 17px;
}

.top-strip a {
  justify-self: end;
  color: var(--yellow);
  font-size: 19px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  gap: 32px;
  align-items: center;
  padding: 19px clamp(20px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(5, 31, 67, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--navy);
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 96px;
  height: 54px;
  color: var(--blue);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.brand-mark::after {
  position: absolute;
  right: 2px;
  top: 7px;
  width: 18px;
  height: 38px;
  background: var(--yellow);
  clip-path: polygon(48% 0, 100% 0, 61% 43%, 100% 43%, 31% 100%, 45% 55%, 0 55%);
  content: "";
}

.brand strong {
  display: block;
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 0.98;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 11px 0;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  content: "";
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav .is-active::after {
  transform: scaleX(1);
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.quote-button,
.button,
.footer-button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.quote-button,
.button-primary,
.footer-button {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 10px 20px rgba(255, 184, 0, 0.23);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(360px, 1.06fr);
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 47% 50%, rgba(255, 255, 255, 0.96) 0 12%, rgba(255, 255, 255, 0.72) 18%, rgba(255, 255, 255, 0) 43%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 46%, #e7edf5 100%);
}

.hero-copy {
  z-index: 2;
  display: grid;
  align-content: center;
  padding: 54px clamp(20px, 5vw, 62px);
}

h1 {
  max-width: 630px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy > p {
  max-width: 460px;
  margin: 22px 0 0;
  color: #283954;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.button-primary {
  min-width: 238px;
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 24px rgba(9, 87, 184, 0.22);
}

.button-secondary {
  min-width: 220px;
  color: var(--blue);
  background: var(--white);
  border-color: var(--blue);
}

.hero-note {
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 430px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-note strong {
  display: block;
  color: var(--ink);
}

.hero-media {
  position: relative;
  min-height: 430px;
  margin: 0;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.12) 34%, rgba(255, 255, 255, 0));
  content: "";
}

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

.trust-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(1180px, calc(100% - 40px));
  margin: -31px auto 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.trust-panel article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 15px;
  align-items: center;
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-panel article:last-child {
  border-right: 0;
}

.trust-panel svg {
  width: 50px;
  height: 50px;
  color: var(--yellow);
  stroke-width: 1.7;
}

.trust-panel h2,
.trust-panel p {
  margin: 0;
}

.trust-panel h2 {
  font-size: 15px;
}

.trust-panel p {
  margin-top: 6px;
  color: #d8e4f4;
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 40px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.12;
}

.section-heading p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-grid article,
.related-grid a,
.feature-list article,
.contact-card,
.contact-details article,
.detail-panel {
  display: grid;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(5, 31, 67, 0.08);
}

.service-grid article {
  padding: 0;
}

.service-grid article > a {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px 18px;
  align-items: center;
  min-height: 150px;
  padding: 24px;
}

.service-grid svg {
  grid-row: span 2;
  width: 64px;
  height: 64px;
  padding: 13px;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 999px;
  stroke-width: 1.8;
}

.service-grid h3,
.service-grid p {
  margin: 0;
}

.service-grid h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.12;
}

.service-grid p {
  color: #35445b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.32;
}

.projects {
  padding-top: 18px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.project-grid figure {
  margin: 0;
}

.project-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 12px 24px rgba(5, 31, 67, 0.12);
}

.project-grid figcaption {
  margin-top: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.page-hero {
  padding: clamp(52px, 8vw, 92px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(5, 31, 67, 0.96), rgba(5, 31, 67, 0.86)),
    url("assets/hero-electrical-panel.jpg") center / cover;
}

.page-hero > div {
  max-width: 860px;
}

.page-hero .eyebrow {
  color: var(--yellow);
}

.page-hero h1 {
  color: var(--white);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #dce9f9;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
}

.gallery-page {
  background: var(--paper);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 24px;
}

.gallery-filters span {
  padding: 9px 14px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(5, 31, 67, 0.1);
}

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

.gallery-grid figcaption {
  display: grid;
  gap: 5px;
  padding: 14px 16px 16px;
  color: var(--ink);
  font-weight: 900;
}

.gallery-grid figcaption span {
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
}

.split-section,
.contact-page,
.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.9fr);
  gap: clamp(22px, 5vw, 52px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.split-section h2,
.contact-card h2,
.detail-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.1;
}

.split-section p:not(.eyebrow),
.contact-card p,
.detail-panel p {
  color: #35445b;
  font-size: 18px;
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-list article {
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
}

.feature-list svg {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  color: var(--blue);
}

.feature-list h3,
.feature-list p {
  margin: 0;
}

.feature-list p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.feature-photo {
  margin: 0;
}

.feature-photo img {
  width: 100%;
  height: min(560px, 62vw);
  object-fit: cover;
  object-position: center 42%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-page {
  align-items: stretch;
}

.contact-card {
  align-content: center;
  min-height: 360px;
  background: var(--paper);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details article {
  align-content: center;
  gap: 8px;
}

.contact-details strong {
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-details a,
.contact-details span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.service-detail {
  align-items: stretch;
}

.detail-panel {
  align-content: start;
  gap: 12px;
}

.detail-panel ul {
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
  padding-left: 20px;
  color: #35445b;
  font-weight: 800;
}

.detail-panel-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.detail-panel-dark h2,
.detail-panel-dark ul {
  color: var(--white);
}

.detail-panel-dark .eyebrow {
  color: var(--yellow);
}

.service-process {
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.related-grid a {
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
}

.related-grid svg {
  width: 48px;
  height: 48px;
  padding: 10px;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 999px;
}

.team-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 64px;
}

.team-copy {
  max-width: 520px;
}

.team-copy h2,
.team-copy p {
  margin: 0;
}

.team-copy h2 {
  color: var(--navy);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
}

.team-copy p:not(.eyebrow) {
  margin-top: 16px;
  color: #35445b;
  font-size: 18px;
  font-weight: 700;
}

.team-photo {
  margin: 0;
}

.team-photo img {
  width: 100%;
  height: min(560px, 62vw);
  object-fit: cover;
  object-position: center 42%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.process {
  padding-top: 24px;
  padding-bottom: 48px;
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: 1080px;
  margin: 0 auto;
}

.steps article {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
}

.steps article:not(:last-child)::after {
  position: absolute;
  right: -34px;
  top: 50%;
  width: 34px;
  border-top: 2px dashed #a6b8cd;
  content: "";
}

.steps span {
  position: absolute;
  top: 3px;
  left: 67px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.steps svg {
  width: 78px;
  height: 78px;
  padding: 19px;
  color: var(--blue);
  background: #edf5ff;
  border-radius: 999px;
}

.steps h3,
.steps p {
  margin: 0;
}

.steps h3 {
  font-size: 17px;
}

.steps p {
  margin-top: 6px;
  color: #35445b;
  font-size: 14px;
  font-weight: 700;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, auto) minmax(220px, auto);
  gap: 28px;
  align-items: center;
  padding: 36px clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 184, 0, 0.1), transparent 34%),
    linear-gradient(120deg, #061f43, #063b79 72%, #0a57b7);
}

.footer h2 {
  max-width: 490px;
  margin: 0;
  font-size: clamp(28px, 4vw, 43px);
  line-height: 1.14;
}

.footer h2::after {
  color: var(--yellow);
  content: " safely.";
}

.footer address {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.36);
  font-style: normal;
}

.footer address span {
  color: #dce9f9;
  font-size: 14px;
  font-weight: 700;
}

.footer-phone {
  color: var(--white);
  font-size: clamp(25px, 3.5vw, 38px);
  font-weight: 900;
  white-space: nowrap;
}

.footer-profile-link {
  color: #dce9f9;
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-profile-link:hover,
.footer-profile-link:focus-visible {
  color: var(--white);
}

.footer-button {
  justify-self: end;
  min-width: 220px;
}

.footer p {
  grid-column: 3;
  justify-self: end;
  margin: -18px 0 0;
  color: #dce9f9;
  font-size: 13px;
  font-weight: 800;
}

.floating-actions {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  gap: 12px;
}

.floating-action {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(5, 31, 67, 0.22);
  cursor: pointer;
}

.floating-action svg {
  width: 27px;
  height: 27px;
  stroke-width: 2.3;
}

.floating-action-top {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  transition: opacity 160ms ease, transform 160ms ease;
}

.floating-action-top[hidden] {
  display: grid;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
}

.floating-action-whatsapp {
  color: var(--white);
  background: #25d366;
}

.floating-action-whatsapp svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
  stroke: none;
  transform: none;
}

.floating-action:focus-visible {
  outline: 3px solid rgba(255, 184, 0, 0.72);
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  .hero,
  .trust-panel,
  .service-grid,
  .project-grid,
  .gallery-grid,
  .split-section,
  .contact-page,
  .service-detail,
  .related-grid,
  .team-feature,
  .steps,
  .footer {
    grid-template-columns: 1fr;
  }

  .top-strip {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 38px;
    padding: 8px 20px;
    overflow: hidden;
    font-size: 11px;
    line-height: 1;
  }

  .top-strip span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-strip span:nth-of-type(2),
  .top-strip span:nth-of-type(3) {
    display: none;
  }

  .top-strip a {
    justify-self: end;
    font-size: 16px;
  }

  .site-header {
    position: static;
    grid-template-columns: minmax(128px, auto) 1fr auto;
    gap: 10px;
    padding: 12px 20px;
  }

  .nav {
    display: none;
  }

  .mobile-menu {
    display: contents;
  }

  .mobile-menu summary {
    display: grid;
    gap: 4px;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    place-content: center;
    width: 44px;
    height: 44px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(5, 31, 67, 0.09);
    cursor: pointer;
  }

  .mobile-menu summary span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
  }

  .mobile-menu-panel {
    grid-column: 1 / -1;
    grid-row: 2;
    z-index: 30;
    display: grid;
    width: 100%;
    margin-top: 8px;
    padding: 8px 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
  }

  .mobile-menu-panel a {
    padding: 11px 14px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.15;
    text-align: left;
  }

  .mobile-menu-panel a:hover,
  .mobile-menu-panel a:focus-visible {
    background: var(--paper);
  }

  .hero {
    background: var(--white);
  }

  .hero-media {
    min-height: 300px;
  }

  .hero-media::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72));
  }

  .hero-media img {
    min-height: 300px;
  }

  .trust-panel {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .trust-panel article,
  .trust-panel article:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .steps {
    gap: 20px;
  }

  .steps article:not(:last-child)::after {
    display: none;
  }

  .footer-button,
  .footer p {
    grid-column: auto;
    justify-self: start;
  }

  .footer p {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .top-strip {
    font-size: 12px;
  }

  .top-strip a {
    font-size: 15px;
  }

  .site-header {
    gap: 8px;
  }

  .brand-mark {
    width: 62px;
    height: 38px;
    font-size: 29px;
  }

  .brand-mark::after {
    right: 0;
    top: 4px;
    width: 12px;
    height: 28px;
  }

  .brand strong {
    font-size: 14px;
  }

  .quote-button,
  .button,
  .footer-button {
    width: 100%;
    min-height: 52px;
  }

  .quote-button {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: auto;
    min-height: 44px;
    padding: 0 14px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero-copy {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  h1 {
    font-size: 41px;
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-note {
    align-items: flex-start;
  }

  .trust-panel article {
    min-height: 94px;
    padding: 18px 20px;
  }

  .service-grid article > a {
    grid-template-columns: 62px 1fr;
    min-height: 130px;
    padding: 18px;
  }

  .service-grid svg {
    width: 54px;
    height: 54px;
    padding: 11px;
  }

  .project-grid img {
    height: 238px;
  }

  .page-hero {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .gallery-grid img {
    height: 280px;
  }

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

  .feature-photo img {
    height: 360px;
  }

  .team-photo img {
    height: 360px;
  }

  .steps article {
    grid-template-columns: 68px 1fr;
  }

  .steps span {
    left: 56px;
  }

  .steps svg {
    width: 66px;
    height: 66px;
    padding: 16px;
  }

  .footer address {
    padding-left: 0;
    border-left: 0;
  }

  .footer address a {
    white-space: normal;
  }

  .floating-actions {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    gap: 10px;
  }

  .floating-action {
    width: 60px;
    height: 60px;
  }

  .floating-action-whatsapp svg {
    width: 40px;
    height: 40px;
    transform: none;
  }
}

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

  .floating-action-top {
    transition: none;
  }
}
