@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

.home-page.has-review-modal {
  overflow: hidden;
}

.home-page .testimonial-card.is-active {
  cursor: pointer;
}

.review-modal[hidden] {
  display: none;
}

.review-modal {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  padding: 24px;
  background: rgb(19 13 10 / 72%);
  backdrop-filter: blur(6px);
  place-items: center;
}

.review-modal-dialog {
  position: relative;
  overflow: hidden;
  width: min(650px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 28px 80px rgb(0 0 0 / 38%);
}

.review-modal-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0 0 4px;
  border: 0;
  border-radius: 50%;
  color: #222;
  background: var(--white);
  box-shadow: 0 5px 18px rgb(0 0 0 / 18%);
  cursor: pointer;
  font-size: 32px;
  font-weight: 450;
  line-height: 1;
  place-items: center;
}

.review-modal-close:hover,
.review-modal-close:focus-visible {
  background: #f1f1f1;
  outline: 3px solid rgb(255 255 255 / 55%);
  outline-offset: 3px;
}

.review-modal-content {
  overflow: auto;
  max-height: calc(100vh - 48px);
}

.review-modal-content .testimonial-head {
  display: flex;
  min-height: 185px;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 42px 82px 36px 42px;
  color: var(--white);
  background: #4863ad;
  line-height: 1.08;
}

.review-modal-content .avatar {
  width: 86px;
  height: 86px;
  flex: 0 0 auto;
}

.review-modal-content .testimonial-head strong {
  font-size: 25px;
  font-weight: 600;
}

.review-modal-content .stars {
  font-size: 22px;
  letter-spacing: 1px;
}

.review-modal-content > p {
  margin: 0;
  padding: 34px 42px 42px;
  color: #312e2c;
  background: var(--white);
  font-size: 17px;
  line-height: 1.58;
}

@media (max-width: 600px) {
  .review-modal { padding: 16px; }
  .review-modal-dialog { border-radius: 24px; }
  .review-modal-content .testimonial-head {
    min-height: 155px;
    gap: 16px;
    padding: 34px 70px 28px 28px;
  }
  .review-modal-content .avatar { width: 68px; height: 68px; }
  .review-modal-content .testimonial-head strong { font-size: 21px; }
  .review-modal-content .stars { font-size: 18px; }
  .review-modal-content > p { padding: 27px 28px 34px; font-size: 15px; }
}

@font-face {
  font-family: "Bebas Neue";
  src: url("assets/fonts/BebasNeue-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --blue: #4c69b2;
  --blue-dark: #3e59a0;
  --black: #171717;
  --white: #ffffff;
  --muted: #6f7480;
  --soft: #f6f7fa;
  --green: #05b929;
  --header-height: 86px;
  --content-width: 1080px;
  --shadow: 0 18px 45px rgb(20 27 45 / 12%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: var(--black);
  box-shadow: 0 2px 14px rgb(0 0 0 / 18%);
}

.header-inner {
  display: flex;
  width: min(1160px, calc(100% - 64px));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  display: flex;
  min-width: 230px;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  transform: skew(-4deg);
}

.brand-mark span {
  display: block;
  background: var(--white);
}

.brand-mark span:nth-child(1) {
  border-radius: 3px 13px 3px 3px;
}

.brand-mark span:nth-child(2) {
  border-radius: 3px 15px 15px 3px;
}

.brand-mark span:nth-child(3) {
  border-radius: 3px 3px 3px 15px;
}

.brand-mark span:nth-child(4) {
  border-radius: 15px 3px 3px 15px;
}

.brand-logo-image {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.brand-tagline {
  margin-top: 5px;
  color: #d6d6d6;
  font-size: 9px;
  font-weight: 350;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(38px, 7vw, 84px);
}

.main-nav a {
  position: relative;
  padding: 29px 0 24px;
  color: #f5f5f5;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.15px;
  transition: color 180ms ease;
}

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

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--blue);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-nav {
  display: none;
  color: var(--white);
}

.mobile-nav summary {
  display: grid;
  width: 46px;
  height: 46px;
  cursor: pointer;
  list-style: none;
  place-items: center;
}

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

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  top: -8px;
}

.menu-lines::after {
  top: 8px;
}

.mobile-menu-panel {
  position: absolute;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: grid;
  padding: 14px 24px 22px;
  border-top: 1px solid #333;
  background: var(--black);
  box-shadow: 0 14px 24px rgb(0 0 0 / 25%);
}

.mobile-menu-panel a {
  padding: 12px 8px;
  border-bottom: 1px solid #2e2e2e;
}

.mobile-menu-panel a[aria-current="page"] {
  color: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(1160px, calc(100% - 72px));
  margin-inline: auto;
  background: #e6e8ed;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 62px;
  background: linear-gradient(to bottom, transparent, var(--white) 92%);
  content: "";
  pointer-events: none;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-home {
  height: clamp(460px, 60vw, 650px);
}

.hero-home img {
  object-position: center center;
}

.hero-profile,
.hero-contact {
  height: clamp(400px, 53vw, 620px);
}

.hero-product {
  width: min(1160px, calc(100% - 40px));
  height: clamp(420px, 54vw, 610px);
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-title {
  margin: 0 0 34px;
  text-align: center;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 520;
  line-height: 1.2;
}

.subtle-title {
  margin: 0;
  font-size: 23px;
  font-weight: 500;
}

.facts-grid {
  display: grid;
  max-width: 920px;
  margin: 10px auto 6px;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.fact {
  text-align: center;
}

.icon-circle {
  display: grid;
  width: 116px;
  height: 116px;
  margin: 0 auto 15px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  place-items: center;
}

.icon-circle svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.fact h2,
.fact p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.fact h2 {
  font-weight: 650;
}

.advantages {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 36px 0 34px;
  color: var(--white);
  background: var(--blue);
}

.advantages::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(to right, var(--blue) 0%, rgb(76 105 178 / 48%) 38%, transparent 74%), url("assets/images/benang.png") center / cover no-repeat;
  content: "";
}

.advantages-content {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), calc(100% - 48px));
  margin-inline: auto;
}

.advantages-list {
  display: grid;
  max-width: 650px;
  margin: 22px 0 0;
  padding: 0;
  gap: 15px;
  list-style: none;
}

.advantages-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 320;
}

.mini-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 2px solid rgb(255 255 255 / 88%);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 700;
  place-items: center;
}

.flow-title {
  margin: 0 0 27px;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
}

.order-flow {
  position: relative;
  display: grid;
  max-width: 950px;
  margin: 0 auto;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}

.order-flow::before {
  position: absolute;
  z-index: 0;
  top: 57px;
  right: 9%;
  left: 9%;
  height: 5px;
  background: var(--blue);
  content: "";
}

.flow-item {
  position: relative;
  z-index: 1;
  text-align: center;
}

.flow-item .icon-circle {
  width: 118px;
  height: 118px;
  border: 6px solid var(--white);
  margin-bottom: 5px;
}

.flow-item p {
  margin: 0;
  font-size: 13px;
  font-weight: 550;
}

.offer-card {
  display: grid;
  overflow: hidden;
  max-width: 520px;
  min-height: 156px;
  margin: 42px auto 36px;
  border-radius: 50px;
  color: var(--white);
  background: var(--blue);
  grid-template-columns: 1fr 1.35fr 1fr;
}

.offer-product {
  align-self: end;
  width: 100%;
  height: 146px;
  object-fit: contain;
}

.offer-copy {
  align-self: center;
  padding: 18px 6px;
  text-align: center;
}

.offer-copy h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 450;
}

.offer-copy p {
  margin: 0 0 13px;
  font-size: 12px;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 8px 24px rgb(0 0 0 / 20%);
  transform: translateY(-2px);
}

.testimonials {
  position: relative;
  max-width: 640px;
  min-height: 158px;
  margin: 12px auto 32px;
}

.testimonial-shadow {
  position: absolute;
  top: 22px;
  width: 86%;
  height: 106px;
  border-radius: 30px;
  background: #dadde4;
  filter: blur(4px);
  opacity: 0.82;
}

.testimonial-shadow:first-child {
  left: -10%;
}

.testimonial-shadow:nth-child(2) {
  right: -10%;
}

.testimonial-card {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin: 0 auto;
  padding: 16px 20px;
  border: 1px solid #555;
  border-radius: 28px;
  background: var(--white);
  font-size: 11px;
  line-height: 1.45;
}

.testimonial-head {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
  gap: 10px;
}

.avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  place-items: center;
}

.stars {
  color: #ffd60a;
  letter-spacing: 1px;
}

.site-footer {
  margin-top: 38px;
  padding: 46px 0 16px;
  border-radius: 42px 42px 0 0;
  color: var(--white);
  background: var(--blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  width: 335px;
  max-width: 88%;
}

.footer-brand p,
.footer-info p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.45;
}

.footer-info {
  justify-self: end;
  text-align: right;
}

.footer-info h2 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 650;
}

.copyright {
  margin: 35px 0 0;
  text-align: center;
  font-size: 10px;
  opacity: 0.86;
}

.simple-footer {
  padding: 18px 20px 12px;
  border-radius: 36px 36px 0 0;
  text-align: center;
  font-size: 10px;
}

/* Profile */
.intro-card {
  max-width: 830px;
  margin: 0 auto;
  padding: 28px 45px;
  border-radius: 48px;
  color: var(--white);
  background: var(--blue);
  text-align: center;
}

.intro-card h1,
.vision-card h2 {
  margin: 0 0 9px;
  font-size: 21px;
  font-weight: 480;
}

.intro-card p,
.vision-card p,
.vision-card li {
  margin: 0;
  font-size: 12px;
  line-height: 1.48;
}

.vision-grid {
  display: grid;
  align-items: start;
  max-width: 930px;
  margin: 32px auto 0;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
}

.profile-vision-title {
  margin-top: 42px;
}

.vision-card {
  min-height: 130px;
  padding: 24px 36px;
  border-radius: 34px;
  color: var(--white);
  background: var(--blue);
  text-align: center;
}

.vision-card.mission {
  min-height: 250px;
  text-align: left;
}

.vision-card.mission h2 {
  text-align: center;
}

.vision-card ul {
  margin: 8px 0 0;
  padding-left: 19px;
}

.values-grid {
  display: grid;
  max-width: 800px;
  margin-top: 8px;
  margin-inline: auto;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.value-card {
  text-align: center;
}

.value-symbol {
  display: grid;
  height: 76px;
  color: var(--blue);
  font-size: 67px;
  font-weight: 750;
  line-height: 1;
  place-items: center;
}

.value-symbol img {
  width: 66px;
  height: 66px;
  display: block;
  object-fit: contain;
}

.value-card h3 {
  margin: 10px 0 1px;
  font-size: 13px;
  font-weight: 620;
}

.value-card p {
  margin: 0;
  font-size: 11px;
  line-height: 1.38;
}

.documentation-label {
  max-width: 320px;
  margin: 42px auto 24px;
  padding: 6px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  text-align: center;
}

.documentation-grid {
  display: grid;
  overflow: hidden;
  height: 390px;
  grid-template-columns: 1fr 1fr;
}

.documentation-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.documentation-grid figure::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 58px;
  background: linear-gradient(transparent, var(--white));
  content: "";
}

.documentation-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Products */
.product-intro {
  padding: 16px 0 44px;
  text-align: center;
}

.product-intro h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 1px;
}

.product-intro p {
  display: inline-block;
  margin: 0;
  padding: 0 4px 12px;
  border-bottom: 1px solid #222;
  color: #666;
  font-size: 12px;
  line-height: 1.35;
}

.products-heading {
  margin: 0 0 28px;
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.product-grid {
  display: grid;
  max-width: 800px;
  margin-inline: auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  min-width: 0;
  text-align: center;
}

.product-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-link:focus-visible {
  outline: 3px solid #586ac7;
  outline-offset: 5px;
  border-radius: 28px;
}

.product-image {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.84;
  border-radius: 26px;
  background: #f5f5f7;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 240ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-card h2 {
  margin: 8px 0 1px;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.18;
}

.product-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.best-section {
  margin-top: 74px;
  padding: 50px 0 70px;
  border-radius: 94px 94px 0 0;
  color: var(--white);
  background: var(--black);
}

.best-section .product-image {
  border-radius: 30px;
  background: var(--white);
}

.best-section .product-card h2 {
  font-size: 17px;
}

.best-section .product-card p {
  color: #f2f2f2;
}

.all-products-wrap {
  position: relative;
  margin-top: 104px;
  text-align: center;
}

.all-products-wrap::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: #8e8e8e;
  content: "";
}

.all-products-wrap .button {
  position: relative;
  z-index: 1;
  min-width: 280px;
  font-size: 17px;
}

.arrow {
  margin-left: 10px;
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}

.product-page .simple-footer {
  margin-top: 195px;
}

/* Contact */
.contact-card {
  max-width: 610px;
  margin: 12px auto 50px;
  padding: 16px 66px 34px;
  color: var(--white);
  background: var(--blue);
}

.contact-card h1 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 450;
}

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

.contact-list a,
.contact-list .contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.contact-list a:hover span:last-child,
.contact-list a:focus-visible span:last-child {
  text-decoration: underline;
}

.contact-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
}

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

.map-section h2,
.hours h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 21px;
  font-weight: 500;
}

.map-link {
  display: block;
  overflow: hidden;
  max-width: 655px;
  margin: 0 auto;
  border: 1px solid #e4e5e8;
  box-shadow: 0 5px 18px rgb(0 0 0 / 8%);
}

.map-link img {
  width: 100%;
  aspect-ratio: 1.9;
  object-fit: cover;
}

.contact-actions {
  display: grid;
  max-width: 790px;
  align-items: start;
  margin: 50px auto 44px;
  grid-template-columns: 1.28fr 1fr;
  gap: 24px;
}

.whatsapp-list {
  display: grid;
  gap: 26px;
}

.whatsapp-button {
  display: flex;
  min-height: 60px;
  align-items: center;
  padding: 7px 20px 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 17px;
  transition: background 160ms ease, transform 160ms ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.wa-icon {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  margin-right: 14px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  font-size: 27px;
  font-weight: 700;
  place-items: center;
}

.consult-card {
  padding: 16px 36px 24px;
  color: var(--white);
  background: var(--blue);
}

.consult-card h2 {
  margin: 0 0 11px;
  text-align: center;
  font-size: 17px;
}

.consult-form {
  display: grid;
}

.consult-form label {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.consult-form input,
.consult-form textarea {
  width: 100%;
  border: 1px solid #a7a7a7;
  border-radius: 0;
  outline: none;
  color: #222;
  background: var(--white);
  font-size: 11px;
}

.consult-form input {
  height: 28px;
  padding: 5px 12px;
}

.consult-form textarea {
  min-height: 70px;
  padding: 8px 12px;
  resize: vertical;
}

.consult-form button {
  min-height: 34px;
  margin-top: 9px;
  border: 0;
  color: var(--blue-dark);
  background: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.hours {
  margin: 24px auto 0;
  text-align: center;
}

.hours h2 {
  margin-bottom: 4px;
  font-size: 18px;
}

.hours p {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    width: min(100% - 36px, 1160px);
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    gap: 28px;
  }

  .main-nav a {
    font-size: 16px;
  }

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

  .facts-grid {
    max-width: 620px;
    row-gap: 44px;
  }

  .order-flow {
    grid-template-columns: repeat(5, minmax(104px, 1fr));
    gap: 6px;
  }

  .flow-item .icon-circle {
    width: 104px;
    height: 104px;
  }

  .flow-item .icon-circle svg {
    width: 49px;
    height: 49px;
  }

  .vision-grid {
    gap: 32px;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 38px;
  }
}

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

  .site-header {
    height: var(--header-height);
  }

  .main-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .brand-mark {
    width: 41px;
    height: 41px;
  }

  .brand-logo-image {
    width: 41px;
    height: 41px;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero-home,
  .hero-profile,
  .hero-contact,
  .hero-product {
    width: 100%;
    height: clamp(320px, 72vw, 480px);
  }

  .hero-home img,
  .hero-profile img,
  .hero-contact img,
  .hero-product img {
    object-position: center;
  }

  .section {
    padding: 54px 0;
  }

  .facts-grid {
    gap: 36px 20px;
  }

  .icon-circle {
    width: 96px;
    height: 96px;
  }

  .icon-circle svg {
    width: 48px;
    height: 48px;
  }

  .advantages::before {
    width: 100%;
    opacity: 0.18;
  }

  .advantages-list {
    max-width: 100%;
  }

  .order-flow {
    max-width: 420px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .order-flow::before {
    top: 7%;
    bottom: 7%;
    left: 50%;
    width: 5px;
    height: auto;
  }

  .flow-item {
    display: grid;
    align-items: center;
    grid-template-columns: 108px 1fr;
    text-align: left;
  }

  .flow-item .icon-circle {
    margin: 0;
  }

  .flow-item p {
    display: inline-block;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--white);
  }

  .offer-card {
    max-width: 450px;
    grid-template-columns: 0.85fr 1.5fr 0.85fr;
  }

  .vision-grid,
  .contact-actions,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .vision-grid {
    gap: 24px;
  }

  .vision-card.mission {
    min-height: 0;
  }

  .footer-info {
    justify-self: start;
    text-align: left;
  }

  .documentation-grid {
    height: auto;
    grid-template-columns: 1fr;
  }

  .documentation-grid figure {
    height: 290px;
  }

  .best-section {
    border-radius: 56px 56px 0 0;
  }

  .contact-card {
    padding-inline: 30px;
  }

  .contact-actions {
    max-width: 520px;
  }

  .product-page .simple-footer {
    margin-top: 110px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-tagline {
    display: none;
  }

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

  .facts-grid {
    max-width: 260px;
  }

  .advantages-list li {
    align-items: flex-start;
  }

  .offer-card {
    min-height: 144px;
    margin-inline: -6px;
  }

  .offer-product {
    height: 130px;
  }

  .offer-copy h2 {
    font-size: 17px;
  }

  .offer-copy p {
    font-size: 10px;
  }

  .testimonial-card {
    margin-inline: 16px;
  }

  .intro-card {
    padding: 27px 24px;
    border-radius: 36px;
  }

  .vision-card {
    padding-inline: 25px;
  }

  .values-grid {
    max-width: 260px;
    margin-inline: auto;
  }

  .product-grid {
    max-width: 350px;
    margin-inline: auto;
    gap: 36px;
  }

  .all-products-wrap .button {
    min-width: 250px;
  }

  .contact-card {
    padding: 24px 20px 30px;
  }

  .whatsapp-button {
    font-size: 14px;
  }

  .site-footer {
    border-radius: 30px 30px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Beranda — calibrated to the supplied 1080 × 1920 reference frame. */
@media (min-width: 721px) {
  .home-page .hero-home {
    width: min(980px, calc(100% - 96px));
    height: 644px;
  }

  .home-page .facts-section {
    padding: 24px 0 25px;
  }

  .home-page .facts-grid {
    max-width: 740px;
    margin: 0 auto;
    gap: 30px;
  }

  .home-page .facts-grid .icon-circle {
    width: 118px;
    height: 118px;
    margin-bottom: 12px;
    background-color: transparent;
    background-image: url("assets/images/beranda-reference.png");
    background-repeat: no-repeat;
    background-size: 1080px 1920px;
  }

  .home-page .facts-grid .icon-circle svg {
    display: none;
  }

  .home-page .fact:nth-child(1) .icon-circle {
    background-position: -190px -756px;
  }

  .home-page .fact:nth-child(2) .icon-circle {
    background-position: -376px -756px;
  }

  .home-page .fact:nth-child(3) .icon-circle {
    background-position: -561px -756px;
  }

  .home-page .fact:nth-child(4) .icon-circle {
    background-position: -751px -756px;
  }

  .home-page .fact h2,
  .home-page .fact p {
    font-size: 11px;
    line-height: 1.28;
  }

  .home-page .advantages {
    min-height: 326px;
    height: 326px;
    padding: 14px 0;
  }

  .home-page .advantages::before {
    width: 38%;
  }

  .home-page .advantages-content {
    width: min(1080px, calc(100% - 96px));
  }

  .home-page .subtle-title {
    font-size: 16px;
  }

  .home-page .advantages-list {
    margin-top: 14px;
    gap: 8px;
  }

  .home-page .advantages-list li {
    gap: 12px;
    font-size: 10px;
  }

  .home-page .mini-icon {
    width: 29px;
    height: 29px;
    border: 0;
    border-radius: 0;
    font-size: 22px;
  }

  .home-page .home-order-section {
    padding: 6px 0 14px;
  }

  .home-page .flow-title {
    margin-bottom: 17px;
    font-size: 17px;
  }

  .home-page .order-flow {
    max-width: 900px;
    gap: 26px;
  }

  .home-page .order-flow::before {
    top: 61px;
    right: 7%;
    left: 7%;
    height: 4px;
  }

  .home-page .flow-item .icon-circle {
    width: 124px;
    height: 124px;
    border: 0;
    margin-bottom: 5px;
    background-color: transparent;
    background-image: url("assets/images/beranda-reference.png");
    background-repeat: no-repeat;
    background-size: 1080px 1920px;
  }

  .home-page .flow-item .icon-circle svg {
    display: none;
  }

  .home-page .flow-item:nth-child(1) .icon-circle {
    background-position: -114px -1330px;
  }

  .home-page .flow-item:nth-child(2) .icon-circle {
    background-position: -298px -1330px;
  }

  .home-page .flow-item:nth-child(3) .icon-circle {
    background-position: -481px -1330px;
  }

  .home-page .flow-item:nth-child(4) .icon-circle {
    background-position: -665px -1330px;
  }

  .home-page .flow-item:nth-child(5) .icon-circle {
    background-position: -839px -1330px;
  }

  .home-page .flow-item p {
    font-size: 11px;
  }

  .home-page .offer-card {
    position: relative;
    display: block;
    width: 476px;
    max-width: none;
    height: 157px;
    min-height: 0;
    margin: 25px auto 22px;
    border-radius: 52px;
    background-color: var(--blue);
    background-image: url("assets/images/beranda-reference.png");
    background-repeat: no-repeat;
    background-position: -309px -1508px;
    background-size: 1080px 1920px;
  }

  .home-page .offer-product,
  .home-page .offer-copy h2,
  .home-page .offer-copy p {
    display: none;
  }

  .home-page .offer-copy {
    padding: 0;
  }

  .home-page .offer-copy .button {
    position: absolute;
    top: 111px;
    left: 160px;
    width: 142px;
    min-height: 29px;
    padding: 0;
    opacity: 0;
  }

  .home-page .testimonials {
    width: 584px;
    max-width: none;
    height: 150px;
    min-height: 0;
    margin: 24px auto 18px;
    background-image: url("assets/images/beranda-reference.png");
    background-repeat: no-repeat;
    background-position: -248px -1694px;
    background-size: 1080px 1920px;
  }

  .home-page .testimonials > * {
    visibility: hidden;
  }

  .home-page .simple-footer {
    height: 37px;
    margin-top: 0;
    padding: 12px 20px 0;
    border-radius: 36px 36px 0 0;
  }

  .home-page .simple-footer p {
    margin: 0;
    font-size: 8px;
  }
}

/* Profile page — scoped to keep every other page unchanged. */
.profile-page {
  --profile-width: min(100vw, 1920px);
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  overflow-x: hidden;
}

.profile-page main,
.profile-page .simple-footer {
  font-family: "League Spartan Local", "Inter", sans-serif;
}

@media (min-width: 721px) {
  .profile-page .header-inner {
    width: 90.74%;
    max-width: 1742px;
  }

  .profile-page .hero-profile {
    width: 100%;
    height: calc(var(--profile-width) * .532407);
    max-height: 1022px;
    margin: 0;
  }

  .profile-page .hero-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%;
  }

  .profile-page .hero-profile::after {
    height: calc(var(--profile-width) * .057407);
  }

  .profile-page .profile-overview {
    padding: calc(var(--profile-width) * .038889) 0 0;
  }

  .profile-page .profile-overview > .container,
  .profile-page .profile-values-section > .container {
    width: 100%;
    max-width: none;
  }

  .profile-page .intro-card {
    display: flex;
    width: 74.722%;
    max-width: none;
    min-height: calc(var(--profile-width) * .12963);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(var(--profile-width) * .02037) calc(var(--profile-width) * .041667);
    border-radius: calc(var(--profile-width) * .043519);
    background: #4c69b2;
  }

  .profile-page .intro-card h1,
  .profile-page .vision-card h2 {
    margin: 0 0 calc(var(--profile-width) * .008333);
    font-size: calc(var(--profile-width) * .014815);
    font-weight: 480;
    line-height: 1.15;
  }

  .profile-page .intro-card p {
    max-width: 52%;
    margin: 0 auto;
    font-size: calc(var(--profile-width) * .009259);
    line-height: 1.4;
  }

  .profile-page .profile-vision-title {
    margin: calc(var(--profile-width) * .037037) 0 calc(var(--profile-width) * .023148);
    font-size: calc(var(--profile-width) * .019444);
    font-weight: 520;
    line-height: 1.2;
  }

  .profile-page .vision-grid {
    width: 85.648%;
    max-width: none;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11.944%;
  }

  .profile-page .vision-card {
    min-height: calc(var(--profile-width) * .111111);
    padding: calc(var(--profile-width) * .022222) calc(var(--profile-width) * .033333);
    border-radius: calc(var(--profile-width) * .030556);
    background: #4c69b2;
  }

  .profile-page .vision-card.mission {
    min-height: calc(var(--profile-width) * .232407);
  }

  .profile-page .vision-card p,
  .profile-page .vision-card li {
    font-size: calc(var(--profile-width) * .009259);
    line-height: 1.35;
  }

  .profile-page .vision-card ul {
    margin: calc(var(--profile-width) * .006481) 0 0;
    padding-left: calc(var(--profile-width) * .017593);
  }

  .profile-page .profile-values-section {
    padding: calc(var(--profile-width) * .073148) 0 0;
  }

  .profile-page .profile-values-section .section-title {
    margin: 0 0 calc(var(--profile-width) * .025926);
    font-size: calc(var(--profile-width) * .019444);
    font-weight: 520;
    line-height: 1.2;
  }

  .profile-page .values-grid {
    width: 74.074%;
    max-width: none;
    margin: 0 auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: calc(var(--profile-width) * .02037);
  }

  .profile-page .value-symbol {
    height: calc(var(--profile-width) * .07037);
    font-size: calc(var(--profile-width) * .062037);
  }

  .profile-page .value-symbol img {
    width: calc(var(--profile-width) * .061111);
    height: calc(var(--profile-width) * .061111);
  }

  .profile-page .value-card h3 {
    margin: calc(var(--profile-width) * .009259) 0 calc(var(--profile-width) * .000926);
    font-size: calc(var(--profile-width) * .012037);
  }

  .profile-page .value-card p {
    font-size: calc(var(--profile-width) * .010185);
    line-height: 1.35;
  }

  .profile-page .documentation-label {
    width: 29.63%;
    max-width: none;
    margin: calc(var(--profile-width) * .067593) auto calc(var(--profile-width) * .022222);
    padding: calc(var(--profile-width) * .005556) calc(var(--profile-width) * .018519);
    border-radius: 999px;
    background: #4c69b2;
    font-size: calc(var(--profile-width) * .015741);
    line-height: 1.2;
  }

  .profile-page .documentation-grid {
    width: 100%;
    height: calc(var(--profile-width) * .277778);
  }

  .profile-page .documentation-grid figure::after {
    height: calc(var(--profile-width) * .053704);
  }

  .profile-page .simple-footer {
    display: flex;
    width: 100%;
    height: calc(var(--profile-width) * .034259);
    min-height: 0;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border-radius: calc(var(--profile-width) * .033333) calc(var(--profile-width) * .033333) 0 0;
    background: #4863ad;
  }

  .profile-page .simple-footer p {
    margin: 0;
    color: var(--white);
    font-size: calc(var(--profile-width) * .007407);
    font-weight: 350;
    line-height: 1;
  }
}

@media (max-width: 720px) {
  .profile-page .hero-profile {
    width: 100%;
    margin: 0;
  }
}

/* Beranda + Profile + Contact scroll reveal. Individual translate preserves layout transforms. */
:is(.home-page, .profile-page, .contact-page).scroll-motion-ready .scroll-reveal-element {
  opacity: 0;
  translate: 0 34px;
  transition:
    opacity 760ms cubic-bezier(.22, 1, .36, 1),
    translate 760ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--scroll-reveal-delay, 0ms);
  will-change: opacity, translate;
}

:is(.home-page, .profile-page, .contact-page).scroll-motion-ready .scroll-reveal-element.is-visible {
  opacity: 1;
  translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  :is(.home-page, .profile-page, .contact-page).scroll-motion-ready .scroll-reveal-element {
    transition: none !important;
    opacity: 1 !important;
    translate: none !important;
  }
}

/* Full-HD Beranda and interactive customer-review carousel. */
.home-page .reviews-title,
.home-page .drag-hint,
.home-page .review-dots,
.home-page .review-arrow {
  display: block;
}

.reviews-title {
  margin: 0 0 22px;
  color: var(--black);
  text-align: center;
  font-size: clamp(22px, 1.7vw, 32px);
  font-weight: 550;
}

.reviews-shell {
  position: relative;
  display: flex;
  align-items: center;
}

.reviews-viewport {
  overflow: hidden;
  width: 100%;
  padding: 24px 0 30px;
  cursor: grab;
  outline: none;
  touch-action: pan-y;
  user-select: none;
}

.reviews-viewport:focus-visible {
  border-radius: 36px;
  box-shadow: 0 0 0 3px rgb(76 105 178 / 28%);
}

.reviews-viewport.is-dragging {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: clamp(24px, 3vw, 56px);
  will-change: transform;
}

.home-page .testimonial-card {
  width: clamp(440px, 38vw, 690px);
  max-width: none;
  min-height: 270px;
  flex: 0 0 auto;
  margin: 0;
  padding: clamp(26px, 2.2vw, 42px);
  border: 2px solid #777;
  border-radius: 48px;
  box-shadow: 0 18px 45px rgb(27 37 61 / 12%);
  font-size: clamp(16px, 1.15vw, 22px);
  line-height: 1.38;
  opacity: 0.3;
  transform: scale(.86);
  transition: opacity 360ms ease, transform 360ms ease, filter 360ms ease;
}

.home-page .testimonial-card.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-page .testimonial-card p {
  margin: 18px 0 0;
}

.home-page .testimonial-head {
  margin-bottom: 10px;
  gap: 18px;
  line-height: 1.15;
}

.home-page .avatar {
  position: relative;
  overflow: hidden;
  width: 72px;
  height: 72px;
  background: #4c69b2;
}

.home-page .avatar::before,
.home-page .avatar::after {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  background: #91afe2;
  content: "";
  transform: translateX(-50%);
}

.home-page .avatar::before {
  top: 13px;
  width: 28px;
  height: 28px;
}

.home-page .avatar::after {
  bottom: -17px;
  width: 60px;
  height: 47px;
}

.home-page .stars {
  font-size: 22px;
}

.review-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  width: 58px;
  height: 58px;
  padding: 0 0 5px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 30px rgb(35 54 103 / 28%);
  cursor: pointer;
  font-size: 44px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 160ms ease, background 160ms ease;
}

.review-arrow:hover,
.review-arrow:focus-visible {
  background: var(--blue-dark);
  transform: translateY(-50%) scale(1.08);
}

.review-arrow-prev { left: clamp(10px, 3vw, 58px); }
.review-arrow-next { right: clamp(10px, 3vw, 58px); }

.review-dots {
  display: flex !important;
  justify-content: center;
  gap: 10px;
}

.review-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c8cede;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.review-dot.is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--blue);
}

.drag-hint {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

@media (min-width: 721px) {
  :root {
    --content-width: 1728px;
    --header-height: 112px;
  }

  .home-page {
    width: 100%;
    max-width: 1920px;
    margin-inline: auto;
    overflow: hidden;
  }

  .home-page .header-inner {
    width: min(1728px, calc(100% - 96px));
  }

  .home-page .hero-home {
    width: 100%;
    height: min(calc(100vh - var(--header-height)), 968px);
    min-height: 620px;
    margin: 0;
  }

  .home-page .hero-home img {
    object-position: center;
  }

  .home-page .facts-section,
  .home-page .advantages,
  .home-page .home-order-section,
  .home-page .simple-footer {
    width: 100%;
    height: auto;
    min-height: 0;
    background-image: none;
  }

  .home-page .facts-section {
    padding: 70px 0;
  }

  .home-page .facts-section .container,
  .home-page .advantages-content,
  .home-page .home-order-section > .container {
    opacity: 1;
    pointer-events: auto;
  }

  .home-page .facts-grid {
    max-width: 1380px;
    gap: 70px;
  }

  .home-page .facts-grid .icon-circle,
  .home-page .flow-item .icon-circle {
    background-image: none;
    background-color: var(--blue);
  }

  .home-page .facts-grid .icon-circle svg,
  .home-page .flow-item .icon-circle svg {
    display: block;
  }

  .home-page .facts-grid .icon-circle {
    width: 150px;
    height: 150px;
  }

  .home-page .fact h2,
  .home-page .fact p,
  .home-page .flow-item p {
    font-size: 16px;
  }

  .home-page .advantages {
    min-height: 470px;
    padding: 58px 0;
    background: #4863ad;
  }

  .home-page .advantages::before {
    display: block;
    width: 48%;
  }

  .home-page .advantages-content {
    width: min(1728px, calc(100% - 96px));
  }

  .home-page .subtle-title { font-size: 28px; }
  .home-page .advantages-list { margin-top: 30px; gap: 17px; }
  .home-page .advantages-list li { gap: 18px; font-size: 17px; }
  .home-page .mini-icon { width: 38px; height: 38px; border: 2px solid white; border-radius: 50%; font-size: 18px; }

  .home-page .home-order-section {
    overflow: visible;
    padding: 68px 0 48px;
  }

  .home-page .flow-title { margin-bottom: 34px; font-size: 28px; }
  .home-page .order-flow { max-width: 1420px; gap: 54px; }
  .home-page .order-flow::before { top: 73px; height: 6px; }
  .home-page .flow-item .icon-circle { width: 150px; height: 150px; border: 7px solid white; }

  .home-page .offer-card {
    display: grid;
    width: min(760px, 90%);
    max-width: 760px;
    height: 230px;
    margin: 62px auto 54px;
    border-radius: 70px;
    background-image: none;
    grid-template-columns: 1fr 1.35fr 1fr;
  }

  .home-page .offer-product { display: block; height: 220px; }
  .home-page .offer-copy { padding: 20px 8px; }
  .home-page .offer-copy h2 { display: block; font-size: 26px; }
  .home-page .offer-copy p { display: block; font-size: 15px; }
  .home-page .offer-copy .button { position: static; width: auto; min-height: 42px; padding: 10px 26px; opacity: 1; }

  .home-page .testimonials {
    width: calc(100vw - 48px);
    max-width: 1920px;
    height: auto;
    min-height: 0;
    margin: 30px calc(50% - 50vw) 26px;
    padding: 58px 0 34px;
    background: linear-gradient(180deg, #f8f9fc, #fff);
  }

  .home-page .testimonials > * { visibility: visible; }
  .home-page .simple-footer { min-height: 86px; margin: 50px 0 0; padding: 34px 20px 20px; border-radius: 64px 64px 0 0; background: var(--blue); }
  .home-page .simple-footer p { margin: 0; opacity: 1; font-size: 12px; }
  .home-page .reference-consult-link { display: none; }
}

@media (max-width: 720px) {
  .home-page .testimonials {
    width: calc(100vw - 24px);
    max-width: none;
    height: auto;
    margin: 34px calc(50% - 50vw + 12px) 26px;
    background: #f8f9fc;
  }
  .home-page .testimonial-card { width: min(82vw, 360px); min-height: 260px; padding: 24px; border-radius: 32px; font-size: 14px; }
  .home-page .avatar { width: 56px; height: 56px; }
  .review-arrow { width: 42px; height: 42px; font-size: 32px; }
  .review-arrow-prev { left: 4px; }
  .review-arrow-next { right: 4px; }
}

/* Exact desktop composition from Frame 1. Interactive links remain layered above it. */
@media (min-width: 721px) {
  .home-page {
    width: min(1080px, 100%);
    max-width: 1080px;
    margin-inline: auto;
  }

  .home-page .facts-section {
    height: 221px;
    padding: 0;
    background-image: url("assets/images/beranda-reference.png");
    background-repeat: no-repeat;
    background-position: 0 -730px;
    background-size: 1080px 1920px;
  }

  .home-page .facts-section .container {
    opacity: 0;
    pointer-events: none;
  }

  .home-page .advantages {
    height: 326px;
    min-height: 326px;
    padding: 0;
    background-color: var(--blue);
    background-image: url("assets/images/beranda-reference.png");
    background-repeat: no-repeat;
    background-position: 0 -951px;
    background-size: 1080px 1920px;
  }

  .home-page .advantages::before {
    display: none;
  }

  .home-page .advantages-content {
    opacity: 0;
    pointer-events: none;
  }

  .home-page .home-order-section {
    position: relative;
    height: 606px;
    padding: 0;
    overflow: hidden;
    background-color: var(--white);
    background-image: url("assets/images/beranda-reference.png");
    background-repeat: no-repeat;
    background-position: 0 -1277px;
    background-size: 1080px 1920px;
  }

  .home-page .home-order-section > .container {
    opacity: 0;
    pointer-events: none;
  }

  .home-page .home-order-section::after {
    position: absolute;
    z-index: 4;
    top: 38.12%;
    left: 28.55%;
    width: 44.2%;
    height: 25.91%;
    background: var(--white) url("assets/images/special-offer-hd.png") center / 100% 100% no-repeat;
    content: "";
    pointer-events: none;
  }

  .home-page .reference-consult-link {
    position: absolute;
    z-index: 3;
    top: 343px;
    left: 469px;
    display: block;
    width: 142px;
    height: 30px;
    border-radius: 999px;
  }

  .home-page .reference-consult-link:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
  }

  .home-page .simple-footer {
    height: 37px;
    margin: 0;
    padding: 0;
    border-radius: 36px 36px 0 0;
    background-color: var(--blue);
    background-image: url("assets/images/beranda-reference.png");
    background-repeat: no-repeat;
    background-position: 0 -1883px;
    background-size: 1080px 1920px;
  }

  .home-page .simple-footer p {
    opacity: 0;
  }
}

/* Keep the responsive Full-HD rules above authoritative over the legacy frame crop. */
@media (min-width: 721px) {
  .home-page { width: 100%; max-width: 1920px; }
  .home-page .facts-section { height: auto; padding: 70px 0; background-image: none; }
  .home-page .facts-section .container { opacity: 1; pointer-events: auto; }
  .home-page .advantages { height: auto; min-height: 470px; padding: 58px 0; background-image: none; }
  .home-page .advantages::before { display: block; }
  .home-page .advantages-content { opacity: 1; pointer-events: auto; }
  .home-page .home-order-section { height: auto; padding: 68px 0 48px; overflow: visible; background-image: none; }
  .home-page .home-order-section > .container { opacity: 1; pointer-events: auto; }
  .home-page .testimonials { width: calc(100vw - 48px); max-width: 1920px; height: auto; margin: 30px calc(50% - 50vw) 26px; padding: 58px 0 34px; background: linear-gradient(180deg, #f8f9fc, #fff); }
  .home-page .testimonials > * { visibility: visible; }
  .home-page .simple-footer { height: auto; min-height: 86px; margin: 50px 0 0; padding: 34px 20px 20px; background-image: none; }
  .home-page .simple-footer p { opacity: 1; }
  .home-page .reference-consult-link { display: none; }
}

/* UI-preserving Full-HD scale: the original 1080 px composition is enlarged
   proportionally to 1920 px, while only the review area becomes interactive. */
.home-page {
  overflow-x: hidden;
  overflow-y: visible;
}

.home-page .reviews-title,
.home-page .review-arrow,
.home-page .review-dots,
.home-page .drag-hint {
  display: none !important;
}

@media (min-width: 721px) {
  :root {
    --layout-width: min(100vw, 1920px);
    --header-height: clamp(86px, 7.963vw, 153px);
  }

  .home-page {
    width: 100%;
    max-width: 1920px;
    min-height: 100%;
    margin-inline: auto;
  }

  .home-page .site-header {
    height: var(--header-height);
  }

  .home-page .header-inner {
    width: 90.74%;
    max-width: 1742px;
  }

  .home-page .hero-home {
    width: 100%;
    height: calc(var(--layout-width) * .596296);
    min-height: 0;
    max-height: 1145px;
    margin-inline: auto;
  }

  .home-page .hero-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .home-page .facts-section {
    height: calc(var(--layout-width) * .20463);
    min-height: 0;
    padding: 0;
    background-image: url("assets/images/beranda-facts-1920.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .home-page .facts-section .container {
    opacity: 0;
    pointer-events: none;
  }

  .home-page .advantages {
    height: calc(var(--layout-width) * .301852);
    min-height: 0;
    padding: 0;
    background-color: var(--blue);
    background-image: url("assets/images/beranda-advantages-1920.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .home-page .advantages::before { display: none; }
  .home-page .advantages::after { display: none; }
  .home-page .advantages-content { opacity: 0; pointer-events: none; }

  .home-page .home-order-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: calc(var(--layout-width) * .561111);
    min-height: 0;
    padding: 0;
    background-color: var(--white);
    background-image: url("assets/images/beranda-order-1920.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .home-page .home-order-section > .container {
    opacity: 0;
    pointer-events: none;
  }

  .home-page .testimonials {
    position: absolute;
    z-index: 5;
    top: 68.65%;
    left: 50%;
    overflow: visible;
    width: 54.074%;
    max-width: none;
    height: 24.75%;
    min-height: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    transform: translateX(-50%);
  }

  .home-page .testimonials::before {
    position: absolute;
    z-index: 0;
    inset: -4% -2%;
    border-radius: 30%;
    background: var(--white);
    content: "";
    pointer-events: none;
  }

  .home-page .testimonials > * { visibility: visible; }
  .home-page .reviews-shell,
  .home-page .reviews-viewport { width: 100%; height: 100%; }
  .home-page .reviews-viewport {
    overflow: hidden;
    padding: 0;
    border-radius: clamp(24px, 2.6vw, 50px);
    touch-action: pan-y;
  }
  .home-page .reviews-track {
    --drag-x: 0px;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

  .home-page .testimonial-card {
    position: absolute;
    top: 5%;
    left: 23.45%;
    display: block;
    width: 53.1%;
    min-height: 90%;
    height: 90%;
    padding: clamp(9px, 1.48vw, 28px) clamp(12px, 1.85vw, 36px);
    border: 1px solid #777;
    border-radius: clamp(26px, 2.6vw, 50px);
    box-shadow: 0 8px 22px rgb(0 0 0 / 16%);
    font-size: clamp(8px, .57vw, 11px);
    line-height: 1.34;
    opacity: 0;
    pointer-events: none;
    transform: translateX(var(--drag-x));
    transition: none;
  }

  .home-page .testimonial-card.is-active {
    z-index: 4;
    opacity: 1;
    pointer-events: auto;
    filter: none;
    transform: translateX(var(--drag-x));
  }
  .home-page .testimonial-card.is-previous,
  .home-page .testimonial-card.is-next {
    z-index: 2;
    border-color: transparent;
    background: #d9d9d9;
    box-shadow: 0 5px 14px rgb(0 0 0 / 16%);
    filter: blur(2px);
    opacity: .78;
    pointer-events: auto;
  }
  .home-page .testimonial-card.is-previous {
    top: 8%;
    left: -12.7%;
    transform: scale(.88);
  }
  .home-page .testimonial-card.is-next {
    top: 8%;
    left: 59.6%;
    transform: scale(.88);
  }
  .home-page .testimonial-card.is-previous > *,
  .home-page .testimonial-card.is-next > * { opacity: .38; }
  .home-page .testimonial-card.is-behind {
    z-index: 1;
    top: 14%;
    left: 23.45%;
    opacity: 0;
    transform: scale(.72);
  }
  .home-page .reviews-track.is-animating .testimonial-card {
    transition: left 460ms cubic-bezier(.22,.8,.3,1), top 460ms cubic-bezier(.22,.8,.3,1), transform 460ms cubic-bezier(.22,.8,.3,1), opacity 260ms ease, filter 360ms ease, background 360ms ease;
  }
  .home-page .testimonial-card p { margin: 2.1% 0 0; }
  .home-page .testimonial-head { margin: 0; gap: 2.4%; line-height: 1.08; }
  .home-page .avatar { width: 12%; height: auto; aspect-ratio: 1; }
  .home-page .stars { font-size: clamp(9px, .72vw, 14px); }

  .home-page .reference-consult-link {
    position: absolute;
    z-index: 6;
    top: 56.6%;
    left: 43.43%;
    display: block;
    width: 13.15%;
    height: 4.95%;
  }

  .home-page .simple-footer {
    width: 100%;
    height: calc(var(--layout-width) * .034259);
    min-height: 0;
    margin: 0;
    padding: 0;
    border-radius: clamp(36px, 3.34vw, 64px) clamp(36px, 3.34vw, 64px) 0 0;
    background-color: var(--blue);
    background-image: url("assets/images/beranda-footer-1920.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .home-page .simple-footer p { opacity: 0; }
}

@media (max-width: 720px) {
  .home-page { overflow-x: hidden; overflow-y: visible; }
}

/* Sharp vector rebuild for the two information blocks only. */
@font-face {
  font-family: "League Spartan Local";
  src: url("assets/fonts/LeagueSpartan-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@media (min-width: 721px) {
  .home-page .facts-section {
    background-color: var(--white);
    background-image: none;
  }

  .home-page .facts-section .container {
    width: 100%;
    max-width: none;
    height: 100%;
    opacity: 1;
    pointer-events: auto;
  }

  .home-page .facts-grid {
    width: 68.519%;
    max-width: none;
    height: 100%;
    margin: 0 auto;
    padding-top: calc(var(--layout-width) * .022222);
    grid-template-columns: repeat(4, 1fr);
    gap: calc(var(--layout-width) * .027778);
  }

  .home-page .facts-grid .icon-circle {
    width: calc(var(--layout-width) * .109259);
    height: calc(var(--layout-width) * .109259);
    margin-bottom: calc(var(--layout-width) * .011111);
    background-color: var(--blue);
    background-image: none;
  }

  .home-page .facts-grid .icon-circle svg {
    display: block;
    width: 52%;
    height: 52%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.35;
  }

  .home-page .fact h2,
  .home-page .fact p {
    margin: 0;
    font-family: "League Spartan Local", sans-serif;
    font-size: calc(var(--layout-width) * .010185);
    font-weight: 520;
    line-height: 1.16;
  }

  .home-page .fact h2 { font-weight: 650; }

  .home-page .advantages {
    background-color: var(--blue);
    background-image: url("assets/images/beranda-advantages-clean-1920.png");
  }

  .home-page .advantages::before {
    display: none;
  }

  .home-page .advantages-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    padding: calc(var(--layout-width) * .013889) 0 0 calc(var(--layout-width) * .044792);
    color: var(--white);
    font-family: "League Spartan Local", sans-serif;
    opacity: 1;
    pointer-events: auto;
  }

  .home-page .advantages .subtle-title {
    margin: 0;
    font-family: inherit;
    font-size: calc(var(--layout-width) * .015278);
    font-weight: 480;
    line-height: 1.2;
  }

  .home-page .advantages-list {
    display: grid;
    max-width: none;
    margin: calc(var(--layout-width) * .016667) 0 0;
    padding: 0;
    gap: calc(var(--layout-width) * .010417);
    list-style: none;
  }

  .home-page .advantages-list li {
    display: flex;
    align-items: center;
    gap: calc(var(--layout-width) * .0125);
    font-family: inherit;
    font-size: calc(var(--layout-width) * .009259);
    font-weight: 350;
    line-height: 1.12;
  }

  .home-page .mini-icon {
    display: grid;
    width: calc(var(--layout-width) * .027604);
    height: calc(var(--layout-width) * .027604);
    flex: 0 0 auto;
    border: 0;
    border-radius: 0;
    color: var(--white);
    background: transparent;
    place-items: center;
  }

  .home-page .mini-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3.4;
  }

  .home-page .mini-icon .icon-solid {
    fill: currentColor;
    stroke: none;
  }

  .home-page .mini-icon .icon-cutout {
    fill: none;
    stroke: #4863ad;
    stroke-width: 4.5;
  }

  /* Keep the original order icons/line; replace only blurred raster labels. */
  .home-page .home-order-section > .container {
    position: absolute;
    z-index: 3;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    opacity: 1;
    pointer-events: none;
  }

  .home-page .home-order-section .flow-title {
    position: absolute;
    z-index: 2;
    top: calc(var(--layout-width) * .005208);
    left: 50%;
    box-sizing: border-box;
    width: calc(var(--layout-width) * .15625);
    min-height: calc(var(--layout-width) * .023438);
    margin: 0;
    padding: calc(var(--layout-width) * .002604) 0 0;
    color: #111;
    background: var(--white);
    font-family: "League Spartan Local", sans-serif;
    font-size: calc(var(--layout-width) * .015625);
    font-weight: 470;
    line-height: 1.15;
    text-align: center;
    transform: translateX(-50%);
  }

  .home-page .home-order-section .order-flow {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .home-page .home-order-section .order-flow::before,
  .home-page .home-order-section .flow-item .icon-circle {
    display: none;
  }

  .home-page .home-order-section .flow-item {
    position: absolute;
    top: calc(var(--layout-width) * .1625);
    width: calc(var(--layout-width) * .09375);
    transform: translateX(-50%);
  }

  .home-page .home-order-section .flow-item:nth-child(1) { left: 16.276%; }
  .home-page .home-order-section .flow-item:nth-child(2) { left: 33.281%; }
  .home-page .home-order-section .flow-item:nth-child(3) { left: 50.156%; }
  .home-page .home-order-section .flow-item:nth-child(4) { left: 68.021%; }
  .home-page .home-order-section .flow-item:nth-child(5) { left: 83.438%; }

  .home-page .home-order-section .flow-item p {
    box-sizing: border-box;
    width: 100%;
    min-height: calc(var(--layout-width) * .018229);
    margin: 0;
    padding: calc(var(--layout-width) * .002604) 0 0;
    color: #111;
    background: var(--white);
    font-family: "League Spartan Local", sans-serif;
    font-size: calc(var(--layout-width) * .010417);
    font-weight: 590;
    line-height: 1.15;
    text-align: center;
  }

  .home-page .home-order-section .offer-card { display: none; }

  .home-page .simple-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4863ad;
    background-image: none;
  }

  .home-page .simple-footer p {
    margin: 0;
    color: var(--white);
    font-family: "League Spartan Local", sans-serif;
    font-size: calc(var(--layout-width) * .007407);
    font-weight: 350;
    line-height: 1;
    opacity: 1;
  }
}

/* Product page — isolated calibration to the supplied 1080 × 1920 frame. */
.product-page {
  --product-width: min(100vw, 1920px);
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  overflow-x: hidden;
  background: #171717;
}

.product-page main,
.product-page .simple-footer {
  font-family: "League Spartan Local", "Inter", sans-serif;
}

.product-page main {
  background: var(--white);
}

.product-page .best-section .product-card .product-image img {
  object-fit: cover;
}

.product-page .section-tight .product-card .product-image img {
  object-fit: cover;
  object-position: center;
}

@media (min-width: 721px) {
  .product-page .header-inner {
    width: 90.74%;
    max-width: 1742px;
  }

  .product-page .hero-product {
    width: 100%;
    height: calc(var(--product-width) * .538889);
    max-height: 1035px;
    margin: 0;
  }

  .product-page .hero-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .product-page .hero-product::after {
    height: calc(var(--product-width) * .057407);
  }

  .product-page .product-intro {
    padding: calc(var(--product-width) * .005556) 0 calc(var(--product-width) * .007407);
  }

  .product-page .product-intro h1 {
    font-size: calc(var(--product-width) * .016667);
    line-height: 1.05;
  }

  .product-page .product-intro p {
    padding: 0 calc(var(--product-width) * .003704) calc(var(--product-width) * .006481);
    color: #666;
    font-size: calc(var(--product-width) * .009259);
    line-height: 1.28;
  }

  .product-page .section-tight {
    padding: calc(var(--product-width) * .007407) 0 calc(var(--product-width) * .038889);
  }

  .product-page .section-tight > .container,
  .product-page .best-section > .container {
    width: 100%;
    max-width: none;
  }

  .product-page .products-heading {
    margin: 0 0 calc(var(--product-width) * .018519);
    font-size: calc(var(--product-width) * .015741);
    line-height: 1.15;
  }

  .product-page .product-grid {
    width: 73.148%;
    max-width: none;
    gap: calc(var(--product-width) * .02963);
  }

  .product-page .product-image {
    aspect-ratio: .765;
    border-radius: calc(var(--product-width) * .024074);
    background: #f6f6f8;
  }

  .product-page .product-card h2,
  .product-page .best-section .product-card h2 {
    margin: calc(var(--product-width) * .00463) 0 calc(var(--product-width) * .000926);
    font-size: calc(var(--product-width) * .015741);
    font-weight: 680;
    line-height: 1.12;
  }

  .product-page .product-card p,
  .product-page .best-section .product-card p {
    font-size: calc(var(--product-width) * .009722);
    line-height: 1.28;
  }

  .product-page .best-section {
    min-height: calc(var(--product-width) * .682407);
    margin-top: 0;
    padding: calc(var(--product-width) * .040741) 0 0;
    border-radius: calc(var(--product-width) * .087963) calc(var(--product-width) * .087963) 0 0;
    background: #171717;
  }

  .product-page .best-section .products-heading {
    margin-bottom: calc(var(--product-width) * .028704);
  }

  .product-page .best-section .product-image {
    aspect-ratio: .79;
    border-radius: calc(var(--product-width) * .028704);
  }

  .product-page .all-products-wrap {
    margin-top: calc(var(--product-width) * .096296);
  }

  .product-page .all-products-wrap .button {
    width: calc(var(--product-width) * .253704);
    min-width: 0;
    min-height: calc(var(--product-width) * .047222);
    padding: calc(var(--product-width) * .007407) calc(var(--product-width) * .024074);
    font-size: calc(var(--product-width) * .015741);
  }

  .product-page .arrow {
    margin-left: calc(var(--product-width) * .009259);
    font-size: calc(var(--product-width) * .024074);
  }

  .product-page .simple-footer {
    display: flex;
    width: 100%;
    height: calc(var(--product-width) * .034259);
    min-height: 0;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border-radius: calc(var(--product-width) * .033333) calc(var(--product-width) * .033333) 0 0;
    background: #4863ad;
  }

  .product-page .simple-footer p {
    margin: 0;
    color: var(--white);
    font-size: calc(var(--product-width) * .007407);
    font-weight: 500;
    line-height: 1;
  }
}

@media (max-width: 720px) {
  .product-page .hero-product {
    width: 100%;
    height: clamp(260px, 58vw, 420px);
    margin: 0;
  }

  .product-page .product-intro {
    padding: 12px 16px 22px;
  }

  .product-page .section-tight {
    padding: 24px 0 54px;
  }

  .product-page .product-grid {
    width: min(88%, 640px);
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 22px;
  }

  .product-page .best-section {
    min-height: 0;
    margin-top: 0;
    padding: 52px 0 120px;
    background: #171717;
  }

  .product-page .all-products-wrap {
    margin-top: 78px;
  }

  .product-page .simple-footer {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 18px;
    background: #4863ad;
  }

  .product-page .simple-footer p {
    margin: 0;
    color: var(--white);
  }
}

@media (max-width: 520px) {
  .product-page .product-grid {
    width: min(78%, 350px);
    grid-template-columns: 1fr;
  }
}

/* Product reveal uses translate so card/image hover transforms and layout stay intact. */
.product-page.scroll-motion-ready .scroll-reveal-element {
  opacity: 0;
  translate: 0 34px;
  transition:
    opacity 760ms cubic-bezier(.22, 1, .36, 1),
    translate 760ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--scroll-reveal-delay, 0ms);
  will-change: opacity, translate;
}

.product-page.scroll-motion-ready .scroll-reveal-element.is-visible {
  opacity: 1;
  translate: 0 0;
}

/* Contact page — isolated calibration to the supplied 1080 × 1920 frame. */
.contact-page {
  --contact-width: min(100vw, 1920px);
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  overflow-x: hidden;
  background: var(--white);
}

.contact-page main,
.contact-page .site-footer {
  font-family: "League Spartan Local", "Inter", sans-serif;
}

.contact-page .wa-icon svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
  stroke: none;
}

.contact-page .wa-icon {
  border: 0;
  background: #00bd20;
}

.contact-page .email-field {
  display: grid;
  overflow: hidden;
  width: 100%;
  grid-template-columns: 42px minmax(0, 1fr);
  border: 1px solid #a7a7a7;
  background: var(--white);
}

.contact-page .email-icon {
  display: grid;
  height: 100%;
  border-right: 1px solid #a7a7a7;
  color: #a9a9a9;
  place-items: center;
}

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

.contact-page .email-field input {
  border: 0;
}

@media (min-width: 721px) {
  .contact-page .header-inner {
    width: 90.74%;
    max-width: 1742px;
  }

  .contact-page .hero-contact {
    width: 100%;
    max-width: none;
    height: calc(var(--contact-width) * .5625);
    max-height: 1080px;
    margin-inline: 0;
  }

  .contact-page .hero-contact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .contact-page .hero-contact::after {
    height: calc(var(--contact-width) * .055556);
  }

  .contact-page .section-tight {
    padding: calc(var(--contact-width) * .034259) 0 0;
  }

  .contact-page .section-tight > .container {
    width: 100%;
    max-width: none;
  }

  .contact-page .contact-card {
    width: 56.02%;
    max-width: none;
    min-height: calc(var(--contact-width) * .263889);
    margin: 0 auto calc(var(--contact-width) * .02963);
    padding: calc(var(--contact-width) * .010185) calc(var(--contact-width) * .065741) calc(var(--contact-width) * .021296);
    background: #4c69b2;
  }

  .contact-page .contact-card h1 {
    margin: 0 0 calc(var(--contact-width) * .014815);
    font-size: calc(var(--contact-width) * .015741);
    font-weight: 450;
    line-height: 1.2;
  }

  .contact-page .contact-list {
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    gap: calc(var(--contact-width) * .015741);
  }

  .contact-page .contact-list a,
  .contact-page .contact-list .contact-row {
    gap: calc(var(--contact-width) * .014815);
    font-size: calc(var(--contact-width) * .010185);
    line-height: 1.3;
  }

  .contact-page .contact-icon {
    width: calc(var(--contact-width) * .035185);
    height: calc(var(--contact-width) * .035185);
  }

  .contact-page .contact-icon svg {
    width: calc(var(--contact-width) * .031481);
    height: calc(var(--contact-width) * .031481);
  }

  .contact-page .map-section h2 {
    margin-bottom: calc(var(--contact-width) * .012963);
    font-size: calc(var(--contact-width) * .016667);
  }

  .contact-page .map-link {
    width: 60.65%;
    max-width: none;
    border: 0;
    box-shadow: none;
  }

  .contact-page .map-link img {
    aspect-ratio: 1.79855;
    object-fit: cover;
  }

  .contact-page .contact-actions {
    width: 72.41%;
    max-width: none;
    margin: calc(var(--contact-width) * .031481) auto calc(var(--contact-width) * .025926);
    grid-template-columns: 1.22fr 1fr;
    gap: calc(var(--contact-width) * .022222);
  }

  .contact-page .whatsapp-list {
    gap: calc(var(--contact-width) * .025926);
  }

  .contact-page .whatsapp-button {
    min-height: calc(var(--contact-width) * .055556);
    padding: calc(var(--contact-width) * .005556) calc(var(--contact-width) * .018519) calc(var(--contact-width) * .005556) calc(var(--contact-width) * .007407);
    font-size: calc(var(--contact-width) * .016667);
    line-height: 1.1;
  }

  .contact-page .wa-icon {
    width: calc(var(--contact-width) * .044444);
    height: calc(var(--contact-width) * .044444);
    margin-right: calc(var(--contact-width) * .014815);
    border: 0;
    background: #00bd20;
  }

  .contact-page .wa-icon svg {
    width: calc(var(--contact-width) * .028704);
    height: calc(var(--contact-width) * .028704);
  }

  .contact-page .consult-card {
    min-height: calc(var(--contact-width) * .151852);
    padding: calc(var(--contact-width) * .014815) calc(var(--contact-width) * .049074) calc(var(--contact-width) * .021296);
    background: #4c69b2;
  }

  .contact-page .consult-card h2 {
    margin-bottom: calc(var(--contact-width) * .008333);
    font-size: calc(var(--contact-width) * .016667);
    line-height: 1.1;
  }

  .contact-page .consult-form input {
    height: calc(var(--contact-width) * .025926);
    padding: calc(var(--contact-width) * .00463) calc(var(--contact-width) * .011111);
    font-size: calc(var(--contact-width) * .006944);
    text-align: center;
  }

  .contact-page .email-field {
    height: calc(var(--contact-width) * .025926);
    grid-template-columns: calc(var(--contact-width) * .038889) minmax(0, 1fr);
  }

  .contact-page .email-icon svg {
    width: calc(var(--contact-width) * .022222);
    height: calc(var(--contact-width) * .016667);
  }

  .contact-page .email-field input {
    height: 100%;
  }

  .contact-page .consult-form textarea {
    min-height: calc(var(--contact-width) * .052778);
    padding: calc(var(--contact-width) * .006481) calc(var(--contact-width) * .011111);
    font-size: calc(var(--contact-width) * .007407);
    text-align: center;
  }

  .contact-page .consult-form button {
    display: none;
  }

  .contact-page .hours {
    margin: 0 auto;
  }

  .contact-page .hours h2 {
    margin-bottom: calc(var(--contact-width) * .002778);
    font-size: calc(var(--contact-width) * .014815);
    line-height: 1.1;
  }

  .contact-page .hours p {
    font-size: calc(var(--contact-width) * .015741);
    line-height: 1.25;
  }

  .contact-page .site-footer {
    min-height: calc(var(--contact-width) * .188889);
    margin-top: calc(var(--contact-width) * .034259);
    padding: calc(var(--contact-width) * .043519) 0 calc(var(--contact-width) * .011111);
    border-radius: calc(var(--contact-width) * .041667) calc(var(--contact-width) * .041667) 0 0;
    background: #4c69b2;
  }

  .contact-page .footer-grid {
    width: 83.33%;
    max-width: none;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--contact-width) * .037037);
  }

  .contact-page .footer-brand img {
    width: calc(var(--contact-width) * .292593);
    max-width: 100%;
  }

  .contact-page .footer-brand p,
  .contact-page .footer-info p {
    margin-top: calc(var(--contact-width) * .00463);
    font-size: calc(var(--contact-width) * .009259);
    line-height: 1.3;
  }

  .contact-page .footer-info h2 {
    margin-bottom: calc(var(--contact-width) * .007407);
    font-size: calc(var(--contact-width) * .010185);
  }

  .contact-page .copyright {
    margin-top: calc(var(--contact-width) * .030556);
    font-size: calc(var(--contact-width) * .007407);
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .contact-page .hero-contact {
    width: 100%;
    height: clamp(300px, 70vw, 470px);
  }

  .contact-page .section-tight {
    padding: 34px 0 0;
  }

  .contact-page .contact-card {
    width: min(100%, 610px);
    margin-top: 0;
  }

  .contact-page .map-link {
    width: 100%;
  }

  .contact-page .contact-actions {
    width: min(100%, 520px);
    margin-block: 38px 32px;
  }

  .contact-page .site-footer {
    margin-top: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-page.scroll-motion-ready .scroll-reveal-element {
    opacity: 1 !important;
    translate: none !important;
    transition: none !important;
  }
}
