:root {
  --ink: #18372e;
  --forest: #17382d;
  --forest-2: #235343;
  --cream: #f4efe5;
  --paper: #fffdf8;
  --rust: #bd6845;
  --line: #d9ded8;
  --muted: #66736e;
  --shadow: 0 18px 60px rgba(19, 48, 39, .13);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.top-note {
  padding: 8px 24px;
  color: #e9eee9;
  background: #102a22;
  text-align: center;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(24px, 5vw, 76px);
  background: rgba(255, 253, 248, .95);
  border-bottom: 1px solid rgba(24, 55, 46, .11);
  backdrop-filter: blur(15px);
}
.brand img, .footer-brand img { display: block; width: 175px; height: auto; }
.site-header nav { display: flex; justify-content: center; gap: 34px; }
.site-header nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .02em;
}
.site-header nav a:hover { color: var(--rust); }
.header-cta {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
}
.menu-toggle { display: none; }
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(780px, calc(100vh - 114px));
  overflow: hidden;
  color: white;
}
.hero-image, .hero-shade { position: absolute; inset: 0; }
.hero-image {
  background: url("assets/scenes/GX-FR-108.png") center 48% / cover no-repeat;
  transform: scale(1.025);
}
.hero-shade {
  background: linear-gradient(90deg, rgba(13, 37, 29, .89) 0%, rgba(16, 43, 34, .63) 45%, rgba(16, 43, 34, .08) 76%),
              linear-gradient(0deg, rgba(13, 34, 27, .48), transparent 48%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
  padding: 100px clamp(24px, 7vw, 110px) 110px;
}
.eyebrow {
  margin: 0 0 18px;
  color: #d7c29f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}
.eyebrow.dark { color: var(--rust); }
h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.035em;
}
h1 { max-width: 760px; font-size: clamp(50px, 6.1vw, 88px); }
h2 { font-size: clamp(38px, 4vw, 59px); }
.hero-lead { max-width: 650px; margin: 27px 0 34px; color: #edf1ed; font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}
.button.primary { color: white; background: var(--rust); }
.button.primary:hover { background: #a95638; }
.button.light { color: var(--ink); background: #fffdf8; }
.hero-card {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 5vw, 78px);
  bottom: 38px;
  padding: 22px 25px;
  min-width: 260px;
  background: rgba(255, 253, 248, .92);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.hero-card span, .hero-card b { display: block; }
.hero-card span { color: var(--rust); font-size: 10px; letter-spacing: .2em; }
.hero-card b { margin: 5px 0; font-family: Georgia, serif; font-size: 20px; }
.hero-card p { margin: 0; color: var(--muted); font-size: 12px; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(24px, 5vw, 76px);
  color: white;
  background: var(--forest);
}
.trust-strip div { padding: 25px 26px; border-right: 1px solid rgba(255,255,255,.15); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { font-family: Georgia, serif; font-size: 18px; font-weight: 500; }
.trust-strip span { margin-top: 3px; color: #aebeb8; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.section { padding: 110px clamp(24px, 6vw, 92px); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  gap: 65px;
  max-width: 1260px;
  margin: 0 auto 46px;
}
.section-heading > p { margin: 0; color: var(--muted); font-size: 14px; }
.section-heading.narrow { grid-template-columns: 1fr; }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 1260px;
  margin: 0 auto 24px;
}
.filters button {
  padding: 8px 13px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}
.filters button.active { color: white; background: var(--forest); border-color: var(--forest); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1260px;
  margin: auto;
}
.product-card {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid #e0e4df;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card .scene {
  position: relative;
  height: 238px;
  overflow: hidden;
  background: #eee9de;
}
.product-card .scene img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.product-card:hover .scene img { transform: scale(1.035); }
.product-card .scene span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  color: white;
  background: rgba(17, 49, 39, .88);
  font-size: 10px;
  letter-spacing: .08em;
}
.product-card-copy { padding: 18px; }
.product-card-copy small { color: var(--rust); font-weight: 800; }
.product-card h3 { min-height: 48px; margin: 7px 0 8px; font-family: Georgia, serif; font-size: 19px; line-height: 1.25; font-weight: 500; }
.quick-specs { display: flex; gap: 13px; margin: 0 0 16px; color: var(--muted); font-size: 11px; }
.product-card footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #eceeea; padding-top: 13px; }
.product-card footer b { font-size: 13px; }
.product-card footer button {
  color: var(--ink);
  background: none;
  border: 0;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}
.visual-break {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 70px clamp(24px, 7vw, 110px);
  background: linear-gradient(90deg, rgba(15, 41, 32, .05), rgba(15, 41, 32, .76)),
              url("assets/scenes/GX-FR-104.png") center / cover no-repeat;
}
.visual-copy { max-width: 545px; padding: 45px; color: white; background: rgba(19, 54, 43, .90); }
.visual-copy p:last-child { color: #d9e2dd; }
.capabilities { background: var(--cream); }
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1260px;
  margin: auto;
  border-top: 1px solid #cbd1ca;
}
.capability-grid article { min-height: 440px; padding: 34px 28px; border-right: 1px solid #cbd1ca; }
.capability-grid article:last-child { border-right: 0; }
.capability-grid span { color: var(--rust); font-size: 12px; }
.capability-visual { height: 205px; margin: 24px 0 22px; overflow: hidden; position: relative; background: #dfe4dc; box-shadow: 0 12px 28px #17382d12; }
.capability-photo { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 50%; transition: transform .45s ease; }
.capability-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, #102f2512, transparent 42%, #102f2520); pointer-events: none; }
.capability-logo { position: absolute; z-index: 2; top: 12px; left: 12px; width: 126px; height: auto; padding: 5px 7px; background: rgba(255,255,255,.92); box-shadow: 0 5px 18px #102f2530; }
.capability-grid article:hover .capability-photo { transform: scale(1.035); }
.capability-grid h3 { margin: 0 0 12px; font-family: Georgia, serif; font-size: 23px; font-weight: 500; }
.capability-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 690px; background: var(--forest); color: white; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-copy { align-self: center; padding: 80px clamp(35px, 6vw, 95px); }
.about-copy > p:not(.eyebrow) { color: #cad5d0; }
.about-copy dl { margin: 37px 0 0; border-top: 1px solid rgba(255,255,255,.18); }
.about-copy dl div { display: grid; grid-template-columns: 150px 1fr; gap: 15px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.about-copy dt { color: #99aca4; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.about-copy dd { margin: 0; font-size: 13px; }
.about-copy .company-cn { display: block; margin-top: 3px; color: #aec0b8; font-size: 11px; }
.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 8vw, 130px);
  color: white;
  background: #102a22;
}
.contact-intro > p:not(.eyebrow) { max-width: 540px; color: #afc0b9; }
.contact-direct { margin-top: 45px; }
.contact-direct span, .contact-direct a { display: block; }
.contact-direct span { color: #8da098; font-size: 11px; text-transform: uppercase; }
.contact-direct a { margin-top: 5px; color: white; font-family: Georgia, serif; font-size: 21px; }
form { display: flex; flex-direction: column; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
label { display: flex; flex-direction: column; gap: 7px; color: #cbd7d2; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  color: white;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 0;
  outline: none;
}
select option { color: #102a22; }
input:focus, select:focus, textarea:focus { border-color: #e3c39b; }
textarea { resize: vertical; }
.submit { align-self: flex-start; min-width: 185px; }
.form-status { min-height: 22px; margin: 0; color: #d9c197; font-size: 13px; }
.honeypot { position: absolute; left: -9999px; }
body > footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 45px;
  padding: 65px clamp(24px, 6vw, 92px) 95px;
  background: #f2eee5;
}
body > footer > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
body > footer b { margin-bottom: 7px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
body > footer a, body > footer span, .footer-brand p { color: var(--muted); text-decoration: none; font-size: 12px; }
.footer-brand p { margin: 12px 0; }
.copyright { position: absolute; bottom: 22px; left: clamp(24px, 6vw, 92px); color: #8a928e; font-size: 11px; }
dialog {
  width: min(920px, calc(100vw - 34px));
  max-height: calc(100vh - 34px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 25px 100px rgba(7, 25, 18, .45);
}
dialog::backdrop { background: rgba(9, 30, 23, .75); backdrop-filter: blur(4px); }
.dialog-close {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  width: 36px;
  height: 36px;
  color: white;
  background: rgba(15, 45, 35, .87);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 23px;
}
.dialog-grid { display: grid; grid-template-columns: 1fr 1fr; }
.dialog-images { display: grid; grid-template-rows: 1.15fr .85fr; min-height: 600px; background: #eeeae1; }
.dialog-images img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.dialog-images img:last-child { object-fit: contain; background: white; }
.dialog-copy { padding: 58px 43px; }
.dialog-copy > small { color: var(--rust); font-weight: 800; }
.dialog-copy h2 { margin: 8px 0 12px; font-size: 38px; }
.dialog-copy > p { color: var(--muted); font-size: 13px; }
.spec-table { margin: 25px 0; border-top: 1px solid var(--line); }
.spec-table div { display: grid; grid-template-columns: 135px 1fr; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.spec-table span { color: var(--muted); }
.dialog-note { padding: 11px 12px; color: #6d542c !important; background: #f5ead3; font-size: 11px !important; }
@media (max-width: 1020px) {
  .site-header { grid-template-columns: 180px 1fr 170px; padding: 0 24px; }
  .site-header nav { gap: 18px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid article { border-bottom: 1px solid #cbd1ca; }
  .hero-card { display: none; }
}
@media (max-width: 720px) {
  .top-note { font-size: 9px; }
  .site-header { grid-template-columns: 1fr auto; min-height: 68px; }
  .brand img { width: 145px; }
  .menu-toggle { display: block; padding: 7px 10px; background: none; border: 1px solid var(--line); }
  .site-header nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 25px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .site-header nav.open { display: flex; }
  .header-cta { display: none; }
  .hero { min-height: 700px; }
  .hero-copy { padding: 80px 22px 70px; }
  h1 { font-size: 50px; }
  .hero-shade { background: linear-gradient(90deg, rgba(12,38,28,.9), rgba(12,38,28,.43)); }
  .trust-strip { grid-template-columns: 1fr 1fr; padding: 0; }
  .trust-strip div { border-bottom: 1px solid rgba(255,255,255,.15); }
  .section { padding: 75px 20px; }
  .section-heading, .contact, .about, .form-row, .dialog-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card .scene { height: 300px; }
  .visual-break { min-height: 500px; padding: 20px; }
  .visual-copy { padding: 28px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid article { min-height: auto; border-right: 0; }
  .capability-visual { height: 280px; }
  .capability-grid h3 { margin-top: 0; }
  .about-image { height: 430px; }
  .about-copy { padding: 65px 22px; }
  .about-copy dl div { grid-template-columns: 115px 1fr; }
  body > footer { grid-template-columns: 1fr 1fr; padding: 50px 22px 90px; }
  .footer-brand { grid-column: 1 / -1; }
  .dialog-images { min-height: 440px; }
  .dialog-copy { padding: 38px 25px; }
}

/* V5.2.8 Google Ads readiness and compliance additions */
.inline-link { color: #f0dbc0; font-weight: 750; text-underline-offset: 4px; }
.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: #cbd7d2;
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}
.consent-row input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--rust); }
.consent-row a { color: white; text-underline-offset: 3px; }
.submit[disabled] { cursor: wait; opacity: .68; }
body > footer { grid-template-columns: 1.35fr repeat(4, minmax(130px, 1fr)); }
.footer-contact { min-width: 185px; }

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 20px;
  color: #edf2ef;
  background: rgba(16, 42, 34, .98);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 20px 65px rgba(5, 20, 14, .35);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; color: #cbd7d2; font-size: 12px; line-height: 1.55; }
.cookie-banner strong { color: white; }
.cookie-banner a { color: #ecd3b2; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button {
  min-height: 40px;
  padding: 0 14px;
  color: white;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}
.cookie-actions .accept { color: #17382d; background: #f1d5b0; border-color: #f1d5b0; }

.legal-shell { min-height: 100vh; background: var(--paper); }
.legal-hero {
  padding: 86px clamp(22px, 7vw, 110px) 72px;
  color: white;
  background: linear-gradient(120deg, #102a22, #235343);
}
.legal-hero .eyebrow { margin-bottom: 12px; }
.legal-hero h1 { max-width: 900px; font-size: clamp(44px, 6vw, 74px); }
.legal-hero p { max-width: 760px; margin: 22px 0 0; color: #d5e0db; }
.legal-content {
  display: grid;
  grid-template-columns: 250px minmax(0, 820px);
  gap: clamp(35px, 6vw, 90px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px clamp(22px, 6vw, 76px) 110px;
}
.legal-toc { align-self: start; position: sticky; top: 110px; display: flex; flex-direction: column; gap: 8px; }
.legal-toc b { margin-bottom: 8px; color: var(--rust); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.legal-toc a { color: var(--muted); text-decoration: none; font-size: 13px; }
.legal-toc a:hover { color: var(--rust); }
.legal-article h2 { margin: 52px 0 15px; font-size: clamp(28px, 3vw, 40px); letter-spacing: -.02em; }
.legal-article h2:first-child { margin-top: 0; }
.legal-article h3 { margin: 28px 0 10px; font-family: Georgia, serif; font-size: 22px; font-weight: 500; }
.legal-article p, .legal-article li { color: #4f5f59; font-size: 14px; }
.legal-article ul { padding-left: 22px; }
.legal-article li + li { margin-top: 8px; }
.legal-meta { padding: 14px 16px; color: #5b655f; background: #f1ede4; border-left: 3px solid var(--rust); font-size: 12px; }
.company-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
}
.company-card div { padding: 20px; background: white; }
.company-card span, .company-card b { display: block; }
.company-card span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.company-card b { margin-top: 5px; font-size: 14px; }
.legal-contact-box { margin-top: 35px; padding: 28px; color: white; background: var(--forest); }
.legal-contact-box a { color: white; }

.thank-you-main {
  min-height: calc(100vh - 114px);
  display: grid;
  place-items: center;
  padding: 70px 22px;
  background: linear-gradient(135deg, #eef2ec, #f8f1e5);
}
.thank-you-card { width: min(720px, 100%); padding: clamp(35px, 7vw, 74px); background: white; box-shadow: var(--shadow); text-align: center; }
.thank-you-mark { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 24px; color: white; background: var(--forest); border-radius: 50%; font-size: 31px; }
.thank-you-card h1 { font-size: clamp(42px, 6vw, 67px); }
.thank-you-card p { color: var(--muted); }
.reference-line { display: none; margin: 22px auto; padding: 10px 13px; max-width: 440px; background: #f2eee5; font-size: 12px; }
.reference-line.visible { display: block; }

.contact-page-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(45px, 8vw, 110px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 90px clamp(22px, 6vw, 76px) 110px;
}
.contact-page-grid form { padding: 34px; color: white; background: #102a22; }
.contact-page-grid .contact-details h2 { font-size: clamp(38px, 4vw, 56px); }
.contact-detail { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); }
.contact-detail span, .contact-detail b, .contact-detail a { display: block; }
.contact-detail span { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.contact-detail b, .contact-detail a { margin-top: 5px; font-size: 15px; }

@media (max-width: 1100px) {
  body > footer { grid-template-columns: 1.2fr repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .cookie-banner { grid-template-columns: 1fr; right: 10px; bottom: 10px; left: 10px; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }
  .legal-content, .contact-page-grid { grid-template-columns: 1fr; padding-top: 55px; }
  .legal-toc { position: static; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
  .company-card { grid-template-columns: 1fr; }
  body > footer { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

/* V5.2.9: WhatsApp contact, enterprise email and USD reference pricing */
.usd-price-note {
  padding: 16px 18px;
  border-left: 3px solid var(--rust);
  background: #f7f4ed;
  color: #53645e !important;
  font-size: 13px;
  line-height: 1.65;
}

.whatsapp-direct,
.footer-contact a[data-whatsapp-link],
.contact-detail a[data-whatsapp-link] {
  color: #1f7a4d;
  font-weight: 700;
}

.whatsapp-button {
  border-color: #1f7a4d !important;
  background: #1f7a4d;
  color: #fff !important;
}

/* V5.3.1: smart WhatsApp floating button fixed at the middle-right of the viewport */
.whatsapp-float {
  position: fixed;
  top: 50%;
  right: 18px;
  bottom: auto;
  z-index: 999;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 32px rgba(9, 63, 38, .34);
  text-decoration: none;
  transform: translateY(-50%);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:hover {
  background: #20bd5a;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 16px 38px rgba(9, 63, 38, .42);
}

.whatsapp-float:active {
  transform: translateY(-50%) scale(.97);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, .34);
  outline-offset: 4px;
}

.whatsapp-float-icon {
  display: block;
  width: 32px;
  height: 32px;
  color: #fff;
  line-height: 0;
}

.whatsapp-float-svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media (max-width: 720px) {
  .whatsapp-float {
    top: 50%;
    right: 12px;
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
  }
  .whatsapp-float-icon {
    width: 30px;
    height: 30px;
  }
  .whatsapp-float-label { display: none; }
}

}
