/* =========================================================
   Global
   ========================================================= */

:root {
  --color-bg: #0a2a2a;
  --color-bg-deep: #032424;
  --color-white: #ffffff;
  --color-text-muted: #748787;
  --color-accent: #eb4f0c;
  --color-outline: #08726a;

  --font-primary: "Urbanist", Arial, sans-serif;

  --container-width: 1180px;
  --page-gutter: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-primary);
  color: var(--color-white);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}


/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--color-bg);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
}

.hero__container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container-width));
  margin-inline: auto;
  padding: 118px 0 96px;
  text-align: center;
}

.hero__eyebrow {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 22px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 1px solid var(--color-outline);
  border-radius: 999px;

  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--color-white);
  background: rgba(3, 36, 36, 0.18);
}

.hero__eyebrow-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-white);
}

.hero__title {
  margin: 0 auto;
  max-width: 980px;

  font-size: clamp(52px, 4.35vw, 82px);
  line-height: 0.96;
  font-weight: 800;
  color: var(--color-white);
}

.hero__title-line {
  display: block;
  margin-top: 9px;
}

.hero__title strong {
  font-weight: 800;
  color: var(--color-accent);
}

.hero__description {
  max-width: 730px;
  margin: 25px auto 0;

  font-size: clamp(18px, 1.25vw, 25px);
  line-height: 1.45;
  font-weight: 400;
  color: var(--color-text-muted);
}

.hero__button {
  min-width: 204px;
  min-height: 60px;
  margin-top: 38px;
  padding: 15px 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid transparent;
  border-radius: 999px;

  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-accent);

  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.hero__button:hover {
  transform: translateY(-2px);
  background: #ff5a12;
  box-shadow: 0 10px 28px rgba(235, 79, 12, 0.22);
}

.hero__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 4px;
}


/* Placeholder only — remove after the next section is added. */
.page-section {
  min-height: 1px;
}



/* =========================================================
   Trusted Organizations
   ========================================================= */

.trusted {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #111;
}

.trusted__container {
  width: min(calc(100% - (var(--page-gutter) * 2)), 1320px);
  margin-inline: auto;
  padding: 112px 0 100px;
  text-align: center;
}

.trusted__title {
  margin: 0;
  color: #6b6b6b;
  font-size: clamp(25px, 1.65vw, 32px);
  line-height: 1.25;
  font-weight: 500;
}

.trusted__tags {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.trusted__tag {
  min-height: 56px;
  padding: 13px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #d2d2d2;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
  white-space: nowrap;
}

.trusted__tag-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #111;
}

.trusted__logos {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  gap: 34px;
}

.trusted__logo {
  min-width: 0;
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 96px;
  object-fit: contain;
}

.trusted__logo img[src*="iss"] {
  max-width: 120px;
  max-height: 90px;
}

@media (max-width: 1180px) {
  .trusted__container {
    padding-top: 92px;
    padding-bottom: 88px;
  }

  .trusted__logos {
    gap: 20px;
  }

  .trusted__logo img {
    max-width: 125px;
  }
}

@media (max-width: 1024px) {
  .trusted__logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 24px;
  }
}

@media (max-width: 768px) {
  .trusted__container {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .trusted__title {
    max-width: 600px;
    margin-inline: auto;
  }

  .trusted__tags {
    margin-top: 25px;
    gap: 10px;
  }

  .trusted__tag {
    min-height: 50px;
    padding: 11px 15px;
    font-size: 15px;
  }

  .trusted__logos {
    margin-top: 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .trusted__logo {
    min-height: 95px;
  }

  .trusted__logo img {
    max-width: 118px;
    max-height: 82px;
  }
}

@media (max-width: 520px) {
  .trusted__container {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .trusted__title {
    font-size: 25px;
    line-height: 1.28;
  }

  .trusted__tags {
    width: 100%;
    max-width: 390px;
    margin: 24px auto 0;
    flex-direction: column;
    align-items: stretch;
  }

  .trusted__tag {
    width: 100%;
    white-space: normal;
  }

  .trusted__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }

  .trusted__logo {
    min-height: 88px;
  }

  .trusted__logo img {
    max-width: 112px;
    max-height: 78px;
  }
}

@media (max-width: 360px) {
  .trusted__title {
    font-size: 23px;
  }
}



/* =========================================================
   Industries and Use Cases
   ========================================================= */

.use-cases {
  position: relative;
  overflow: hidden;
  background: #0a2a2a;
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.72);
}

.use-cases__container {
  width: min(calc(100% - (var(--page-gutter) * 2)), 1592px);
  margin-inline: auto;
  padding: 68px 0 70px;
}

.use-cases__header {
  max-width: 710px;
}

.use-cases__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(44px, 3.05vw, 60px);
  line-height: 1.05;
  font-weight: 700;
}

.use-cases__intro {
  max-width: 690px;
  margin: 14px 0 0;
  color: #b4c0bf;
  font-size: clamp(18px, 1.22vw, 23px);
  line-height: 1.62;
  font-weight: 400;
}

.use-cases__grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.use-case-card {
  position: relative;
  min-width: 0;
  min-height: 356px;
  padding: 35px 39px 62px;
  overflow: hidden;

  border: 1px solid rgba(203, 220, 218, 0.74);
  border-radius: 29px;

  background:
    linear-gradient(
      130deg,
      rgba(31, 66, 64, 0.98) 0%,
      rgba(34, 65, 63, 0.98) 58%,
      rgba(32, 61, 60, 0.98) 100%
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 35px rgba(0, 0, 0, 0.025);
}

.use-case-card::after {
  content: "";
  position: absolute;
  left: 39px;
  right: 39px;
  bottom: 39px;
  height: 2px;
  border-radius: 999px;
  background: rgba(158, 185, 181, 0.54);
}

.use-case-card__icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;

  border-radius: 15px;
  color: #ffffff;
  background: rgba(14, 86, 81, 0.56);
}

.use-case-card__icon svg {
  width: 27px;
  height: 27px;
  overflow: visible;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.use-case-card__title {
  margin: 36px 0 0;
  color: #ffffff;
  font-size: clamp(21px, 1.32vw, 26px);
  line-height: 1.2;
  font-weight: 700;
}

.use-case-card__text {
  max-width: 390px;
  margin: 23px 0 0;
  color: #97aaa8;
  font-size: clamp(15px, 0.92vw, 18px);
  line-height: 1.62;
  font-weight: 400;
}


/* =========================================================
   Use Cases Responsive
   ========================================================= */

@media (max-width: 1180px) {
  .use-cases__container {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .use-cases__grid {
    gap: 22px;
  }

  .use-case-card {
    min-height: 360px;
    padding: 32px 30px 60px;
  }

  .use-case-card::after {
    left: 30px;
    right: 30px;
    bottom: 35px;
  }
}

@media (max-width: 980px) {
  .use-cases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-case-card:last-child {
    grid-column: 1 / -1;
  }

  .use-case-card__text {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .use-cases__container {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .use-cases__title {
    font-size: clamp(40px, 8vw, 52px);
  }

  .use-cases__intro {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.55;
  }

  .use-cases__grid {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .use-case-card:last-child {
    grid-column: auto;
  }

  .use-case-card {
    min-height: 0;
    padding: 30px 30px 58px;
    border-radius: 25px;
  }

  .use-case-card__title {
    margin-top: 28px;
  }

  .use-case-card__text {
    margin-top: 18px;
  }

  .use-case-card::after {
    bottom: 30px;
  }
}

@media (max-width: 520px) {
  .use-cases__container {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .use-cases__title {
    font-size: 39px;
    line-height: 1.08;
  }

  .use-cases__intro {
    font-size: 17px;
  }

  .use-case-card {
    padding: 26px 24px 54px;
    border-radius: 22px;
  }

  .use-case-card__icon {
    width: 51px;
    height: 51px;
    border-radius: 14px;
  }

  .use-case-card__icon svg {
    width: 25px;
    height: 25px;
  }

  .use-case-card__title {
    margin-top: 25px;
    font-size: 22px;
  }

  .use-case-card__text {
    font-size: 16px;
    line-height: 1.6;
  }

  .use-case-card::after {
    left: 24px;
    right: 24px;
    bottom: 27px;
  }
}



/* =========================================================
   Hardware Section
   ========================================================= */

.hardware {
  background: #ffffff;
  color: #111111;
}

.hardware__container {
  width: min(calc(100% - (var(--page-gutter) * 2)), 1260px);
  margin-inline: auto;
  padding: 86px 0 82px;
}

.hardware__header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hardware__title {
  margin: 0;
  color: #0d2020;
  font-size: clamp(40px, 3vw, 58px);
  line-height: 1.12;
  font-weight: 700;
}

.hardware__intro {
  max-width: 860px;
  margin: 16px auto 0;
  color: #5f6566;
  font-size: clamp(18px, 1.15vw, 23px);
  line-height: 1.52;
  font-weight: 400;
}

.hardware__grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hardware-card {
  min-height: 242px;
  padding: 24px 28px 26px;
  border: 1px solid #d8d8d8;
  border-radius: 20px;
  background: #ffffff;
}

.hardware-card__number {
  display: inline-block;
  margin-bottom: 12px;
  color: #111111;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
}

.hardware-card__title {
  margin: 0;
  color: #0f1f1f;
  font-size: clamp(20px, 1.4vw, 24px);
  line-height: 1.25;
  font-weight: 700;
}

.hardware-card__text {
  margin: 14px 0 0;
  color: #5a6061;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
}

.hardware-card__list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.hardware-card__list li {
  position: relative;
  margin-top: 14px;
  padding-left: 18px;
  color: #5a6061;
  font-size: 15px;
  line-height: 1.58;
}

.hardware-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #eb4f0c;
}

.hardware-feature {
  margin-top: 20px;
  padding: 26px 26px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid #d8d8d8;
  border-radius: 20px;
  background: #ffffff;
}

.hardware-feature__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #d9f0ea;
  color: #1874ff;
}

.hardware-feature__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hardware-feature__content {
  min-width: 0;
}

.hardware-feature__title {
  margin: 0;
  color: #0f1f1f;
  font-size: clamp(20px, 1.38vw, 23px);
  line-height: 1.28;
  font-weight: 700;
}

.hardware-feature__text {
  margin: 10px 0 0;
  color: #5a6061;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
}

/* =========================================================
   Hardware Responsive
   ========================================================= */

@media (max-width: 1180px) {
  .hardware__container {
    padding-top: 74px;
    padding-bottom: 72px;
  }

  .hardware-card {
    min-height: 260px;
  }
}

@media (max-width: 900px) {
  .hardware__grid {
    grid-template-columns: 1fr;
  }

  .hardware-card {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .hardware__container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hardware__title {
    font-size: clamp(34px, 8vw, 46px);
  }

  .hardware__intro {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hardware__grid {
    margin-top: 28px;
    gap: 16px;
  }

  .hardware-card {
    padding: 22px 22px 24px;
    border-radius: 18px;
  }

  .hardware-feature {
    margin-top: 16px;
    padding: 22px;
    gap: 16px;
    border-radius: 18px;
  }
}

@media (max-width: 520px) {
  .hardware__container {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hardware__title {
    font-size: 33px;
    line-height: 1.14;
  }

  .hardware__intro {
    font-size: 16px;
  }

  .hardware-card__number {
    font-size: 16px;
  }

  .hardware-card__title,
  .hardware-feature__title {
    font-size: 22px;
  }

  .hardware-card__text,
  .hardware-card__list li,
  .hardware-feature__text {
    font-size: 15px;
  }

  .hardware-feature {
    flex-direction: column;
  }
}



/* =========================================================
   Hardware Product Gallery
   ========================================================= */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hardware-gallery {
  background: #ffffff;
  color: #111111;
}

.hardware-gallery__container {
  width: min(calc(100% - (var(--page-gutter) * 2)), 1410px);
  margin-inline: auto;
  padding: 0 0 64px;
}

.hardware-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hardware-gallery__card {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #ececec;
  aspect-ratio: 1.245 / 1;
}

.hardware-gallery__card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.18) 42%,
    rgba(0, 0, 0, 0.62) 100%
  );
  pointer-events: none;
}

.hardware-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hardware-gallery__caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  color: #ffffff;
  text-align: center;
  font-size: clamp(18px, 1.28vw, 25px);
  line-height: 1.15;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}

.hardware-gallery__notice {
  max-width: 980px;
  margin: 37px auto 0;
  color: #0f1f1f;
  text-align: center;
  font-size: clamp(24px, 1.85vw, 39px);
  line-height: 1.28;
  font-weight: 700;
}

/* =========================================================
   Gallery Responsive
   ========================================================= */

@media (max-width: 1180px) {
  .hardware-gallery__container {
    padding-bottom: 58px;
  }

  .hardware-gallery__grid {
    gap: 10px;
  }

  .hardware-gallery__card {
    border-radius: 22px;
  }

  .hardware-gallery__notice {
    margin-top: 32px;
  }
}

@media (max-width: 900px) {
  .hardware-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hardware-gallery__card {
    aspect-ratio: 1.18 / 1;
  }
}

@media (max-width: 768px) {
  .hardware-gallery__container {
    padding-bottom: 52px;
  }

  .hardware-gallery__grid {
    gap: 14px;
  }

  .hardware-gallery__caption {
    left: 18px;
    right: 18px;
    bottom: 16px;
    font-size: 22px;
  }

  .hardware-gallery__notice {
    margin-top: 28px;
    font-size: 28px;
    line-height: 1.3;
  }
}

@media (max-width: 560px) {
  .hardware-gallery__grid {
    grid-template-columns: 1fr;
  }

  .hardware-gallery__card {
    border-radius: 20px;
    aspect-ratio: 1.22 / 1;
  }

  .hardware-gallery__caption {
    font-size: 21px;
  }

  .hardware-gallery__notice {
    font-size: 24px;
  }
}



/* =========================================================
   Quotation CTA
   ========================================================= */

.quotation-cta {
  background: #ffffff;
}

.quotation-cta__container {
  width: min(calc(100% - (var(--page-gutter) * 2)), 1740px);
  margin-inline: auto;
  padding: 44px 0 48px;
}

.quotation-cta__panel {
  min-height: 334px;
  padding: 72px 40px 62px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  text-align: center;
  border-radius: 29px;
  background: #0a2a2a;
}

.quotation-cta__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(46px, 3.5vw, 68px);
  line-height: 1.05;
  font-weight: 700;
}

.quotation-cta__button {
  min-width: 218px;
  min-height: 80px;
  margin-top: 40px;
  padding: 18px 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid transparent;
  border-radius: 20px;

  color: #ffffff;
  background: #eb4f0c;

  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.quotation-cta__button:hover {
  transform: translateY(-2px);
  background: #ff5a12;
  box-shadow: 0 12px 30px rgba(235, 79, 12, 0.22);
}

.quotation-cta__button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}


/* =========================================================
   Quotation CTA Responsive
   ========================================================= */

@media (max-width: 1180px) {
  .quotation-cta__container {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .quotation-cta__panel {
    min-height: 300px;
    padding: 64px 34px 56px;
  }

  .quotation-cta__button {
    min-width: 205px;
    min-height: 70px;
    margin-top: 34px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .quotation-cta__container {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .quotation-cta__panel {
    min-height: 270px;
    padding: 56px 26px 48px;
    border-radius: 24px;
  }

  .quotation-cta__title {
    font-size: clamp(38px, 8vw, 52px);
  }

  .quotation-cta__button {
    min-width: 190px;
    min-height: 62px;
    margin-top: 30px;
    border-radius: 17px;
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .quotation-cta__container {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .quotation-cta__panel {
    min-height: 240px;
    padding: 48px 22px 42px;
    border-radius: 21px;
  }

  .quotation-cta__title {
    max-width: 360px;
    font-size: 36px;
    line-height: 1.1;
  }

  .quotation-cta__button {
    width: 100%;
    max-width: 230px;
    min-height: 58px;
    margin-top: 28px;
  }
}



/* =========================================================
   Digital Transformation Solution
   ========================================================= */

.digital-solution {
  background: #ffffff;
  color: #111111;
}

.digital-solution__container {
  width: min(calc(100% - (var(--page-gutter) * 2)), 1600px);
  margin-inline: auto;
  padding: 44px 0 84px;
}

.digital-solution__title {
  max-width: 900px;
  margin: 0;
  color: #0d2020;
  font-size: clamp(42px, 3vw, 62px);
  line-height: 1.08;
  font-weight: 700;
}

.digital-solution__layout {
  margin-top: 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 74px;
  align-items: start;
}

.digital-solution__copy {
  max-width: 690px;
  color: #4f5555;
  font-size: clamp(17px, 1.02vw, 20px);
  line-height: 1.42;
  font-weight: 400;
}

.digital-solution__copy p {
  margin: 0;
}

.digital-solution__copy p + p {
  margin-top: 18px;
}

.digital-solution__copy strong {
  color: #111111;
  font-weight: 700;
}

.digital-solution__pillars {
  min-width: 0;
}

.solution-pillar {
  padding: 26px 30px 27px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 44px rgba(19, 43, 42, 0.045);
}

.solution-pillar + .solution-pillar {
  margin-top: 22px;
}

.solution-pillar__topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.solution-pillar__number {
  flex: 0 0 auto;
  color: #eb4f0c;
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
}

.solution-pillar__heading {
  margin: 0;
  color: #0f1f1f;
  font-size: clamp(19px, 1.2vw, 23px);
  line-height: 1.2;
  font-weight: 700;
}

.solution-pillar__tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 11px 5px;
  border-radius: 6px;
  background: #fff1eb;
  color: #eb4f0c;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.solution-pillar__text {
  margin: 11px 0 0 49px;
  color: #666c6c;
  font-size: clamp(15px, 0.96vw, 18px);
  line-height: 1.55;
  font-weight: 400;
}

.digital-solution__note {
  margin: 24px 0 0;
  color: #5c6363;
  font-size: clamp(15px, 0.93vw, 18px);
  line-height: 1.4;
  font-weight: 400;
}


/* =========================================================
   Digital Solution Responsive
   ========================================================= */

@media (max-width: 1180px) {
  .digital-solution__container {
    padding-top: 40px;
    padding-bottom: 72px;
  }

  .digital-solution__layout {
    margin-top: 58px;
    gap: 46px;
  }

  .solution-pillar {
    padding: 24px 26px;
  }

  .solution-pillar__text {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .digital-solution__layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .digital-solution__copy {
    max-width: 820px;
  }

  .digital-solution__pillars {
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .digital-solution__container {
    padding-top: 34px;
    padding-bottom: 60px;
  }

  .digital-solution__title {
    font-size: clamp(38px, 8vw, 50px);
  }

  .digital-solution__layout {
    margin-top: 42px;
  }

  .digital-solution__copy {
    font-size: 17px;
    line-height: 1.5;
  }

  .solution-pillar {
    padding: 22px 22px 23px;
    border-radius: 18px;
  }

  .solution-pillar + .solution-pillar {
    margin-top: 16px;
  }

  .solution-pillar__topline {
    gap: 10px 14px;
  }

  .solution-pillar__number {
    font-size: 18px;
  }

  .solution-pillar__tag {
    font-size: 13px;
  }

  .solution-pillar__text,
  .digital-solution__note {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .digital-solution__container {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .digital-solution__title {
    font-size: 34px;
    line-height: 1.12;
  }

  .digital-solution__title br {
    display: none;
  }

  .digital-solution__layout {
    margin-top: 34px;
    gap: 30px;
  }

  .digital-solution__copy {
    font-size: 16px;
  }

  .solution-pillar {
    padding: 20px;
    border-radius: 16px;
  }

  .solution-pillar__topline {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    align-items: center;
  }

  .solution-pillar__tag {
    grid-column: 2;
    justify-self: start;
    white-space: normal;
  }

  .solution-pillar__heading {
    font-size: 21px;
  }

  .solution-pillar__text {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.58;
  }

  .digital-solution__note {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
  }
}



/* =========================================================
   Global Market Leadership
   ========================================================= */

.market-leadership {
  position: relative;
  overflow: hidden;
  background: #173735;
  color: #ffffff;
}

.market-leadership__container {
  width: min(calc(100% - (var(--page-gutter) * 2)), 1640px);
  margin-inline: auto;
  padding: 88px 0 102px;
}

.market-leadership__header {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.market-leadership__eyebrow {
  margin: 0;
  color: #ffffff;
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.25;
  font-weight: 600;
}

.market-leadership__title {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: clamp(44px, 3.15vw, 64px);
  line-height: 1.03;
  font-weight: 700;
}

.market-leadership__grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 24px;
  overflow: hidden;
  background: #0f3531;
}

.leadership-stat {
  position: relative;
  min-width: 0;
  min-height: 380px;
  padding: 50px 30px 44px;
  text-align: center;
}

.leadership-stat + .leadership-stat {
  border-left: 1px solid rgba(160, 188, 183, 0.24);
}

.leadership-stat__metric {
  min-height: 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.leadership-stat__value {
  display: block;
  color: #ffffff;
  font-size: clamp(54px, 3.75vw, 76px);
  line-height: 0.98;
  font-weight: 700;
}

.leadership-stat__unit {
  display: block;
  margin-top: 14px;
  color: #ff5000;
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
}

.leadership-stat__title {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(19px, 1.22vw, 23px);
  line-height: 1.28;
  font-weight: 700;
}

.leadership-stat__text {
  max-width: 330px;
  margin: 20px auto 0;
  color: #9eb0ae;
  font-size: clamp(15px, 0.9vw, 17px);
  line-height: 1.58;
  font-weight: 400;
}


/* =========================================================
   Market Leadership Responsive
   ========================================================= */

@media (max-width: 1180px) {
  .market-leadership__container {
    padding-top: 78px;
    padding-bottom: 88px;
  }

  .market-leadership__grid {
    margin-top: 50px;
  }

  .leadership-stat {
    min-height: 365px;
    padding: 44px 24px 40px;
  }
}

@media (max-width: 980px) {
  .market-leadership__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .leadership-stat:nth-child(3) {
    border-left: 0;
  }

  .leadership-stat:nth-child(n + 3) {
    border-top: 1px solid rgba(160, 188, 183, 0.24);
  }
}

@media (max-width: 768px) {
  .market-leadership__container {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .market-leadership__title {
    font-size: clamp(38px, 8vw, 52px);
  }

  .market-leadership__grid {
    margin-top: 42px;
    border-radius: 22px;
  }

  .leadership-stat {
    min-height: 330px;
    padding: 38px 24px 34px;
  }

  .leadership-stat__metric {
    min-height: 96px;
  }

  .leadership-stat__text {
    font-size: 16px;
  }
}

@media (max-width: 580px) {
  .market-leadership__container {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .market-leadership__eyebrow {
    font-size: 17px;
  }

  .market-leadership__title {
    margin-top: 16px;
    font-size: 36px;
    line-height: 1.08;
  }

  .market-leadership__title br {
    display: none;
  }

  .market-leadership__grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .leadership-stat {
    min-height: 0;
    padding: 36px 24px;
  }

  .leadership-stat + .leadership-stat {
    border-left: 0;
    border-top: 1px solid rgba(160, 188, 183, 0.24);
  }

  .leadership-stat__metric {
    min-height: 0;
  }

  .leadership-stat__value {
    font-size: 58px;
  }

  .leadership-stat__title {
    margin-top: 24px;
    font-size: 22px;
  }

  .leadership-stat__text {
    max-width: 420px;
  }
}



/* =========================================================
   Why Choose Teleportel
   ========================================================= */

.why-teleportel {
  background: #ffffff;
  color: #0f1930;
}

.why-teleportel__container {
  width: min(calc(100% - (var(--page-gutter) * 2)), 1320px);
  margin-inline: auto;
  padding: 104px 0 92px;
}

.why-teleportel__title {
  margin: 0;
  text-align: center;
  color: #111a30;
  font-size: clamp(44px, 3.3vw, 62px);
  line-height: 1.06;
  font-weight: 700;
}

.why-teleportel__grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 24px;
}

.why-card {
  position: relative;
  min-width: 0;
  min-height: 306px;
  padding: 34px 32px 32px;
  display: flex;
  flex-direction: column;

  border-radius: 24px;
  background: #ffffff;

  box-shadow:
    0 16px 48px rgba(18, 36, 55, 0.045),
    inset 0 0 0 1px rgba(18, 36, 55, 0.015);
}

.why-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.why-card__number {
  color: #ef4c00;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.why-card__arrow {
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;

  border-radius: 12px;
  background: #fff3ed;
  color: #ef4c00;

  font-size: 22px;
  line-height: 1;
  font-weight: 600;
}

.why-card__title {
  margin: 36px 0 0;
  color: #0f1930;
  font-size: clamp(19px, 1.28vw, 23px);
  line-height: 1.25;
  font-weight: 700;
}

.why-card__text {
  margin: 18px 0 0;
  color: #626767;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 400;
}

.why-card__line {
  width: 100%;
  height: 2px;
  margin-top: auto;
  padding-top: 24px;
  position: relative;
}

.why-card__line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #a4dff0 0%, rgba(164, 223, 240, 0.07) 100%);
}


/* =========================================================
   Why Choose Teleportel Responsive
   ========================================================= */

@media (max-width: 1180px) {
  .why-teleportel__container {
    padding-top: 88px;
    padding-bottom: 78px;
  }

  .why-teleportel__grid {
    gap: 20px;
  }

  .why-card {
    min-height: 320px;
    padding: 30px 28px 28px;
  }
}

@media (max-width: 980px) {
  .why-teleportel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-card {
    min-height: 290px;
  }
}

@media (max-width: 768px) {
  .why-teleportel__container {
    padding-top: 68px;
    padding-bottom: 64px;
  }

  .why-teleportel__title {
    font-size: clamp(38px, 8vw, 50px);
  }

  .why-teleportel__grid {
    margin-top: 42px;
    gap: 18px;
  }

  .why-card {
    min-height: 280px;
    border-radius: 20px;
  }

  .why-card__title {
    margin-top: 30px;
  }

  .why-card__text {
    font-size: 16px;
  }
}

@media (max-width: 580px) {
  .why-teleportel__container {
    padding-top: 54px;
    padding-bottom: 52px;
  }

  .why-teleportel__title {
    font-size: 36px;
  }

  .why-teleportel__grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .why-card {
    min-height: 0;
    padding: 26px 24px 24px;
  }

  .why-card__arrow {
    width: 38px;
    height: 38px;
  }

  .why-card__title {
    margin-top: 26px;
    font-size: 22px;
  }

  .why-card__line {
    padding-top: 22px;
  }
}



/* =========================================================
   Frequently Asked Questions
   ========================================================= */

.product-faq {
  background: #ffffff;
  color: #10182b;
}

.product-faq__container {
  width: min(calc(100% - (var(--page-gutter) * 2)), 1360px);
  margin-inline: auto;
  padding: 64px 0 78px;

  display: grid;
  grid-template-columns: minmax(360px, 0.83fr) minmax(0, 1.17fr);
  gap: 72px;
  align-items: start;
}

.product-faq__visual {
  min-width: 0;
}

.product-faq__title {
  margin: 0;
  color: #11182c;
  font-size: clamp(46px, 3.6vw, 66px);
  line-height: 0.98;
  font-weight: 700;
}

.product-faq__art {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1 / 0.92;
  margin: 80px auto 0;
}

.product-faq__art-back,
.product-faq__art-front {
  position: absolute;
  display: block;
  border-radius: 26%;
}

.product-faq__art-back {
  width: 68%;
  aspect-ratio: 1 / 1;
  left: 4%;
  top: 5%;
  transform: rotate(-22deg);
  background:
    radial-gradient(circle at 35% 25%, #ff7858 0%, #f6542c 48%, #e84119 100%);
  box-shadow:
    inset -12px -12px 24px rgba(126, 27, 8, 0.12),
    0 22px 38px rgba(221, 70, 28, 0.18);
}

.product-faq__art-front {
  width: 68%;
  aspect-ratio: 1 / 1;
  right: 6%;
  bottom: 2%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 4px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(219, 71, 29, 0.08);
}

.product-faq__question-mark {
  transform: translateY(-2%);
  color: #ffe3dc;
  font-size: clamp(120px, 10vw, 180px);
  line-height: 1;
  font-weight: 700;
  font-family: Arial, sans-serif;
  text-shadow: 0 5px 10px rgba(198, 56, 24, 0.08);
}

.product-faq__content {
  min-width: 0;
}

.product-faq__accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid #d5d5d5;
  border-radius: 16px;
  background: #ffffff;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.faq-item[open] {
  border-color: #d1d1d1;
}

.faq-item__question {
  min-height: 72px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;

  list-style: none;
  cursor: pointer;
  color: #111111;
  font-size: clamp(17px, 1.18vw, 21px);
  line-height: 1.25;
  font-weight: 700;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::marker {
  content: "";
}

.faq-item__chevron {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-right: 3px;
  border-right: 2px solid #111111;
  border-bottom: 2px solid #111111;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
  transition: transform 180ms ease;
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.faq-item__answer {
  padding: 0 26px 22px;
}

.faq-item__answer p {
  margin: 0;
  color: #565c5d;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.42;
  font-weight: 400;
}

.faq-item__answer strong {
  color: #111111;
  font-weight: 700;
}

.product-faq__cta {
  margin-top: 56px;
  display: flex;
  justify-content: flex-start;
}

.product-faq__button {
  min-width: 260px;
  min-height: 68px;
  padding: 17px 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;
  background: #eb4f0c;
  color: #ffffff;

  font-size: 19px;
  line-height: 1;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.product-faq__button:hover {
  transform: translateY(-2px);
  background: #ff5a12;
  box-shadow: 0 12px 28px rgba(235, 79, 12, 0.2);
}

.product-faq__button:focus-visible,
.faq-item__question:focus-visible {
  outline: 3px solid rgba(235, 79, 12, 0.32);
  outline-offset: 4px;
}


/* =========================================================
   FAQ Responsive
   ========================================================= */

@media (max-width: 1100px) {
  .product-faq__container {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 46px;
  }

  .product-faq__art {
    margin-top: 64px;
  }
}

@media (max-width: 900px) {
  .product-faq__container {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .product-faq__visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 30px;
    align-items: center;
  }

  .product-faq__title br {
    display: none;
  }

  .product-faq__art {
    width: 250px;
    margin: 0;
    justify-self: end;
  }

  .product-faq__cta {
    justify-content: center;
    margin-top: 38px;
  }
}

@media (max-width: 680px) {
  .product-faq__container {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .product-faq__visual {
    display: block;
  }

  .product-faq__title {
    font-size: clamp(38px, 10vw, 50px);
    line-height: 1.02;
  }

  .product-faq__art {
    width: 220px;
    margin: 36px auto 0;
  }

  .faq-item__question {
    min-height: 64px;
    padding: 18px 20px;
    font-size: 17px;
  }

  .faq-item__answer {
    padding: 0 20px 20px;
  }

  .faq-item__answer p {
    font-size: 15px;
    line-height: 1.5;
  }

  .product-faq__button {
    width: 100%;
    max-width: 300px;
    min-width: 0;
    min-height: 60px;
    font-size: 17px;
  }
}

@media (max-width: 430px) {
  .product-faq__container {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .product-faq__title {
    font-size: 36px;
  }

  .product-faq__art {
    width: 190px;
    margin-top: 30px;
  }

  .product-faq__accordion {
    gap: 11px;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-item__question {
    padding: 17px 18px;
  }

  .faq-item__answer {
    padding: 0 18px 18px;
  }
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .hero {
    min-height: 620px;
  }

  .hero__container {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .hero__title {
    max-width: 850px;
  }

  .hero__description {
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-gutter: 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero__container {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .hero__eyebrow {
    margin-bottom: 25px;
    padding: 10px 14px;
    font-size: 15px;
  }

  .hero__title {
    font-size: clamp(44px, 10vw, 64px);
    line-height: 1;
  }

  .hero__title-line {
    margin-top: 6px;
  }

  .hero__description {
    max-width: 590px;
    margin-top: 24px;
    font-size: 19px;
    line-height: 1.5;
  }

  .hero__button {
    min-width: 190px;
    min-height: 56px;
    margin-top: 32px;
    font-size: 17px;
  }
}

@media (max-width: 520px) {
  :root {
    --page-gutter: 18px;
  }

  .hero__container {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .hero__eyebrow {
    width: auto;
    max-width: 360px;
    padding: 9px 13px;
    gap: 8px;
    font-size: 13px;
  }

  .hero__eyebrow-dot {
    width: 7px;
    height: 7px;
  }

  .hero__title {
    max-width: 440px;
    font-size: clamp(39px, 11.8vw, 54px);
  }

  .hero__title-line {
    margin-top: 8px;
  }

  .hero__title strong {
    display: block;
    margin-top: 6px;
  }

  .hero__description {
    max-width: 430px;
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.52;
  }

  .hero__button {
    width: 100%;
    max-width: 250px;
    margin-top: 30px;
  }
}

@media (max-width: 360px) {
  .hero__container {
    padding-top: 46px;
    padding-bottom: 52px;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__description {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__button {
    transition: none;
  }
}
/* =========================================================
   Final Typography Refinement
   ========================================================= */

.hero__title,
.use-cases__title,
.hardware__title,
.quotation-cta__title,
.digital-solution__title,
.market-leadership__title,
.why-teleportel__title,
.product-faq__title {
  font-size: 46px;
}

@media (max-width: 1024px) {
  .hero__title,
  .use-cases__title,
  .hardware__title,
  .quotation-cta__title,
  .digital-solution__title,
  .market-leadership__title,
  .why-teleportel__title,
  .product-faq__title {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .hero__title,
  .use-cases__title,
  .hardware__title,
  .quotation-cta__title,
  .digital-solution__title,
  .market-leadership__title,
  .why-teleportel__title,
  .product-faq__title {
    font-size: 42px;
  }
}

@media (max-width: 520px) {
  .hero__title,
  .use-cases__title,
  .hardware__title,
  .quotation-cta__title,
  .digital-solution__title,
  .market-leadership__title,
  .why-teleportel__title,
  .product-faq__title {
    font-size: 36px;
  }
}


/* =========================================================
   Loading & Scroll Reveal Animation
   ========================================================= */

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body {
  animation: pageFadeIn 500ms ease-out both;
}

.js .reveal-on-scroll {
  opacity: 0;
  translate: 0 24px;
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 650ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal-on-scroll.is-visible {
  opacity: 1;
  translate: 0 0;
}


/* =========================================================
   Hover Motion
   ========================================================= */

.hero__eyebrow,
.trusted__logo img,
.use-case-card,
.hardware-card,
.hardware-feature,
.hardware-gallery__card,
.hardware-gallery__image,
.solution-pillar,
.leadership-stat,
.why-card,
.faq-item {
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease,
    opacity 240ms ease;
}

.hero__eyebrow:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 155, 145, 0.85);
}

.trusted__logo:hover img {
  transform: scale(1.06);
}

.use-case-card:hover {
  transform: translateY(-7px);
  border-color: rgba(215, 232, 229, 0.95);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.hardware-card:hover,
.hardware-feature:hover {
  transform: translateY(-6px);
  border-color: #c9c9c9;
  box-shadow: 0 18px 38px rgba(18, 36, 55, 0.08);
}

.hardware-gallery__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(18, 36, 55, 0.12);
}

.hardware-gallery__card:hover .hardware-gallery__image {
  transform: scale(1.045);
}

.solution-pillar:hover {
  transform: translateX(6px);
  box-shadow: 0 18px 42px rgba(18, 36, 55, 0.08);
}

.leadership-stat:hover {
  background: rgba(255, 255, 255, 0.035);
}

.why-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgba(18, 36, 55, 0.09);
}

.faq-item:hover {
  transform: translateX(4px);
  border-color: #c8c8c8;
  box-shadow: 0 10px 28px rgba(18, 36, 55, 0.06);
}


/* =========================================================
   Reduced Motion Accessibility
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }

  .js .reveal-on-scroll,
  .js .reveal-on-scroll.is-visible {
    opacity: 1;
    translate: none;
    transition: none;
  }

  .hero__eyebrow,
  .trusted__logo img,
  .use-case-card,
  .hardware-card,
  .hardware-feature,
  .hardware-gallery__card,
  .hardware-gallery__image,
  .solution-pillar,
  .leadership-stat,
  .why-card,
  .faq-item {
    transition: none;
  }

  .hero__eyebrow:hover,
  .trusted__logo:hover img,
  .use-case-card:hover,
  .hardware-card:hover,
  .hardware-feature:hover,
  .hardware-gallery__card:hover,
  .hardware-gallery__card:hover .hardware-gallery__image,
  .solution-pillar:hover,
  .why-card:hover,
  .faq-item:hover {
    transform: none;
  }
}
/* =========================================================
   Smooth Motion Refinement
   ========================================================= */

:root {
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 320ms;
  --motion-medium: 620ms;
  --motion-slow: 820ms;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

/* Make page entrance softer. */
@keyframes smoothPageEntrance {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

body {
  animation: smoothPageEntrance 700ms var(--ease-smooth) both;
}

/* Smoother scroll entrance. */
.js .reveal-on-scroll {
  opacity: 0;
  translate: 0 32px;
  scale: 0.992;
  transition:
    opacity var(--motion-slow) var(--ease-smooth),
    translate var(--motion-slow) var(--ease-smooth),
    scale var(--motion-slow) var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal-on-scroll.is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

/* Buttons */
.hero__button,
.quotation-cta__button,
.product-faq__button {
  transition:
    transform var(--motion-fast) var(--ease-smooth),
    background-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) var(--ease-smooth);
}

/* Cards / interactive elements */
.hero__eyebrow,
.trusted__tag,
.trusted__logo,
.trusted__logo img,
.use-case-card,
.hardware-card,
.hardware-feature,
.hardware-gallery__card,
.hardware-gallery__image,
.solution-pillar,
.leadership-stat,
.why-card,
.why-card__arrow,
.faq-item {
  transition:
    transform 420ms var(--ease-smooth),
    box-shadow 420ms var(--ease-smooth),
    background-color 420ms ease,
    border-color 420ms ease,
    opacity 420ms ease;
}

/* The six product images are now clickable product cards. */
.hardware-gallery__card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transform: translateZ(0);
}

.hardware-gallery__image {
  transform: scale(1.001);
  transition: transform 720ms var(--ease-smooth);
}

.hardware-gallery__caption {
  transition:
    transform 420ms var(--ease-smooth),
    opacity 420ms ease;
}

.hardware-gallery__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(18, 36, 55, 0.14);
}

.hardware-gallery__card:hover .hardware-gallery__image {
  transform: scale(1.055);
}

.hardware-gallery__card:hover .hardware-gallery__caption {
  transform: translateY(-3px);
}

.hardware-gallery__card:focus-visible {
  outline: 3px solid rgba(235, 79, 12, 0.72);
  outline-offset: 5px;
}

/* Softer card interactions. */
.use-case-card:hover,
.hardware-card:hover,
.hardware-feature:hover,
.why-card:hover {
  transform: translateY(-6px);
}

.solution-pillar:hover {
  transform: translateX(5px);
}

.faq-item:hover {
  transform: translateX(3px);
}

/* Small arrow response on hover. */
.why-card:hover .why-card__arrow {
  transform: translate(2px, -2px);
}

/* Logo hover feels less abrupt. */
.trusted__logo:hover img {
  transform: scale(1.045);
}

/* Prevent touch devices from getting sticky hover motion. */
@media (hover: none) {
  .hero__eyebrow:hover,
  .trusted__logo:hover img,
  .use-case-card:hover,
  .hardware-card:hover,
  .hardware-feature:hover,
  .hardware-gallery__card:hover,
  .hardware-gallery__card:hover .hardware-gallery__image,
  .hardware-gallery__card:hover .hardware-gallery__caption,
  .solution-pillar:hover,
  .why-card:hover,
  .why-card:hover .why-card__arrow,
  .faq-item:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body {
    animation: none;
  }

  .js .reveal-on-scroll,
  .js .reveal-on-scroll.is-visible {
    opacity: 1;
    translate: none;
    scale: 1;
    transition: none;
  }

  .hero__button,
  .quotation-cta__button,
  .product-faq__button,
  .hero__eyebrow,
  .trusted__tag,
  .trusted__logo,
  .trusted__logo img,
  .use-case-card,
  .hardware-card,
  .hardware-feature,
  .hardware-gallery__card,
  .hardware-gallery__image,
  .hardware-gallery__caption,
  .solution-pillar,
  .leadership-stat,
  .why-card,
  .why-card__arrow,
  .faq-item {
    transition: none;
  }
}
