:root {
  color-scheme: light;
  --ink: #161816;
  --muted: #5c625d;
  --line: #d8ded6;
  --paper: #f3f5ef;
  --white: #ffffff;
  --field: #fbfcf8;
  --green: #31584c;
  --teal: #2b7c82;
  --amber: #b07a2b;
  --dark: #121714;
  --steel: #6f817b;
  --shadow: 0 20px 60px rgba(22, 24, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 3vw, 40px);
  background: rgba(247, 248, 244, 0.94);
  border-bottom: 1px solid rgba(22, 24, 22, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 196px;
}

.brand img {
  width: 116px;
  height: auto;
}

.brand span {
  width: 96px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  flex-wrap: nowrap;
}

.main-nav a {
  padding: 9px 9px;
  color: #30352f;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  border-radius: 6px;
}

.main-nav a:hover {
  background: rgba(43, 124, 130, 0.1);
  color: var(--teal);
}

.main-nav .quote-link {
  margin-left: 4px;
  background: var(--ink);
  color: var(--white);
}

.main-nav .quote-link:hover {
  background: var(--teal);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero,
.page-hero,
.form-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.home-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(760px, calc(100vh - 116px));
  padding: 72px clamp(18px, 5vw, 72px) 42px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 13, 12, 0.86) 0%, rgba(10, 13, 12, 0.66) 44%, rgba(10, 13, 12, 0.16) 100%),
    url("/assets/product-images/009.jpg") center / cover no-repeat;
  color: var(--white);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.form-hero {
  grid-template-columns: minmax(0, 880px);
  min-height: auto;
  padding-bottom: 24px;
}

.hero-copy,
.page-hero > div,
.form-hero > div {
  max-width: 820px;
}

.home-hero .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero .eyebrow,
.split-band .eyebrow,
.cta-band .eyebrow {
  color: #9dd5cc;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 68px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero p,
.page-hero p,
.form-hero p,
.section-intro p,
.cta-band p {
  color: var(--muted);
  font-size: 20px;
}

.home-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.cta-actions,
.section-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.home-hero .button.primary,
.split-band .button.primary,
.cta-band .button.primary {
  background: var(--white);
  color: var(--ink);
}

.button.primary:hover {
  background: var(--teal);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.hero-media,
.page-hero img {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home-hero .hero-media {
  display: none;
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 860px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-specs div {
  min-height: 96px;
  padding: 14px 18px;
  background: rgba(15, 20, 18, 0.72);
  backdrop-filter: blur(16px);
}

.hero-specs span,
.scope-board-head span {
  display: block;
  margin-bottom: 10px;
  color: #a8d7d0;
  font-size: 12px;
  font-weight: 900;
}

.hero-specs strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.hero-specs small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.hero-media img,
.page-hero img {
  width: 100%;
  height: min(62vh, 560px);
  min-height: 520px;
  padding: 10px;
  background: linear-gradient(135deg, #f8faf5, #e5ebe2);
  object-fit: contain;
}

.hero-media figcaption {
  padding: 16px 18px;
  background: var(--white);
  color: var(--green);
  font-weight: 800;
}

.band,
.split-band,
.cta-band,
.project-dashboard,
.form-section {
  padding: clamp(58px, 7vw, 104px) clamp(18px, 5vw, 72px);
}

.project-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: stretch;
  background: var(--dark);
  color: var(--white);
}

.dashboard-copy {
  max-width: 760px;
}

.dashboard-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}

.scope-board {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: #eef2ec;
  color: var(--ink);
  border-radius: 8px;
}

.scope-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.scope-board-head span {
  margin: 0;
  color: var(--teal);
}

.scope-board-head strong {
  padding: 7px 10px;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.scope-list span {
  min-height: 44px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #313832;
  font-size: 13px;
  font-weight: 800;
}

.board-link {
  justify-self: start;
  color: var(--teal);
  font-weight: 900;
}

.band.light {
  background: var(--white);
}

.section-intro {
  max-width: 860px;
  margin-bottom: 34px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.capability-item {
  min-height: 132px;
  padding: 22px;
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.capability-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.capability-item strong {
  display: block;
  font-size: 21px;
  line-height: 1.18;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.system-card {
  position: relative;
  overflow: visible;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.image-preview-trigger {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(135deg, #f9faf6, #e8eee5);
  cursor: zoom-in;
}

.image-preview-trigger:focus-visible {
  outline: 3px solid rgba(43, 124, 130, 0.28);
  outline-offset: 3px;
}

.image-preview-trigger::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(22, 24, 22, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 22px rgba(22, 24, 22, 0.14);
}

.image-preview-trigger::before {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 9px;
  z-index: 1;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: rgba(22, 24, 22, 0.72);
  transform: rotate(45deg);
  transform-origin: center;
}

.image-preview-trigger img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  padding: 12px;
  object-fit: contain;
  transition: filter 180ms ease;
}

.image-preview-trigger:hover img,
.image-preview-trigger:focus-visible img {
  filter: saturate(1.05) contrast(1.03);
}

.system-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(22, 24, 22, 0.12);
}

.system-card > div {
  padding: 18px;
}

.image-hover-panel {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 70;
  width: min(560px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  padding: 12px;
  border: 1px solid rgba(22, 24, 22, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(18, 23, 20, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-9999px, -9999px, 0) scale(0.98);
  transition: opacity 120ms ease, transform 120ms ease;
  visibility: hidden;
}

.image-hover-panel.is-visible {
  opacity: 1;
  transform: translate3d(var(--preview-x, 0), var(--preview-y, 0), 0) scale(1);
  visibility: visible;
}

.image-hover-panel img {
  width: 100%;
  max-height: calc(100vh - 112px);
  object-fit: contain;
  border-radius: 6px;
  background: linear-gradient(135deg, #f9faf6, #e8eee5);
}

.image-hover-panel span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(10, 13, 12, 0.88);
}

body.has-image-lightbox {
  overflow: hidden;
}

.image-lightbox figure {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(1120px, 100%);
  margin: 0;
}

.image-lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

.image-lightbox figcaption {
  color: var(--white);
  font-weight: 850;
  text-align: center;
}

.image-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.model {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

dl {
  margin: 16px 0 0;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

dd {
  margin: 2px 0 10px;
  font-weight: 750;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  background: var(--dark);
  color: var(--white);
}

.split-band p {
  color: rgba(255, 255, 255, 0.72);
}

.workflow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.workflow-list span {
  color: #9ed8d0;
  font-weight: 900;
}

.workflow-list strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 20px;
}

.workflow-list p {
  margin: 0;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: #e8efe8;
}

.cta-band > div:first-child {
  max-width: 850px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.detail-panel {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-panel p:not(.eyebrow) {
  color: var(--muted);
}

.detail-panel ul,
.legal-content ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.legal-hero {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px) 34px;
  background: var(--paper);
}

.legal-hero > div {
  max-width: 900px;
}

.legal-hero h1 {
  max-width: 860px;
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.legal-hero small {
  color: var(--steel);
  font-weight: 800;
}

.legal-section {
  padding: 0 clamp(18px, 5vw, 72px) clamp(58px, 7vw, 104px);
}

.legal-content {
  display: grid;
  gap: 16px;
  max-width: 980px;
}

.legal-content article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content h2 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.12;
}

.legal-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--teal);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-section {
  padding-top: 0;
}

.rfq-form {
  display: grid;
  gap: 18px;
  max-width: 1120px;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

legend {
  padding: 0 8px;
  font-size: 20px;
  font-weight: 900;
}

label {
  display: grid;
  gap: 8px;
}

label.full {
  grid-column: 1 / -1;
}

label span {
  color: #30352f;
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--field);
  border: 1px solid #cfd7ce;
  border-radius: 6px;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(43, 124, 130, 0.2);
  border-color: var(--teal);
}

.file-input small {
  color: var(--muted);
}

.form-note {
  padding: 18px 20px;
  background: #edf4ef;
  border: 1px solid #bfd5cc;
  border-radius: 8px;
}

.form-note strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

.form-note p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
}

.form-note a {
  color: var(--teal);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.form-submit p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(280px, 404px) minmax(190px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 72px) 108px;
  background: var(--ink);
  color: var(--white);
}

.footer-brand {
  justify-self: start;
}

.site-footer img {
  width: 120px;
  filter: invert(1);
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact {
  display: grid;
  justify-items: center;
  justify-self: center;
  gap: 7px;
  width: min(100%, 404px);
  min-width: 280px;
  padding: 16px 18px 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
}

.footer-contact span {
  color: #9dd5cc;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 850;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.footer-contact a:hover {
  color: #c8f2ea;
}

.footer-links {
  display: flex;
  justify-self: end;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 430px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 15px 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: #1f9f5f;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(18, 23, 20, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #17884f;
  box-shadow: 0 22px 50px rgba(18, 23, 20, 0.28);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(157, 213, 204, 0.65);
  outline-offset: 3px;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  fill: currentColor;
}

.whatsapp-float span {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.whatsapp-float strong {
  font-size: 14px;
  font-weight: 850;
  line-height: 1.1;
}

.whatsapp-float small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 1320px) {
  .brand {
    min-width: 128px;
  }

  .brand span {
    display: none;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .nav-toggle {
    display: block;
  }

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

  .home-hero {
    align-items: flex-end;
    min-height: min(760px, calc(100vh - 116px));
    background-position: 60% center;
  }

  .hero-specs,
  .project-dashboard {
    grid-template-columns: 1fr;
  }

  .scope-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media img,
  .page-hero img {
    height: 360px;
    min-height: 360px;
  }

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

@media (max-width: 760px) {
  .brand span {
    display: none;
  }

  .hero,
  .page-hero,
  .form-hero {
    min-height: auto;
  }

  .home-hero {
    min-height: min(720px, calc(100vh - 116px));
    padding-top: 58px;
    background-position: 66% center;
  }

  h1 {
    font-size: 44px;
    line-height: 1;
  }

  h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .hero p,
  .page-hero p,
  .form-hero p,
  .section-intro p,
  .cta-band p,
  .dashboard-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-specs {
    display: none;
  }

  .capability-grid,
  .detail-grid,
  .system-grid,
  .split-band,
  .cta-band,
  .project-dashboard,
  fieldset {
    grid-template-columns: 1fr;
  }

  .scope-list {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: start;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-links {
    justify-self: start;
  }

  .footer-contact {
    justify-items: center;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .page-hero img {
    height: 300px;
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-bottom: 88px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    justify-content: center;
    gap: 0;
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .cta-actions,
  .section-actions,
  .form-submit {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

}
