/* ==========================================================================
   Arafal Enterprises — design system (white + orange)
   1. Tokens  2. Base  3. Layout  4. Buttons  5. Header  6. Hero & facts
   7. Inner-page header  8. Cards & lists  9. Products  10. Forms & contact
   11. Footer  12. Motion  13. Responsive
   ========================================================================== */

/* Fonts are self-hosted (assets/fonts) so the site has no external font dependency */
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 500 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("../assets/fonts/bricolage-grotesque-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("../assets/fonts/instrument-sans-latin.woff2") format("woff2");
}
/* 1. TOKENS ---------------------------------------------------------------- */
:root {
  --ink: #1b1c1f;
  --white: #ffffff;
  --tint: #fff6ee; /* light orange tint for alternating sections */
  --tint-2: #ffe9d5; /* stronger tint for shapes */

  --orange: #f58220;
  --orange-hover: #ff9640;
  --orange-strong: #e36b00; /* large headline accents on white (>= 3:1) */
  --orange-ink: #b25000; /* small orange text on white (AA) */
  --grey: #97989b;

  --text: #26282c;
  --text-2: #585b61;

  --line: #eadfd2;
  --line-strong: #d9cbbb;

  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Instrument Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --header-h: 72px;
  --radius: 6px;
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(72px, 9vw, 128px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 2. BASE ------------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 1.3rem + 3.6vw, 4.2rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}
h2 {
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.2rem);
}
h3 {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  margin: 0;
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 12px;
}

/* 3. LAYOUT ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}
.section--tight {
  padding-block: clamp(56px, 7vw, 96px);
}
.section--tint {
  background: var(--tint);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-ink);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.lede {
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 60ch;
}

.section-head {
  display: grid;
  gap: 20px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head h2 {
  max-width: 20ch;
}

.accent {
  color: var(--orange-strong);
}

/* 4. BUTTONS --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  min-height: 50px;
  padding: 0.85em 1.6em;
  border: 1.5px solid transparent;
  border-radius: 4px;
  font: 600 0.97rem/1.1 var(--font-body);
  letter-spacing: 0.005em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn svg {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  transition: transform 0.25s var(--ease);
}
.btn:hover svg.arrow {
  transform: translateX(4px);
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--orange);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: #33353a;
}

.btn-line {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-line:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-sm {
  min-height: 42px;
  padding: 0.6em 1.15em;
  font-size: 0.9rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--orange);
  padding-bottom: 2px;
  color: var(--orange-ink);
  transition: gap 0.25s var(--ease);
}
.link-arrow:hover {
  gap: 0.85em;
}
.link-arrow svg {
  width: 1em;
  height: 1em;
}

/* 5. HEADER ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px -22px rgba(27, 28, 31, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  transition: height 0.3s var(--ease);
}
.site-header.is-scrolled .header-inner {
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand-mark {
  width: 44px;
  height: auto;
}
.brand-word {
  width: 158px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.primary-nav ul {
  display: flex;
  gap: 4px;
}
.primary-nav li a:not(.btn) {
  position: relative;
  display: block;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.primary-nav li a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.primary-nav li a:not(.btn):hover,
.primary-nav li a[aria-current="page"] {
  color: var(--ink);
}
.primary-nav li a:not(.btn):hover::after,
.primary-nav li a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  margin-right: -10px;
  padding: 0;
  background: none;
  border: 0;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle .bars {
  top: 23px;
}
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  left: 0;
  right: 0;
}
.nav-toggle .bars::before {
  transform: translateY(-7px);
}
.nav-toggle .bars::after {
  transform: translateY(7px);
}
.nav-toggle[aria-expanded="true"] .bars {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .bars::before {
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bars::after {
  transform: rotate(-45deg);
}

/* 6. HERO & FACTS ------------------------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-block: clamp(48px, 7vw, 96px) clamp(56px, 8vw, 104px);
}
.hero::before {
  content: "";
  position: absolute;
  right: -14%;
  top: -30%;
  width: min(900px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(245, 130, 32, 0.35);
  box-shadow: 0 0 0 60px rgba(245, 130, 32, 0.045), 0 0 0 61px rgba(245, 130, 32, 0.18);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(48px, 6vw, 72px);
  align-items: center;
}

.hero h1 {
  max-width: 17ch;
}
.hero h1 span {
  color: var(--orange-strong);
}
.hero .lede {
  margin-top: 28px;
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}
.hero-tagline li {
  display: flex;
  align-items: center;
  gap: 22px;
}
.hero-tagline li + li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
  aspect-ratio: 1 / 1.02;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -2% 0 2%;
  border-radius: 50%;
  background: var(--tint-2);
}
.pack {
  position: absolute;
  width: 50%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 30px 50px -22px rgba(27, 28, 31, 0.5), 0 0 0 1px rgba(27, 28, 31, 0.08);
  transform: translateY(0) rotate(var(--r, 0deg));
  transition: transform 0.5s var(--ease);
  animation: pack-in 1s var(--ease) both;
  animation-delay: var(--delay, 0s);
}
.pack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pack:hover {
  transform: translateY(-8px) rotate(var(--r, 0deg));
  z-index: 5;
}
.pack--1 {
  --r: -8deg;
  --delay: 0.35s;
  left: -3%;
  top: 17%;
  z-index: 1;
}
.pack--2 {
  --r: 0deg;
  --delay: 0.15s;
  left: 25%;
  top: 0;
  z-index: 3;
}
.pack--3 {
  --r: 8deg;
  --delay: 0.5s;
  right: -3%;
  top: 21%;
  z-index: 2;
}
.hero-badge {
  position: absolute;
  z-index: 6;
  left: 4%;
  bottom: 2%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  box-shadow: 0 20px 36px -20px rgba(27, 28, 31, 0.45);
  animation: fade-up 0.9s var(--ease) 0.8s both;
}
.hero-badge strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--orange-strong);
}
.hero-badge span {
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--text-2);
}

.hero-copy > * {
  animation: fade-up 0.9s var(--ease) both;
}
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.15s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.25s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.35s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.45s; }

.facts {
  background: var(--tint);
  border-block: 1px solid var(--line);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.fact {
  padding: 32px 0 30px;
  border-bottom: 1px solid var(--line);
}
.fact:nth-child(odd) {
  padding-right: 20px;
}
.fact:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}
.fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2rem + 2.4vw, 4rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--orange-strong);
}
.fact:nth-child(3) {
  grid-column: 1 / -1;
}
.fact span {
  display: block;
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--text-2);
}
.makers {
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 28px;
  font-size: 0.92rem;
}
.makers-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-ink);
}
.makers ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 26px;
}
.makers li {
  color: var(--ink);
  font-weight: 500;
}

/* 7. INNER-PAGE HEADER ------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--tint);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(48px, 7vw, 96px) clamp(48px, 6vw, 80px);
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -12%;
  top: -60%;
  width: min(700px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(245, 130, 32, 0.4);
  box-shadow: 0 0 0 44px rgba(245, 130, 32, 0.06), 0 0 0 45px rgba(245, 130, 32, 0.2);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
}
.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 1.3rem + 3.6vw, 4rem);
}
.page-hero .lede {
  margin-top: 24px;
}
.crumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.875rem;
  color: var(--text-2);
}
.crumbs a {
  text-decoration: none;
}
.crumbs a:hover {
  color: var(--orange-ink);
  text-decoration: underline;
}
.crumbs li + li::before {
  content: "/";
  margin-right: 10px;
  opacity: 0.5;
}

/* 8. CARDS & LISTS ------------------------------------------------------------ */
.grid {
  display: grid;
  gap: clamp(20px, 2.4vw, 32px);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 24px 40px -28px rgba(227, 107, 0, 0.55);
}
.card-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--orange-ink);
}
.card p {
  color: var(--text-2);
}
.card .link-arrow {
  margin-top: auto;
  align-self: flex-start;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 4px;
  background: var(--orange);
  color: var(--ink);
}
.icon-box svg {
  width: 26px;
  height: 26px;
}

.check-list {
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 16px;
  height: 9px;
  border-left: 2.5px solid var(--orange-strong);
  border-bottom: 2.5px solid var(--orange-strong);
  transform: rotate(-45deg) translate(1px, -3px);
}

.split {
  display: grid;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.prose {
  display: grid;
  gap: 18px;
  max-width: 62ch;
  color: var(--text-2);
}
.prose p:first-child {
  color: var(--text);
  font-size: 1.125rem;
}

/* Orange statement panel */
.panel {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  background: var(--orange);
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}
.panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 26px rgba(255, 255, 255, 0.12);
}
.panel > * {
  position: relative;
  z-index: 1;
}
.panel-label {
  margin-bottom: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.panel blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
  font-weight: 550;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.panel-foot {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1.5px solid rgba(27, 28, 31, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-list {
  border-top: 1px solid var(--line-strong);
}
.fact-list div {
  display: grid;
  gap: 4px 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-strong);
}
.fact-list dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-ink);
}
.fact-list dd {
  margin: 0;
  font-weight: 500;
  color: var(--text);
}

/* Product rail (home) */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 250px);
  gap: 20px;
  margin-inline: calc(var(--gutter) * -1);
  padding: 4px var(--gutter) 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.rail:focus-visible {
  outline-offset: -3px;
}
.rail-card {
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  text-decoration: none;
}
.rail-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--tint);
  box-shadow: 0 0 0 1px var(--line-strong), 0 20px 30px -24px rgba(27, 28, 31, 0.5);
}
.rail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.rail-card:hover .rail-img img {
  transform: scale(1.05);
}
.rail-meta {
  padding-top: 16px;
}
.rail-meta h3 {
  font-size: 1.2rem;
}
.rail-card:hover h3 {
  color: var(--orange-ink);
}
.rail-meta p {
  margin-top: 4px;
  font-size: 0.875rem;
  color: var(--text-2);
}
.rail-controls {
  display: none;
  gap: 10px;
}
.rail-btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.rail-btn:hover:not(:disabled) {
  background: var(--orange);
  border-color: var(--orange);
}
.rail-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.rail-btn svg {
  width: 20px;
  height: 20px;
}
.js .rail-controls {
  display: flex;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
a.chip:hover {
  border-color: var(--orange);
  background: var(--tint);
}

/* Why choose us */
.why {
  display: grid;
  gap: clamp(40px, 6vw, 88px);
}
.why-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line-strong);
}
.why-list li:last-child {
  border-bottom: 1px solid var(--line-strong);
}
.why-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 650;
  color: var(--orange-strong);
  padding-top: 4px;
}
.why-list p {
  margin-top: 8px;
  color: var(--text-2);
  max-width: 54ch;
}

/* Process */
.steps {
  display: grid;
  gap: 0;
}
.step {
  position: relative;
  padding: 0 0 36px 64px;
}
.step:last-child {
  padding-bottom: 0;
}
.step::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 46px;
  bottom: 0;
  width: 1.5px;
  background: var(--line-strong);
}
.step:last-child::before {
  display: none;
}
.step-num {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}
.step h3 {
  padding-top: 8px;
}
.step p {
  margin-top: 8px;
  color: var(--text-2);
  max-width: 34ch;
}

/* CTA band */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: var(--ink);
  padding-block: clamp(64px, 8vw, 112px);
}
.cta::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 50%;
  width: min(620px, 80vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.1), 0 0 0 49px rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.cta .container {
  position: relative;
}
.cta h2 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 1.3rem + 3.6vw, 4rem);
}
.cta p {
  margin-top: 20px;
  max-width: 50ch;
  font-size: 1.15rem;
  color: rgba(27, 28, 31, 0.85);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* Values / mission & vision / brand note (about) */
.values {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.value {
  padding: 32px 0;
  border-bottom: 1px solid var(--line-strong);
}
.value h3 {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.value h3 small {
  font-size: 0.85rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  color: var(--orange-strong);
}
.value p {
  margin-top: 12px;
  max-width: 44ch;
  color: var(--text-2);
}

.mv {
  display: grid;
  gap: 24px;
}
.mv-card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line-strong);
}
.mv-card--accent {
  background: var(--orange);
  border-color: var(--orange);
}
.mv-card--accent .eyebrow {
  color: var(--ink);
}
.mv-card--accent .eyebrow::before {
  background: var(--ink);
}
.mv-card h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem);
  margin-bottom: 18px;
}
.mv-card p:not(.eyebrow) {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text-2);
}
.mv-card--accent p:not(.eyebrow) {
  color: var(--ink);
}

.brand-note {
  display: grid;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}
.brand-note img {
  width: 100%;
  max-width: 220px;
  margin-inline: auto;
  mix-blend-mode: multiply;
}
.brand-note p:not(.eyebrow) {
  color: var(--text-2);
  max-width: 56ch;
  margin-top: 14px;
}

/* Service rows */
.service {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(48px, 6vw, 88px);
  border-top: 1px solid var(--line-strong);
}
.service:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.service-body {
  display: grid;
  gap: 22px;
  align-content: start;
}
.service-body > p {
  color: var(--text-2);
  max-width: 54ch;
}
.service-body h3 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-ink);
}
.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.visual {
  position: relative;
  padding: clamp(20px, 3vw, 36px);
  border-radius: var(--radius);
  background: var(--tint);
  border: 1px solid var(--line);
  overflow: hidden;
}
.visual::before {
  content: "";
  position: absolute;
  left: -20%;
  top: -40%;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--tint-2);
  opacity: 0.7;
}
.visual-grid {
  position: relative;
  display: grid;
  gap: 14px;
}
.visual-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.visual-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.vfig {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vfig-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
  background: var(--white);
  box-shadow: 0 20px 30px -20px rgba(27, 28, 31, 0.55), 0 0 0 1px rgba(27, 28, 31, 0.08);
}
.vfig-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vfig figcaption {
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text-2);
}
.vfig figcaption strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.85rem;
}

.label-visual {
  position: relative;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  align-items: center;
}
.label-visual .vfig-img {
  aspect-ratio: auto;
  max-width: 340px;
  margin-inline: auto;
}
.label-legend li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}
.label-legend li:first-child {
  border-top: 1px solid var(--line-strong);
}
.label-legend b {
  min-width: 22px;
  font-family: var(--font-display);
  color: var(--orange-strong);
}

/* 9. PRODUCTS PAGE ---------------------------------------------------------------- */
.subnav {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.subnav ul {
  display: flex;
  gap: 10px;
  padding-block: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav ul::-webkit-scrollbar {
  display: none;
}
.subnav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.subnav a:hover {
  border-color: var(--orange);
  background: var(--tint);
}
.subnav a[aria-current="true"] {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--ink);
  font-weight: 600;
}
.subnav small {
  font-size: 0.75rem;
  opacity: 0.7;
}

.category {
  scroll-margin-top: calc(var(--header-h) + 72px);
}
.category + .category {
  margin-top: clamp(64px, 8vw, 112px);
}
.category-head {
  display: grid;
  gap: 14px;
  padding-bottom: 28px;
  margin-bottom: 8px;
  border-bottom: 3px solid var(--orange);
}
.category-head p:not(.eyebrow) {
  max-width: 56ch;
  color: var(--text-2);
}

.product {
  display: grid;
  gap: 28px;
  padding-block: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--line-strong);
  scroll-margin-top: calc(var(--header-h) + 84px);
}
.product-img {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--tint);
  box-shadow: 0 30px 40px -28px rgba(27, 28, 31, 0.6), 0 0 0 1px var(--line-strong);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-body {
  display: grid;
  gap: 20px;
  align-content: start;
  min-width: 0;
}
.product-top {
  display: grid;
  gap: 8px;
}
.product-form {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-ink);
}
.product h3 {
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem);
}
.product-desc {
  max-width: 62ch;
  color: var(--text-2);
}
.product h4 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--tint);
  border: 1px solid var(--line);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

details.specs {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
}
details.specs summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
details.specs summary::-webkit-details-marker {
  display: none;
}
details.specs summary:hover {
  background: var(--tint);
}
details.specs summary::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  margin-right: 4px;
  border-right: 2.5px solid var(--orange-strong);
  border-bottom: 2.5px solid var(--orange-strong);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}
details.specs[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}
.specs-body {
  display: grid;
  gap: 24px;
  padding: 20px 20px 22px;
  border-top: 1px solid var(--line-strong);
}
.spec-list {
  display: grid;
  gap: 0;
}
.spec-list div {
  display: grid;
  gap: 2px 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.spec-list div:last-child {
  border-bottom: 0;
}
.spec-list dt {
  font-weight: 600;
  color: var(--text-2);
}
.spec-list dd {
  margin: 0;
}
.comp {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.comp caption {
  margin-bottom: 8px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}
.comp th,
.comp td {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-weight: 400;
}
.comp td {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.fine {
  font-size: 0.85rem;
  color: var(--text-2);
}

.notice {
  display: grid;
  gap: 8px;
  padding: 20px 24px;
  border-left: 4px solid var(--orange);
  background: var(--tint);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  color: var(--text-2);
}
.notice strong {
  color: var(--ink);
}

/* 10. FORMS & CONTACT ---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-strong);
}
.contact-item .icon-box {
  width: 48px;
  height: 48px;
}
.contact-item h2 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-ink);
}
.contact-item p,
.contact-link {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 550;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.contact-link {
  width: fit-content;
  max-width: 100%;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
}
.contact-link:hover {
  color: var(--orange-ink);
}
.contact-item small {
  display: block;
  margin-top: 4px;
  font-size: 0.875rem;
  color: var(--text-2);
}
.contact-item small a {
  color: var(--orange-ink);
  font-weight: 600;
}
.contact-item .btn {
  margin-top: 14px;
}

.form-card {
  padding: clamp(24px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: 0 30px 50px -40px rgba(227, 107, 0, 0.6);
}
.form-card h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
}
.form-card > p {
  margin-top: 10px;
  color: var(--text-2);
}
.form {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.field label .req {
  color: var(--orange-ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field select {
  appearance: none;
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 22px) 55%, calc(100% - 16px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--grey);
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.6);
}
.field [aria-invalid="true"] {
  border-color: #b3261e;
  background: #fff7f6;
}
.field-error {
  font-size: 0.85rem;
  font-weight: 500;
  color: #b3261e;
}
.field-error:empty {
  display: none;
}
.field-row {
  display: grid;
  gap: 20px;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.form-status {
  padding: 14px 18px;
  border-left: 4px solid var(--orange);
  background: var(--tint);
  border-radius: 0 4px 4px 0;
  font-size: 0.95rem;
}
.form-status:empty {
  display: none;
}

.map {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--tint);
  height: clamp(300px, 32vw, 460px);
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--text-2);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 20px 0 16px;
  border-radius: 100px;
  background: #1a8f4c;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 30px -10px rgba(27, 28, 31, 0.5);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.wa-float:hover {
  background: #14773f;
  transform: translateY(-2px);
}
.wa-float svg {
  width: 26px;
  height: 26px;
}

/* 11. FOOTER --------------------------------------------------------------------------- */
.site-footer {
  background: var(--tint);
  border-top: 4px solid var(--orange);
  color: var(--text-2);
  padding-top: clamp(56px, 7vw, 96px);
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  gap: 44px 32px;
  padding-bottom: 56px;
}
.footer-brand p {
  max-width: 34ch;
  margin-top: 20px;
}
.footer-brand .brand-word {
  width: 170px;
}
.footer-col h2 {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.footer-col li + li {
  margin-top: 10px;
}
.footer-col a {
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover {
  color: var(--orange-ink);
  text-decoration: underline;
}
.footer-col address {
  font-style: normal;
}
.footer-bottom {
  display: grid;
  gap: 10px;
  padding-block: 24px 32px;
  border-top: 1px solid var(--line-strong);
  font-size: 0.85rem;
}
.footer-bottom p {
  max-width: 78ch;
}

/* 12. MOTION -------------------------------------------------------------------------- */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pack-in {
  from {
    opacity: 0;
    transform: translateY(48px) rotate(var(--r, 0deg));
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--r, 0deg));
  }
}

/* Scroll reveals only apply once JS has confirmed it is running */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* 13. RESPONSIVE ---------------------------------------------------------------------- */
@media (min-width: 640px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
  .spec-list div,
  .fact-list div {
    grid-template-columns: 150px 1fr;
  }
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 32px;
  }
  .brand-note {
    grid-template-columns: 220px 1fr;
    gap: 48px;
  }
  .label-visual {
    grid-template-columns: 0.9fr 1fr;
  }
  .label-visual .vfig-img {
    margin-inline: 0;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }
  .step:nth-last-child(2)::before {
    display: none;
  }
}

@media (min-width: 900px) {
  .facts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .fact {
    padding: 44px 20px 40px 28px !important;
    border-bottom: 0;
    border-left: 1px solid var(--line);
  }
  .fact:first-child {
    border-left: 0;
    padding-left: 0 !important;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .hero-visual {
    margin-inline: auto 0;
  }

  .section-head--split {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
    gap: 64px;
  }
  .section-head--split .lede {
    justify-self: end;
  }

  .split {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .why {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .why-head {
    position: sticky;
    top: calc(var(--header-h) + 40px);
    align-self: start;
  }
  .steps {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 28px;
  }
  .step {
    padding: 72px 0 0 0;
  }
  .step::before {
    left: 44px;
    right: -28px;
    top: 21px;
    bottom: auto;
    width: auto;
    height: 1.5px;
  }
  .step:nth-last-child(2)::before {
    display: block;
  }
  .step h3 {
    padding-top: 0;
  }

  .mv {
    grid-template-columns: 1fr 1fr;
  }
  .values {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 64px;
  }

  .service {
    grid-template-columns: 1fr 1fr;
  }
  .service--flip .service-body {
    order: 2;
  }

  .product {
    grid-template-columns: 300px 1fr;
    gap: 48px;
  }
  .product-img {
    position: sticky;
    top: calc(var(--header-h) + 90px);
  }
  .specs-body {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .rail-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
  }
}

@media (max-width: 919px) {
  :root {
    --header-h: 64px;
  }
  .nav-toggle {
    display: block;
  }
  .brand-mark {
    width: 40px;
  }
  .brand-word {
    width: 138px;
  }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 28px;
    padding: 24px var(--gutter) 32px;
    background: var(--white);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s linear 0.3s;
  }
  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .primary-nav li a:not(.btn) {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 550;
    color: var(--ink);
  }
  .primary-nav li a:not(.btn)::after {
    display: none;
  }
  .primary-nav li a[aria-current="page"] {
    color: var(--orange-strong);
  }
  .primary-nav .btn {
    width: 100%;
  }
  .subnav {
    top: 64px;
  }
  .product-img {
    max-width: 300px;
  }
  .wa-float span {
    display: none;
  }
  .wa-float {
    width: 56px;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 519px) {
  .hero-actions .btn,
  .cta-actions .btn,
  .service-actions .btn,
  .form-actions .btn {
    width: 100%;
  }
  .product-actions .btn {
    flex: 1 1 100%;
  }
  .hero-badge {
    left: 0;
    padding: 12px 16px 12px 14px;
  }
  .hero-badge strong {
    font-size: 1.6rem;
  }
  .visual-grid--3 {
    gap: 8px;
  }
  .vfig figcaption {
    font-size: 0.72rem;
  }
  .vfig figcaption strong {
    font-size: 0.78rem;
  }
}
