:root {
  --navy-950: #061224;
  --navy-900: #071a34;
  --navy-800: #0b2546;
  --blue-600: #0677ff;
  --blue-500: #1292ff;
  --cyan-400: #18c7ff;
  --sky-100: #eef7ff;
  --sky-050: #f7fbff;
  --ink: #10213f;
  --muted: #5f6f86;
  --line: rgba(18, 107, 207, 0.18);
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(9, 62, 125, 0.16);
  --shadow-card: 0 12px 32px rgba(9, 54, 111, 0.13);
  --radius-card: 8px;
  --radius-large: 28px;
  --container: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--sky-100);
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 80px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 25px 0;
  color: var(--white);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 210px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(42, 166, 255, 0.12));
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue-500);
}

.main-nav i {
  margin-left: 4px;
  font-size: 9px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 800;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.92);
}

.phone-link i {
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 25px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  min-height: 36px;
  padding: 0 18px;
  background: linear-gradient(135deg, #0b8fff, #0567e9);
  box-shadow: 0 10px 26px rgba(0, 116, 255, 0.26);
}

.btn-primary {
  min-height: 55px;
  background: linear-gradient(135deg, #0d95ff, #0868f2);
  box-shadow: 0 16px 35px rgba(0, 112, 255, 0.34);
}

.btn-outline {
  min-height: 40px;
  padding: 0 24px;
  color: #0756d8;
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(8, 87, 214, 0.68);
  box-shadow: 0 8px 24px rgba(14, 86, 182, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 805px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(2, 11, 25, 0.96) 0%, rgba(2, 14, 30, 0.88) 29%, rgba(2, 19, 42, 0.47) 57%, rgba(2, 14, 30, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 12, 27, 0.4), rgba(3, 12, 27, 0.05) 58%, rgba(3, 12, 27, 0.62)),
    url("../img/hero-ice-machine.png");
  background-repeat: no-repeat;
  background-size: 1360px auto;
  background-position: calc(50% + 135px) center;
}

.hero::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -96px;
  height: 170px;
  z-index: 2;
  background: var(--sky-100);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: rotate(2deg);
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 805px;
  display: flex;
  align-items: center;
  padding-top: 82px;
}

.hero-copy {
  width: min(700px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 25px;
  font-weight: 300;
  line-height: 1.12;
  text-transform: uppercase;
}

.hero h1,
.cta h2 {
  margin: 0;
  font-size: clamp(46px, 4.75vw, 70px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 span,
.cta h2 {
  color: var(--blue-500);
}

.hero-line {
  white-space: nowrap;
}

.lead {
  width: min(500px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 26px;
  margin: 34px 0 41px;
}

.hero-features div,
.health-points div,
.advantages-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-features i {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--cyan-400);
  border-radius: 50%;
  color: var(--cyan-400);
  font-size: 18px;
}

.hero-features span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.28;
}

.section-light {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 126, 255, 0.09), transparent 38%),
    linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
}

.health-card-section {
  position: relative;
  z-index: 5;
  margin-top: -82px;
  padding-bottom: 42px;
  background: transparent;
}

.health-card {
  min-height: 282px;
  overflow: hidden;
  border-radius: var(--radius-large);
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.62) 28%, rgba(255, 255, 255, 0.96) 40%, rgba(255, 255, 255, 0.58) 67%, rgba(255, 255, 255, 0.08) 100%),
    url("../img/health-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

.health-content {
  width: min(680px, 59%);
  margin-left: 27%;
  padding: 48px 30px 34px 0;
}

.health-card h2,
.section-heading h2,
.quality-copy h2 {
  margin: 0;
  color: #121d3a;
  font-size: clamp(30px, 3.1vw, 40px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.health-card h2 {
  color: #076fea;
  white-space: nowrap;
}

.health-card p {
  margin: 13px 0 26px;
  color: #263755;
  font-size: 13px;
}

.health-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.health-points div {
  align-items: flex-start;
  gap: 10px;
}

.health-points i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #0874f5;
  font-size: 21px;
}

.health-points span {
  color: #263755;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.machines {
  padding: 2px 0 48px;
}

.section-heading {
  margin-bottom: 35px;
  text-align: center;
}

.mini-title {
  margin: 0 0 5px;
  color: #1d2744;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: clamp(31px, 3.1vw, 42px);
}

.section-heading h2::before,
.section-heading h2::after {
  content: "";
  width: 46px;
  height: 1px;
  background: rgba(7, 108, 233, 0.44);
}

.carousel-shell,
.testimonial-shell {
  position: relative;
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.machine-card {
  min-width: 0;
  padding: 18px 14px 20px;
  border: 1px solid rgba(13, 83, 172, 0.09);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.machine-card img {
  width: 100%;
  height: 205px;
  object-fit: contain;
  object-position: center bottom;
  margin: -2px auto 12px;
}

.machine-card h3 {
  margin: 0;
  color: #0c2445;
  font-size: 17px;
  font-weight: 900;
}

.machine-card p {
  margin: 5px 0 0;
  color: #4f5f77;
  font-size: 11px;
  font-weight: 600;
}

.machine-card .category {
  margin-top: 1px;
  color: #2868c8;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.round-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: #071b39;
  box-shadow: 0 10px 25px rgba(4, 22, 48, 0.26);
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.round-arrow:hover:not([style*="pointer-events: none"]) {
  background: #0d2a52;
}

.round-arrow.left {
  left: -48px;
}

.round-arrow.right {
  right: -48px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.advantages {
  position: relative;
  overflow: hidden;
  padding: 84px 0 86px;
  color: var(--white);
  background-image:
    linear-gradient(180deg, rgba(4, 17, 37, 0.94), rgba(3, 13, 29, 0.96)),
    url("../img/hero-ice-machine.png");
  background-size: cover;
  background-position: center bottom;
}

.advantages::before,
.advantages::after {
  content: "";
  position: absolute;
  left: -4%;
  width: 108%;
  height: 70px;
  background: var(--sky-100);
  z-index: 1;
}

.advantages::before {
  top: -48px;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.advantages::after {
  bottom: -48px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.advantages .container {
  position: relative;
  z-index: 2;
}

.section-heading.inverse .mini-title,
.section-heading.inverse h2 {
  color: var(--white);
}

.section-heading.inverse h2::before,
.section-heading.inverse h2::after {
  display: none;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-inline: 1px solid rgba(255, 255, 255, 0.08);
}

.advantages-grid div {
  min-height: 120px;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.advantages-grid div:last-child {
  border-right: 0;
}

.advantages-grid i {
  color: var(--blue-500);
  font-size: 48px;
}

.advantages-grid span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.quality {
  padding: 78px 0 82px;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1.04fr 1.18fr 0.74fr;
  align-items: center;
  gap: 32px;
}

.mini-title.left {
  color: #22314d;
}

.quality-copy h2 {
  margin-bottom: 16px;
}

.quality-copy p {
  width: min(450px, 100%);
  margin: 0 0 20px;
  color: #516178;
  font-size: 14px;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #283b5a;
  font-size: 13px;
  font-weight: 600;
}

.check-list i {
  margin-top: 3px;
  color: #0874f5;
}

.quality-image {
  min-width: 0;
  position: relative;
}

.quality-image img {
  width: min(100%, 520px);
  margin: 0 auto;
  filter: drop-shadow(0 28px 32px rgba(0, 88, 180, 0.16));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 52%, rgba(0, 0, 0, 0.75) 69%, transparent 84%);
  mask-image: radial-gradient(ellipse at center, #000 52%, rgba(0, 0, 0, 0.75) 69%, transparent 84%);
}

.stats-list {
  display: grid;
  gap: 28px;
}

.stat {
  display: grid;
  grid-template-columns: 47px 1fr;
  column-gap: 16px;
  align-items: center;
}

.stat i {
  grid-row: span 2;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  color: #0874f5;
  font-size: 30px;
}

.stat strong {
  color: #0874f5;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.stat span {
  color: #263755;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.applications {
  padding: 60px 0 38px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.business-card {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  border: 4px solid var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 28px rgba(18, 79, 156, 0.17);
  background: #10213f;
}

.business-card img {
  width: 100%;
  height: 100%;
  min-height: 142px;
  object-fit: cover;
  transition: transform 250ms ease;
}

.business-card:hover img {
  transform: scale(1.04);
}

.business-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 12, 30, 0.03), rgba(2, 12, 30, 0.78));
}

.business-label {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 8px;
}

.business-label i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: var(--white);
  font-size: 15px;
  background: rgba(1, 21, 45, 0.56);
}

.business-label h3 {
  margin: 0;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.testimonials {
  padding: 38px 0 58px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  position: relative;
  min-height: 176px;
  padding: 28px 28px 24px 70px;
  border: 1px solid rgba(13, 83, 172, 0.08);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.testimonial-card .quote {
  position: absolute;
  top: 22px;
  left: 28px;
  color: #0874f5;
  font-size: 34px;
}

.testimonial-card p {
  margin: 0 0 12px;
  color: #34455f;
  font-size: 12px;
  font-weight: 600;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
  color: #f5b817;
  font-size: 13px;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
  color: #132846;
  font-size: 13px;
}

.testimonial-card strong {
  font-weight: 900;
}

.testimonial-card span {
  font-weight: 600;
}

.cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-image:
    radial-gradient(circle at 6% 100%, rgba(30, 170, 255, 0.52) 0 8%, transparent 19%),
    radial-gradient(circle at 94% 92%, rgba(30, 170, 255, 0.48) 0 9%, transparent 20%),
    linear-gradient(90deg, rgba(3, 17, 38, 0.97), rgba(4, 26, 57, 0.88), rgba(3, 17, 38, 0.97)),
    url("../img/hero-ice-machine.png");
  background-size: cover;
  background-position: center 70%;
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 210px;
  height: 170px;
  bottom: -36px;
  background-image: url("../img/ice-cube.png");
  background-size: cover;
  background-position: center;
  opacity: 0.72;
  filter: saturate(1.2) contrast(1.08);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 42%, rgba(0, 0, 0, 0.7) 68%, transparent 82%);
  mask-image: radial-gradient(ellipse at center, #000 42%, rgba(0, 0, 0, 0.7) 68%, transparent 82%);
}

.cta::before {
  left: 0;
  transform: rotate(-9deg) scale(1.1);
}

.cta::after {
  right: 0;
  transform: rotate(10deg) scale(1.08);
}

.cta-inner {
  position: relative;
  z-index: 2;
  min-height: 178px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
}

.cta .eyebrow {
  margin-bottom: 6px;
  font-size: 21px;
}

.cta h2 {
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.04;
}

.cta p:last-child {
  width: min(520px, 100%);
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.whatsapp {
  min-width: 260px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #07182e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.82fr 0.82fr 1.08fr 1.26fr;
  gap: 44px;
  padding: 44px 0 35px;
}

.footer-brand .brand-logo {
  width: 184px;
}

.footer-brand p {
  max-width: 240px;
  margin: 18px 0 20px;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07182e;
  background: var(--white);
}

.footer-col h2 {
  margin: 7px 0 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.48;
}

.contact-list p {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
}

.contact-list i {
  color: var(--white);
  margin-top: 3px;
}

.footer-whatsapp {
  width: fit-content;
  min-height: 48px;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 12px !important;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 7px;
  color: var(--white) !important;
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 45px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

@media (max-width: 1220px) {
  .round-arrow.left {
    left: -18px;
  }

  .round-arrow.right {
    right: -18px;
  }
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(4, 18, 40, 0.96);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  }

  .main-nav a {
    width: 100%;
    padding: 14px 12px;
  }

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

  body.nav-open .nav-toggle i::before {
    content: "\f00d";
  }

  .header-actions {
    display: none;
  }

  .hero-features {
    grid-template-columns: repeat(2, max-content);
  }

  .health-content {
    width: min(620px, 70%);
    margin-left: 24%;
  }

  .machine-grid,
  .advantages-grid,
  .business-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quality-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quality-copy p {
    margin-inline: auto;
  }

  .check-list {
    width: min(480px, 100%);
    margin-inline: auto;
    text-align: left;
  }

  .stats-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .stat {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .stat i {
    grid-row: auto;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    padding: 16px 0;
  }

  .brand-logo {
    width: 176px;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-bg {
    background-position: 66% center;
  }

  .hero-copy {
    padding-top: 40px;
  }

  .eyebrow {
    font-size: 21px;
  }

  .lead {
    font-size: 15px;
  }

  .hero-features {
    gap: 18px;
  }

  .health-card-section {
    margin-top: -92px;
  }

  .health-card {
    min-height: 0;
    background-position: 64% center;
  }

  .health-content {
    width: 100%;
    margin: 0;
    padding: 34px 24px 32px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
  }

  .health-card h2 {
    white-space: normal;
  }

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

  .machines {
    padding-top: 18px;
  }

  .machine-grid,
  .business-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .advantages-grid div:nth-child(even) {
    border-right: 0;
  }

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

  .testimonial-card {
    padding-left: 62px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .whatsapp {
    width: fit-content;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 12px 0;
  }
}

@media (max-width: 560px) {
  .btn {
    width: 100%;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 126px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1,
  .cta h2 {
    font-size: 42px;
  }

  .hero-line {
    white-space: normal;
  }

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

  .hero-features div {
    gap: 9px;
  }

  .hero-features i {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .section-heading h2 {
    gap: 13px;
  }

  .section-heading h2::before,
  .section-heading h2::after {
    width: 24px;
  }

  .health-card {
    border-radius: 16px;
  }

  .health-points,
  .machine-grid,
  .advantages-grid,
  .business-grid,
  .testimonial-grid,
  .stats-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .machine-card img {
    height: 220px;
  }

  .advantages-grid {
    border-inline: 0;
  }

  .advantages-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .business-card,
  .business-card img {
    min-height: 190px;
  }

  .round-arrow {
    display: none;
  }

  .whatsapp {
    width: 100%;
  }
}
