:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eef4f8;
  --text: #17212b;
  --muted: #5f6e7d;
  --line: #dce4ec;
  --brand: #0a6bb8;
  --brand-dark: #074f87;
  --accent: #17a36b;
  --accent-soft: #e8f7f0;
  --warning: #f4a42f;
  --shadow: 0 18px 45px rgba(22, 42, 65, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(10, 107, 184, 0.2);
  outline-offset: 3px;
}

p {
  margin: 0 0 16px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.top-bar {
  background: #0f263b;
  color: #dbe8f3;
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 7px;
  color: #304152;
  font-weight: 650;
  font-size: 14px;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--surface-soft);
  color: var(--brand-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 10px;
  color: #496174;
  font-size: 13px;
  font-weight: 800;
}

.language-switch a + a {
  border-left: 1px solid var(--line);
}

.language-switch a.is-active {
  background: var(--surface-soft);
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  width: 58px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: var(--brand);
  color: #fff;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10, 107, 184, 0.18);
}

.btn.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--brand-dark);
}

.btn.secondary:hover {
  background: var(--surface-soft);
  box-shadow: none;
}

.btn.accent {
  background: var(--accent);
}

.btn.accent:hover {
  background: #128257;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #edf5fb 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 36px;
  align-items: center;
  min-height: 620px;
  padding: 48px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #126b4d;
  font-size: 13px;
  font-weight: 750;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  line-height: 1.15;
}

h1 {
  max-width: 720px;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.015em;
}

h3 {
  font-size: 22px;
}

.hero-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.hero-point {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: #34485a;
  font-size: 14px;
  font-weight: 650;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9e6f0;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #eef3f7;
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(300px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(22, 42, 65, 0.14);
}

.hero-badge strong {
  display: block;
  margin-bottom: 5px;
}

.hero-badge span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 76px 0;
}

.section.tight {
  padding: 54px 0;
}

.section.white {
  background: var(--surface);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--muted);
}

.link-arrow {
  color: var(--brand-dark);
  font-weight: 800;
}

.link-arrow::after {
  content: " ->";
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(22, 42, 65, 0.05);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.card:hover,
.application:hover,
.product-card:not(.card):hover {
  border-color: rgba(10, 107, 184, 0.28);
  box-shadow: 0 14px 34px rgba(22, 42, 65, 0.09);
  transform: translateY(-2px);
}

.card-pad {
  padding: 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card:not(.card) {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(22, 42, 65, 0.05);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.product-thumb {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 22px;
  background: linear-gradient(135deg, #eff5f9, #ffffff);
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-card h3 {
  margin-bottom: 9px;
  font-size: 19px;
}

.product-card h3 a {
  color: inherit;
}

.product-card h3 a:hover,
.card h3 a:hover,
.application h3 a:hover {
  color: var(--brand-dark);
}

.product-card p {
  color: var(--muted);
  font-size: 15px;
}

.product-card:not(.card) h3 {
  padding: 18px 18px 0;
}

.product-card:not(.card) p {
  padding: 0 18px 18px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: #395168;
  font-size: 12px;
  font-weight: 750;
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #eef3f7;
}

.category-card .card-pad {
  min-height: 260px;
}

.factory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.factory-card-large {
  grid-column: auto;
}

.factory-card {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
  min-height: 0;
}

.factory-card img {
  display: block;
  width: 100%;
  height: 210px;
  aspect-ratio: auto;
  object-fit: cover;
  background: #eef3f7;
}

.factory-card-large img {
  height: 210px;
  min-height: 210px;
  aspect-ratio: auto;
  object-fit: cover;
}

.factory-card .card-pad {
  padding: 18px;
}

.factory-card h3 {
  margin-bottom: 7px;
}

.factory-card p {
  color: var(--muted);
  font-size: 14px;
}

.category-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.category-list li {
  position: relative;
  padding-left: 18px;
}

.category-list li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: center;
}

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

.feature-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: #35485b;
  font-weight: 650;
}

.application {
  min-height: 0;
  padding: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(15, 38, 59, 0.08), rgba(15, 38, 59, 0.02)),
    #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.application img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef3f7;
}

.application h3 {
  padding: 22px 22px 0;
  margin-bottom: 10px;
}

.application p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.number {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.number strong {
  display: block;
  color: var(--brand-dark);
  font-size: 30px;
  line-height: 1.1;
}

.number span {
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0f263b, #0a6bb8);
  color: #fff;
}

.cta-band h2,
.cta-band h3 {
  color: #fff;
}

.cta-band p {
  max-width: 760px;
  color: #dcebf6;
}

.cta-band .btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.page-hero {
  padding: 64px 0;
  background: linear-gradient(180deg, #ffffff, #eef5fb);
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.page-hero p {
  max-width: 720px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.page-hero img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #eef3f7;
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--brand-dark);
  font-weight: 700;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 96px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.sidebar h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.side-links {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.side-links a {
  display: block;
  padding: 10px;
  border-radius: 7px;
  color: #395168;
  font-weight: 650;
}

.side-links a:hover,
.side-links a.is-active {
  background: var(--surface-soft);
  color: var(--brand-dark);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.spec-table th,
.spec-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 32%;
  background: var(--surface-soft);
  color: #2d4358;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 34px;
  align-items: start;
}

.detail-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.detail-panel h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.detail-panel h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.detail-panel .clean-list,
.faq-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-panel .clean-list li,
.faq-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.quote-box {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-box h3 {
  margin-bottom: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

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

label {
  color: #33495d;
  font-size: 14px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(10, 107, 184, 0.16);
  border-color: var(--brand);
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  background: #0f263b;
  color: #dce8f2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, minmax(0, 0.8fr));
  gap: 28px;
  padding: 52px 0;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #bed0df;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a9bdce;
  font-size: 14px;
}

.social-note {
  margin-top: 14px;
  color: #a9bdce;
  font-size: 14px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
}

.article-layout {
  max-width: 860px;
  margin: 0 auto;
}

.article-layout h2 {
  margin: 34px 0 14px;
  font-size: 30px;
}

.article-layout h3 {
  margin: 24px 0 10px;
  font-size: 21px;
}

.article-layout p {
  color: var(--muted);
  font-size: 17px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.article-card p {
  color: var(--muted);
}

.article-cta {
  margin-top: 34px;
}

.mobile-quote-bar {
  display: none;
}

.support-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.support-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: #0f263b;
  color: #fff;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(15, 38, 59, 0.24);
  cursor: pointer;
}

.support-toggle:hover {
  background: var(--brand-dark);
}

.support-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(23, 163, 107, 0.16);
}

.support-panel {
  width: min(330px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 48px rgba(15, 38, 59, 0.2);
}

.support-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.support-panel p {
  color: var(--muted);
  font-size: 14px;
}

.support-close {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.support-actions {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.support-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--brand-dark);
  font-weight: 800;
}

.support-actions a:hover {
  background: var(--surface-soft);
}

.support-actions .support-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.support-actions .support-primary:hover {
  background: var(--brand-dark);
}

.support-actions .support-whatsapp {
  background: #20b15a;
  border-color: #20b15a;
  color: #fff;
}

.support-actions .support-whatsapp:hover {
  background: #178d47;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.seo-list {
  columns: 2;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.seo-list li {
  break-inside: avoid;
  margin-bottom: 7px;
}

@media (max-width: 980px) {
  .top-bar .container {
    flex-direction: column;
    gap: 4px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-actions .btn {
    display: none;
  }

  .language-switch {
    margin-left: auto;
  }

  .hero-grid,
  .page-hero .container,
  .split,
  .detail-layout,
  .contact-grid,
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .sidebar {
    position: static;
  }

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

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

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

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

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

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(100% - 24px, var(--max));
  }

  .section {
    padding: 54px 0;
  }

  .hero-grid {
    padding: 36px 0 48px;
  }

  .hero-points,
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .factory-grid,
  .numbers,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .factory-card-large {
    grid-column: auto;
    grid-row: auto;
  }

  .factory-card img,
  .factory-card-large img {
    height: 240px;
    min-height: 240px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band {
    padding: 24px;
  }

  .seo-list {
    columns: 1;
  }

  .mobile-quote-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 8px;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 32px rgba(10, 107, 184, 0.26);
  }

  .support-widget {
    right: 12px;
    bottom: 76px;
  }

  .support-toggle {
    min-height: 44px;
    padding: 10px 14px;
  }
}
