:root {
  --navy: #0d2742;
  --navy-2: #123653;
  --blue: #1177c8;
  --blue-dark: #0b5fa6;
  --cyan: #21c2c4;
  --yellow: #f4b943;
  --green: #20b867;
  --ink: #122033;
  --muted: #607084;
  --line: #dbe4ec;
  --soft: #f3f7fa;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(13, 39, 66, 0.13);
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Sora", "DM Sans", sans-serif;
  letter-spacing: 0;
  line-height: 1.16;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -80px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  background: #081b2e;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar p,
.topbar a {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar svg {
  width: 14px;
  height: 14px;
  color: var(--cyan);
}

.topbar__link {
  margin-left: auto;
  color: var(--white);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(219, 228, 236, 0.8);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(13, 39, 66, 0.09);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  width: 230px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 57px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  position: relative;
  padding-block: 9px;
  color: #32475a;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  background: var(--blue);
  transition: right 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--soft);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.button {
  min-height: 54px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button svg {
  width: 19px;
  height: 19px;
}

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

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.whatsapp-float:focus-visible,
.review-card:focus-visible,
.reviews-carousel__arrow:focus-visible,
.reviews-carousel__dots button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(33, 194, 196, 0.42);
  outline-offset: 3px;
}

.button--compact {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 14px;
}

.button--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(17, 119, 200, 0.24);
}

.button--primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 32px rgba(17, 119, 200, 0.32);
}

.button--dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(13, 39, 66, 0.2);
}

.button--dark:hover {
  background: var(--navy-2);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.button--outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

.button--instagram {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(115deg, #833ab4, #c13584 44%, #e1306c 70%, #f77737);
  box-shadow: 0 14px 28px rgba(193, 53, 132, 0.22);
}

.button--instagram:hover {
  box-shadow: 0 18px 34px rgba(193, 53, 132, 0.32);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 39, 66, 0.98) 0%, rgba(13, 39, 66, 0.94) 48%, rgba(13, 39, 66, 0.86) 100%),
    radial-gradient(circle at 82% 30%, rgba(33, 194, 196, 0.18), transparent 36%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to left, black, transparent 72%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
  padding-block: 74px 88px;
}

.eyebrow {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--cyan);
}

.eyebrow--light {
  color: #a5eef0;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 54px;
  font-weight: 700;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__trust {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__trust svg {
  width: 17px;
  height: 17px;
  color: var(--cyan);
}

.hero__visual {
  position: relative;
  min-height: 520px;
}

.photo-slot {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #dceaf2, #b6d6e7);
  color: var(--navy);
}

.photo-slot::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.32) 30%, rgba(255, 255, 255, 0.32) 31%, transparent 31%),
    linear-gradient(to top, rgba(13, 39, 66, 0.76), transparent 62%);
  background-size: 38px 38px, 100% 100%;
}

.photo-slot--image::before {
  background: linear-gradient(to top, rgba(5, 20, 34, 0.84) 0%, rgba(5, 20, 34, 0.22) 48%, transparent 72%);
}

.photo-slot--image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-slot__icon {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -55%);
  color: rgba(13, 39, 66, 0.35);
  border: 1px solid rgba(13, 39, 66, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.photo-slot__icon svg {
  width: 46px;
  height: 46px;
}

.photo-slot__tag {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 6px 10px;
  border-radius: 4px;
  color: var(--navy);
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-slot__caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.photo-slot__caption strong {
  font-family: "Sora", sans-serif;
  font-size: 17px;
}

.photo-slot__caption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.photo-slot--hero {
  position: absolute;
  inset: 0 60px 40px 0;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.photo-slot--charles-hero > img {
  object-position: 50% 43%;
}

.photo-slot--hero .photo-slot__icon {
  width: 128px;
  height: 128px;
}

.photo-slot--hero .photo-slot__icon svg {
  width: 62px;
  height: 62px;
}

.photo-slot--small {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 230px;
  height: 205px;
  border: 8px solid var(--navy);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.photo-slot--small > img {
  object-position: center 22%;
}

.photo-slot--small .photo-slot__caption {
  left: 16px;
  right: 16px;
  bottom: 14px;
}

.photo-slot--small .photo-slot__caption strong {
  font-size: 14px;
}

.photo-slot--small .photo-slot__tag {
  top: 12px;
  left: 12px;
}

.photo-slot--small .photo-slot__icon {
  width: 68px;
  height: 68px;
}

.photo-slot--small .photo-slot__icon svg {
  width: 32px;
  height: 32px;
}

.hero__experience {
  position: absolute;
  z-index: 3;
  top: 34px;
  right: 8px;
  width: 180px;
  min-height: 126px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.hero__experience strong {
  font-family: "Sora", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.hero__experience span {
  flex: 1;
  min-width: 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero__line {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 38%;
  height: 5px;
  background: var(--cyan);
}

.authority-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.authority-strip__grid {
  min-height: 118px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.authority-item {
  min-height: 58px;
  padding: 8px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.authority-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.authority-item strong {
  color: var(--navy);
  font-family: "Sora", sans-serif;
  font-size: 18px;
}

.authority-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.brand-marquee {
  padding-block: 34px 30px;
  overflow: hidden;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.brand-marquee__heading {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--navy);
  font-weight: 700;
}

.brand-marquee__heading small {
  color: #7f8b97;
  font-weight: 500;
}

.marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: marquee 34s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.brand-logo {
  width: 150px;
  height: 64px;
  flex: 0 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #273a4e;
  background: var(--white);
  border: 1px solid #e2e8ee;
  border-radius: 5px;
  filter: none;
  opacity: 1;
  transition: filter 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.brand-logo:hover {
  border-color: #b8c9d7;
}

.brand-logo img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.brand-logo--wordmark img {
  width: 112px;
  height: 28px;
}

.brand-logo span {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
}

.brand-logo--text span {
  font-family: "Sora", sans-serif;
}

@keyframes marquee {
  to { transform: translateX(calc(-50% - 7px)); }
}

.section {
  padding-block: 112px;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 50px;
}

.section-heading h2,
.sales__content h3,
.refrigeration h2,
.about h2,
.faq h2,
.final-cta h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 42px;
}

.section-heading > p:last-child,
.section-heading--split > p,
.lead {
  color: var(--muted);
  font-size: 18px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.05fr 0.72fr;
  align-items: end;
  gap: 90px;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading--split > p {
  margin-bottom: 3px;
}

.sales__layout {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 84px;
}

.sales__visual {
  position: relative;
}

.photo-slot--product {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.photo-slot--product > img {
  object-position: center;
}

.sales__badge {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 260px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.sales__badge svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--cyan);
}

.sales__badge span {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.sales__badge strong {
  color: var(--white);
  font-size: 16px;
}

.sales__content h3 {
  font-size: 31px;
}

.sales__content > p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-block: 11px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #30445a;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.check-list svg {
  width: 21px;
  height: 21px;
  padding: 4px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
}

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

.service-card {
  position: relative;
  min-height: 320px;
  padding: 30px 26px 28px;
  background: var(--white);
  border: 1px solid #e1e8ee;
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.service-card__number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #b7c4cf;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 58px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #e9f4fb;
  border-radius: 5px;
}

.service-card__icon svg {
  width: 25px;
  height: 25px;
}

.service-card h3 {
  margin-bottom: 13px;
  color: var(--navy);
  font-size: 19px;
}

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

.section-action {
  margin-top: 34px;
  text-align: right;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-weight: 800;
}

.text-link svg {
  width: 18px;
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.refrigeration__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 86px;
}

.refrigeration h2,
.about h2,
.faq h2 {
  margin-bottom: 22px;
}

.refrigeration .lead {
  margin-bottom: 34px;
}

.appliance-list {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}

.appliance-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.appliance-item > svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  color: var(--blue);
}

.appliance-item div {
  display: flex;
  flex-direction: column;
}

.appliance-item strong {
  color: var(--navy);
  font-family: "Sora", sans-serif;
  font-size: 15px;
}

.appliance-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.refrigeration__visual {
  position: relative;
  min-height: 560px;
}

.appliance-showcase {
  min-height: 560px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(13, 39, 66, 0.98), rgba(18, 54, 83, 0.94)),
    url("assets/condensadora-gree-instalada.jpeg") center / cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.appliance-showcase__heading {
  margin-bottom: 38px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.appliance-showcase__heading img {
  width: 62px;
  height: 62px;
  padding: 8px;
  object-fit: contain;
  border-radius: 5px;
  background: var(--white);
}

.appliance-showcase__heading div {
  display: flex;
  flex-direction: column;
}

.appliance-showcase__heading span {
  color: #a5eef0;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.appliance-showcase__heading strong {
  font-family: "Sora", sans-serif;
  font-size: 21px;
}

.appliance-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.appliance-showcase__grid > div {
  min-height: 112px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
}

.appliance-showcase__grid svg {
  width: 29px;
  height: 29px;
  color: var(--cyan);
}

.appliance-showcase__grid span {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.appliance-showcase > p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.technical {
  padding-block: 112px;
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.68);
}

.technical__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.technical-item {
  position: relative;
  min-height: 280px;
  padding: 40px 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.technical-item:first-child {
  padding-left: 0;
}

.technical-item:last-child {
  border-right: 0;
}

.technical-item > svg {
  width: 36px;
  height: 36px;
  margin-bottom: 66px;
  color: var(--cyan);
}

.technical-item > span {
  position: absolute;
  top: 42px;
  right: 24px;
  color: rgba(255, 255, 255, 0.28);
  font-family: "Sora", sans-serif;
  font-size: 13px;
}

.technical-item h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 18px;
}

.technical-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 94px;
}

.about__visual {
  position: relative;
}

.photo-slot--portrait {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.photo-slot--portrait > img {
  object-position: 52% 38%;
}

.about__seal {
  position: absolute;
  right: -46px;
  bottom: 46px;
  width: 168px;
  height: 168px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  background: var(--navy);
  border: 6px solid var(--soft);
  border-radius: 50%;
  text-align: center;
  box-shadow: var(--shadow);
}

.about__seal img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
}

.about__seal span {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.about__content > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}

.about__facts {
  margin: 30px 0;
  padding-block: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about__facts > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about__facts svg {
  width: 27px;
  height: 27px;
  color: var(--blue);
}

.about__facts span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 13px;
}

.about__facts strong {
  color: var(--navy);
  font-size: 14px;
}

.social-proof {
  overflow: hidden;
}

.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 18px;
}

.reviews-carousel__stage {
  min-height: 360px;
}

.review-card {
  min-height: 360px;
  padding: 46px 52px;
  display: none;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.review-card.is-active {
  display: flex;
  animation: review-in 0.45s ease both;
}

.review-card:hover {
  border-color: #b8c9d7;
}

.review-card__top {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.stars {
  color: var(--yellow);
  letter-spacing: 0.08em;
}

.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card__source svg {
  width: 15px;
  height: 15px;
}

.review-card blockquote {
  margin: 0 0 30px;
  color: var(--navy);
  font-family: "Sora", sans-serif;
  font-size: 21px;
  line-height: 1.55;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__author > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.review-card__author strong {
  color: var(--navy);
  font-size: 14px;
}

.review-card__author svg {
  width: 16px;
  margin-left: auto;
  color: var(--muted);
}

.reviews-carousel__arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.reviews-carousel__arrow:hover {
  color: var(--blue);
  border-color: var(--blue);
  transform: scale(1.05);
}

.reviews-carousel__arrow svg {
  width: 22px;
  height: 22px;
}

.reviews-carousel__dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.reviews-carousel__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: #c8d3dc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.reviews-carousel__dots button.is-active {
  width: 28px;
  background: var(--blue);
  border-radius: 10px;
}

@keyframes review-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.social-proof__actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.location__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 78px;
}

.location__content h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 42px;
}

.location__content > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-item {
  min-height: 72px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

a.contact-item:hover {
  transform: translateX(4px);
  border-color: var(--blue);
}

.contact-item > svg:first-child {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.contact-item > svg:last-child {
  width: 17px;
  margin-left: auto;
  color: #8794a0;
}

.contact-item span {
  display: flex;
  flex-direction: column;
}

.contact-item small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--navy);
  font-size: 14px;
}

.map-wrap {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 520px;
  display: block;
  border: 0;
  filter: saturate(0.65) contrast(1.02);
}

.map-wrap > a {
  position: absolute;
  left: 22px;
  bottom: 22px;
  min-height: 48px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: var(--navy);
  border-radius: 5px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.map-wrap > a svg {
  width: 17px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 92px;
}

.faq .section-heading {
  margin-bottom: 0;
}

.faq .text-link {
  margin-top: 18px;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary svg {
  width: 20px;
  flex: 0 0 auto;
  color: var(--blue);
  transition: transform 0.2s ease;
}

.faq details[open] summary svg {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 680px;
  padding: 0 46px 24px 0;
  color: var(--muted);
}

.final-cta {
  padding-block: 82px;
  background:
    linear-gradient(90deg, rgba(13, 39, 66, 0.98), rgba(13, 39, 66, 0.9)),
    linear-gradient(130deg, var(--navy), var(--blue));
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.final-cta__actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer {
  padding-top: 72px;
  color: rgba(255, 255, 255, 0.66);
  background: #081b2e;
}

.footer__grid {
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.9fr 0.85fr;
  gap: 56px;
}

.footer__brand img {
  width: 250px;
  margin-bottom: 20px;
}

.footer__brand p {
  max-width: 370px;
  font-size: 14px;
}

.footer__grid h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 14px;
}

.footer__grid > div:not(.footer__brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
}

.footer__grid a:hover {
  color: var(--cyan);
}

.footer__bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.footer__bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__bottom svg {
  width: 15px;
}

.whatsapp-float {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 22px;
  min-height: 62px;
  padding: 7px 18px 7px 7px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(15, 120, 68, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(15, 120, 68, 0.42);
}

.whatsapp-float__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.16);
}

.whatsapp-float__icon svg {
  width: 26px;
  height: 26px;
}

.whatsapp-float__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.whatsapp-float__text small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
}

.whatsapp-float__text strong {
  font-size: 14px;
}

.modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 22px;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 17, 29, 0.7);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: 7px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--soft);
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}

.modal__close svg {
  width: 19px;
}

.modal__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
}

.modal__icon svg {
  width: 28px;
  height: 28px;
}

.modal h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 31px;
}

.modal > .modal__dialog > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
}

.modal__options {
  display: grid;
  gap: 10px;
}

.modal-option {
  min-height: 72px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 5px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.modal-option:hover {
  border-color: var(--blue);
  background: #f6fbff;
}

.modal-option > svg:first-child {
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.modal-option > svg:last-child {
  width: 18px;
  margin-left: auto;
  color: var(--blue);
}

.modal-option span {
  display: flex;
  flex-direction: column;
}

.modal-option strong {
  color: var(--navy);
  font-size: 14px;
}

.modal-option small {
  color: var(--muted);
}

.modal__later {
  width: 100%;
  margin-top: 14px;
  padding: 8px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header-cta { display: none; }
  .main-nav { gap: 18px; }
}

@media (max-width: 1080px) {
  .hero h1 { font-size: 46px; }
  .hero__grid { gap: 42px; }
  .section-heading h2,
  .refrigeration h2,
  .about h2,
  .faq h2,
  .location__content h2,
  .final-cta h2 { font-size: 37px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .technical__grid { grid-template-columns: 1fr 1fr; }
  .technical-item:nth-child(2) { border-right: 0; }
  .technical-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer__grid > div:last-child { grid-column: 2 / 4; flex-direction: row; gap: 30px; }
}

@media (max-width: 860px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .topbar__hours { display: none !important; }
  .brand { width: 205px; }
  .brand img { height: 50px; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 14px 18px 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(13, 39, 66, 0.12);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 54px; padding-block: 62px 72px; }
  .hero__visual { min-height: 480px; }
  .hero__content { max-width: 680px; }
  .authority-strip__grid { grid-template-columns: 1fr 1fr; padding-block: 18px; }
  .authority-item { border-bottom: 1px solid var(--line); }
  .authority-item:nth-child(3) { padding-left: 0; border-left: 0; border-bottom: 0; }
  .authority-item:nth-child(4) { border-bottom: 0; }
  .brand-marquee__heading { flex-direction: column; gap: 4px; }
  .section { padding-block: 84px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 22px; }
  .sales__layout,
  .refrigeration__grid,
  .about__grid,
  .location__grid,
  .faq__grid { grid-template-columns: 1fr; gap: 58px; }
  .sales__visual { order: 2; }
  .refrigeration__visual { min-height: 540px; }
  .appliance-list { grid-template-columns: 1fr 1fr; }
  .about__visual { max-width: 520px; }
  .review-card { padding: 40px; }
  .final-cta__inner { align-items: flex-start; flex-direction: column; }
  .final-cta__actions { flex-direction: row; flex-wrap: wrap; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__grid > div:last-child { grid-column: auto; flex-direction: column; gap: 9px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar__inner { min-height: 34px; justify-content: space-between; }
  .topbar p { font-size: 11px; }
  .topbar__link { font-size: 0; }
  .topbar__link svg { width: 17px; height: 17px; }
  .brand { width: 185px; }
  .hero__grid { padding-block: 48px 56px; }
  .hero h1 { font-size: 36px; }
  .hero__lead { font-size: 17px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__trust { display: grid; grid-template-columns: 1fr 1fr; }
  .hero__visual { min-height: 420px; }
  .photo-slot--hero { inset: 0 26px 54px 0; }
  .photo-slot--small { width: 190px; height: 174px; border-width: 6px; }
  .hero__experience { top: 24px; right: -3px; width: 164px; min-height: 108px; padding: 14px; }
  .hero__experience strong { font-size: 29px; }
  .hero__experience span { font-size: 9.5px; }
  .authority-strip__grid { grid-template-columns: 1fr 1fr; }
  .authority-item { padding: 14px 14px; min-height: 86px; }
  .authority-item strong { font-size: 15px; }
  .authority-item span { font-size: 11px; }
  .brand-marquee__heading { font-size: 14px; }
  .brand-marquee__heading small { font-size: 11px; }
  .section { padding-block: 70px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2,
  .refrigeration h2,
  .about h2,
  .faq h2,
  .location__content h2,
  .final-cta h2 { font-size: 30px; }
  .section-heading > p:last-child,
  .section-heading--split > p,
  .lead { font-size: 16px; }
  .sales__layout { gap: 48px; }
  .sales__badge { right: -4px; bottom: -30px; width: 230px; }
  .sales__content h3 { font-size: 25px; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .appliance-list { grid-template-columns: 1fr; }
  .refrigeration__visual,
  .appliance-showcase { min-height: auto; }
  .appliance-showcase { padding: 30px 22px; }
  .appliance-showcase__heading strong { font-size: 17px; }
  .appliance-showcase__grid { grid-template-columns: 1fr 1fr; }
  .technical { padding-block: 72px; }
  .technical__grid { grid-template-columns: 1fr; }
  .technical-item,
  .technical-item:first-child { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .technical-item:last-child { border-bottom: 0; }
  .technical-item > svg { margin-bottom: 32px; }
  .about__seal { right: -6px; bottom: 28px; width: 142px; height: 142px; }
  .about__facts { grid-template-columns: 1fr; }
  .reviews-carousel { display: block; padding-bottom: 56px; }
  .reviews-carousel__stage { min-height: 460px; }
  .review-card { min-height: 460px; padding: 30px 22px; }
  .review-card blockquote { font-size: 17px; }
  .reviews-carousel__arrow { position: absolute; bottom: 0; width: 42px; height: 42px; }
  .reviews-carousel__arrow--prev { left: 0; }
  .reviews-carousel__arrow--next { right: 0; }
  .reviews-carousel__dots { min-height: 42px; align-items: center; }
  .social-proof__actions { flex-direction: column; }
  .map-wrap,
  .map-wrap iframe { min-height: 400px; height: 400px; }
  .faq__grid { gap: 34px; }
  .faq summary { font-size: 14px; }
  .final-cta__actions { width: 100%; flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { padding-block: 20px; flex-direction: column; align-items: flex-start; }
  .whatsapp-float { right: 14px; bottom: 14px; min-height: 58px; padding: 5px; border-radius: 50%; }
  .whatsapp-float__icon { width: 48px; height: 48px; border-radius: 50%; }
  .whatsapp-float__text { display: none; }
  .modal { padding: 12px; }
  .modal__dialog { padding: 30px 20px 22px; }
  .modal h2 { font-size: 26px; }
}

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