:root {
  --ink: #0b0b0d;
  --muted: #62666d;
  --line: #dedfe3;
  --paper: #f7f7f5;
  --white: #ffffff;
  --steel: #191b1f;
  --rust: #df0b17;
  --cedar: #a7a9ae;
  --green: #24262a;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
  --logo-font: "Orbitron", "Arial Black", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.announcement {
  position: relative;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 10px 64px;
  border-bottom: 1px solid var(--line);
  color: #8a94a6;
  background: var(--white);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.announcement p {
  margin: 0;
}

.announcement a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  color: var(--rust);
  font-weight: 800;
  text-decoration: underline;
}

.announcement button {
  position: absolute;
  top: 50%;
  right: clamp(18px, 3vw, 40px);
  width: 34px;
  height: 34px;
  border: 0;
  color: #667085;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 92px;
  padding: 14px clamp(18px, 5vw, 96px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(23, 33, 43, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 0;
  border-radius: 4px;
  background: transparent;
  filter: none;
}

.brand img {
  display: block;
  width: clamp(188px, 18vw, 278px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  margin-left: auto;
  color: #344054;
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-transform: none;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  cursor: pointer;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--rust);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--rust);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-left: clamp(18px, 3vw, 52px);
  padding: 0 26px;
  border-radius: 8px;
  color: var(--white);
  background: var(--rust);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(223, 11, 23, 0.18);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  place-items: center;
  color: var(--ink);
  background: #fbfbfb;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.58) 52%, rgba(255, 255, 255, 0.74) 100%),
    radial-gradient(circle at 82% 18%, rgba(223, 11, 23, 0.06), transparent 34%);
  content: "";
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1200ms ease, transform 5600ms ease;
}

.hero-slideshow img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(rgba(17, 24, 39, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.25) 88%, transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 142px) 0 clamp(64px, 8vw, 104px);
  text-align: center;
}

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

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

h1 {
  max-width: 1120px;
  margin: 0 auto 24px;
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 em {
  color: var(--rust);
  font-style: italic;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.about-copy h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.hero-copy {
  max-width: 860px;
  margin: 0 auto 28px;
  color: #4f5f73;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
}

.hero-copy strong,
.hero-copy span {
  display: block;
}

.hero-copy strong {
  margin-bottom: 8px;
  color: #101828;
  font-size: clamp(20px, 2.4vw, 31px);
  line-height: 1.35;
}

.hero-copy span {
  max-width: 820px;
  margin: 0 auto;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button.secondary {
  color: inherit;
  border-color: currentColor;
  background: transparent;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #b90812;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats div {
  min-height: 132px;
  padding: 28px clamp(18px, 4vw, 48px);
  background: var(--white);
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.stats span {
  display: block;
  max-width: 320px;
  color: var(--muted);
  line-height: 1.55;
}

.section,
.service-band,
.contact-section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 6vw, 82px);
}

.section-heading {
  max-width: 960px;
  margin-bottom: 34px;
}

.product-section .section-heading h2 {
  max-width: 780px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.14;
}

.product-section .section-heading p:not(.eyebrow) {
  max-width: 900px;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
}

.section-heading p,
.about-copy p,
.service-copy p,
.contact-copy p,
.about-panel p,
.product-card p {
  color: var(--muted);
  line-height: 1.7;
}

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

.product-card {
  display: block;
  overflow: hidden;
  min-height: 270px;
  padding: 0 0 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--rust);
  border-radius: 8px;
  color: inherit;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: var(--rust);
  box-shadow: 0 20px 42px rgba(23, 33, 43, 0.14);
  outline: 0;
  transform: translateY(-6px);
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.product-card h3,
.product-card p {
  padding-inline: 22px;
}

.product-card h3 {
  margin-top: 22px;
  font-weight: 900;
}

.product-detail {
  margin-top: clamp(32px, 5vw, 56px);
  scroll-margin-top: 120px;
}

.product-detail[hidden] {
  display: none;
}

.product-detail h2 {
  margin-bottom: 18px;
  color: #101828;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.product-detail > p {
  max-width: 980px;
  margin-bottom: clamp(28px, 5vw, 56px);
  color: #4f5f73;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.5;
}

.detail-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #66717f;
  font-size: clamp(15px, 1.4vw, 19px);
}

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

.detail-table th {
  color: #111111;
  font-weight: 900;
  background: #fafafa;
}

.detail-table tr:last-child td {
  border-bottom: 0;
}

.detail-table td:nth-child(3) {
  max-width: 360px;
  line-height: 1.65;
}

.availability {
  display: inline-flex;
  min-width: 58px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #07883f;
  background: #c9efc6;
  font-size: 15px;
  font-weight: 700;
}

.text-detail {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.07);
}

.text-detail > p {
  max-width: 960px;
  margin-bottom: 28px;
}

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

.text-detail-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbfb;
}

.text-detail-grid h3 {
  margin-bottom: 12px;
  color: #101828;
  font-size: 20px;
}

.text-detail-grid p,
.text-detail-grid li {
  color: #4f5f73;
  font-size: 16px;
  line-height: 1.7;
}

.text-detail-grid ul {
  margin: 0;
  padding-left: 20px;
}

.text-detail-grid p {
  margin-bottom: 0;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding-block: clamp(54px, 7vw, 84px);
  color: var(--white);
  background: linear-gradient(135deg, #101114 0%, #24262a 100%);
}

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

.service-copy h2 {
  max-width: 720px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
}

.service-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.65;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-list div {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.service-list span {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  background: var(--rust);
}

.service-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  line-height: 1.5;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.about-panel {
  padding: 32px;
  border-left: 5px solid var(--rust);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-section {
  padding-block: clamp(44px, 6vw, 72px);
  background: var(--white);
}

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

.contact-heading .eyebrow {
  margin-bottom: 8px;
  color: var(--rust);
  text-transform: none;
}

.contact-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 3vw, 40px);
}

.contact-heading p {
  color: #4f5f73;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.45;
}

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

.contact-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 260px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfbfb;
  text-align: center;
}

.contact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--rust);
  background: rgba(223, 11, 23, 0.07);
  box-shadow: 0 0 0 7px rgba(223, 11, 23, 0.035);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.contact-card h3 {
  margin-bottom: 10px;
  color: #101828;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.15;
}

.contact-card p {
  min-height: 0;
  max-width: 320px;
  margin-bottom: 14px;
  color: #4f5f73;
  font-size: 14px;
  line-height: 1.45;
}

.contact-card:nth-child(2) p {
  white-space: nowrap;
}

.contact-card a {
  color: #303088;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 900;
  line-height: 1.35;
  word-break: break-word;
}

.location-preview {
  position: relative;
  display: block;
  max-width: 1180px;
  margin: 0 auto 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.07);
}

.location-preview img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.location-preview span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--rust);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafafa;
}

.quote-panel h3 {
  margin-bottom: 12px;
  color: #101828;
  font-size: clamp(24px, 3vw, 38px);
}

.quote-panel p {
  color: #4f5f73;
  line-height: 1.65;
}

.quote-form {
  display: grid;
  gap: 18px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 15px 14px;
  color: var(--ink);
  background: #fbfcfd;
  font: inherit;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--rust);
  outline: 3px solid rgba(159, 63, 36, 0.15);
}

.form-button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(18px, 6vw, 82px);
  color: rgba(255, 255, 255, 0.78);
  background: #09090a;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
  outline: 0;
  transform: translateY(-3px);
}

.whatsapp-float span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #25d366;
  background: var(--white);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: #25d366;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 82px;
  }

  .main-nav {
    gap: 18px;
    font-size: 15px;
  }

  .nav-quote {
    min-height: 48px;
    margin-left: 18px;
    padding-inline: 18px;
    font-size: 14px;
  }

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

  .service-band,
  .about-section,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .text-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .announcement {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 10px;
    align-items: center;
    min-height: auto;
    padding: 10px 44px 10px 14px;
    text-align: left;
    font-size: 12px;
    line-height: 1.45;
  }

  .announcement p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .announcement a {
    min-height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--white);
    background: var(--rust);
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
  }

  .announcement button {
    right: 8px;
    width: 30px;
    height: 30px;
    font-size: 24px;
  }

  .site-header {
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 10px 14px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
    order: 3;
    margin-left: auto;
    border-radius: 8px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 6px);
    right: 14px;
    left: 14px;
    display: none;
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    gap: 12px;
  }

  .contact-card {
    min-height: auto;
    padding: 22px 18px;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
  }

  .nav-quote {
    display: none;
  }

  .hero {
    min-height: 520px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.62) 56%, rgba(255, 255, 255, 0.78) 100%),
      radial-gradient(circle at 82% 18%, rgba(223, 11, 23, 0.05), transparent 34%);
  }

  .hero-content {
    width: min(100% - 32px, 640px);
    padding: 54px 0 50px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 54px);
    line-height: 1.08;
  }

  .hero-copy,
  .hero-copy span {
    font-size: 15px;
  }

  .hero-copy strong {
    max-width: 320px;
    margin-inline: auto;
    font-size: 19px;
  }

  .section,
  .service-band,
  .contact-section {
    padding: 52px 16px;
  }

  .stats,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 158px;
  }

  .stats div {
    min-height: auto;
    padding: 20px 18px;
  }

  .stats span {
    max-width: none;
    font-size: 15px;
  }

  .product-section .section-heading h2,
  .about-copy h2,
  .service-copy h2 {
    font-size: 30px;
  }

  .product-card {
    min-height: auto;
    padding-bottom: 20px;
  }

  .product-card h3,
  .product-card p {
    padding-inline: 18px;
  }

  .product-detail {
    scroll-margin-top: 94px;
  }

  .product-detail h2 {
    font-size: 32px;
  }

  .product-detail > p {
    font-size: 16px;
  }

  .detail-table {
    min-width: 680px;
  }

  .service-band {
    gap: 28px;
  }

  .service-list div {
    padding: 14px 0;
  }

  .about-section {
    gap: 26px;
  }

  .about-panel {
    padding: 24px;
  }

  .contact-card:nth-child(2) p {
    white-space: normal;
  }

  .quote-panel {
    padding: 22px 16px;
  }

  .location-preview {
    margin-bottom: 28px;
    border-radius: 10px;
  }

  .location-preview img {
    max-height: 250px;
  }

  .location-preview span {
    right: 12px;
    bottom: 12px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .quote-panel h3 {
    font-size: 24px;
  }

  .form-button {
    justify-self: stretch;
  }

  .site-footer {
    padding: 22px 16px 82px;
  }
}

@media (max-width: 460px) {
  .brand img {
    width: 136px;
  }

  h1 {
    font-size: 34px;
  }

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

  .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 16px;
    min-height: 48px;
    padding: 0 13px;
    font-size: 13px;
  }

  .whatsapp-float span {
    width: 26px;
    height: 26px;
  }
}
