/* ==========================================================================
   Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-sticky-offset) + var(--header-height));
}

@font-face {
  font-family: "figTree";
  src: url("/template/default/fonts/Figtree-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "figTree";
  src: url("/template/default/fonts/Figtree-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "figTree";
  src: url("/template/default/fonts/Figtree-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "figTree";
  src: url("/template/default/fonts/Figtree-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "figTree";
  src: url("/template/default/fonts/Figtree-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "figTree";
  src: url("/template/default/fonts/Figtree-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
}

body {
  margin: 0;
  /* font-family: "figTree"; */
  color: #333333;
  background-color: #ffffff;
  overflow-x: clip;
}

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

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  font-family: "figTree";
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
  --color-text: #333333;
  --color-primary: #0071e3;
  --color-white: #ffffff;

  --container-max: 1312px;
  --header-height: 74px;
  --header-sticky-offset: 50px;
  --header-scroll-offset: calc(var(--header-sticky-offset) + var(--header-height));

  --text-brand: clamp(20px, 1.25vw, 24px);
  --text-nav: clamp(13px, 0.83vw, 16px);
  --text-button: clamp(14px, 0.83vw, 16px);

  --space-container-x: clamp(20px, 2.92vw, 56px);
  --nav-gap: clamp(12px, 1.67vw, 32px);

  --text-hero-title: clamp(20px, 3.33vw, 64px);
  --text-hero-subtitle: clamp(16px, 1.67vw, 32px);
  --hero-max-inset: calc(var(--header-sticky-offset) + var(--header-height));
  --hero-height: min(clamp(480px, 56.25vw, 1080px), calc(100vh - var(--hero-max-inset)));
  --hero-content-top: clamp(80px, 5.67vw, 224px);
  --text-section-eyebrow: clamp(16px, 1.04vw, 20px);
  --text-section-title: clamp(28px, 2.5vw, 48px);
  --text-section-subtitle-lg: clamp(22px, 1.67vw, 32px);
  --text-feature-title: clamp(24px, 1.875vw, 36px);
  --text-body: clamp(16px, 1.04vw, 20px);
  --text-card-caption: clamp(16px, 1.04vw, 20px);

  --pain-point-caption-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 427 184'%3E%3Cpath d='M239.853 17.7393C235.51 17.7393 231.582 15.1544 229.977 11.1876C227.324 4.63311 220.812 -0.00231934 213.199 -0.00231934C205.585 -0.00231934 199.073 4.63031 196.42 11.1876C194.815 15.1544 190.887 17.7393 186.544 17.7393H24C10.7451 17.7393 0 28.4845 0 41.7393V159.678C0 172.933 10.7452 183.678 24 183.678H402.4C415.655 183.678 426.4 172.932 426.4 159.678V41.7393C426.4 28.4845 415.655 17.7393 402.4 17.7393H239.853Z' fill='white'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Section 1: Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: var(--header-sticky-offset);
  z-index: 100;
  width: 100%;
  margin-top: var(--header-sticky-offset);
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

#turbo-silence,
#cop-efficiency,
#r290,
#ai-smart-control,
#warranty {
  scroll-margin-top: var(--header-scroll-offset);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--nav-gap);
  width: 100%;
  max-width: var(--container-max);
  min-height: var(--header-height);
  margin-inline: auto;
  padding-block: 10px;
  padding-inline: var(--space-container-x);
}

.site-header__brand {
  flex-shrink: 0;
  font-family: "figTree";
  font-size: var(--text-brand);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-header__nav {
  flex: 1;
  min-width: 0;
}

.site-header__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--nav-gap);
  row-gap: 10px;
}

.site-header__link {
  position: relative;
  display: inline-block;
  font-family: "figTree";
  font-size: var(--text-nav);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  padding-block: 4px;
  transition: opacity 0.2s ease;
}

.site-header__link:hover {
  opacity: 0.7;
}

.site-header__link-mark {
  padding-bottom: 4px;
}

.site-header__link--active .site-header__link-mark {
  border-bottom: 1px solid var(--color-text);
}

.site-header__link--active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 50px;
  height: 1px;
  transform: translateX(-50%);
  background-color: var(--color-text);
}

.site-header__link--active:has(.site-header__link-mark)::after {
  display: none;
}

.site-header__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 12px 24px;
  border: 1px solid var(--color-primary);
  border-radius: 100px;
  background-color: var(--color-primary);
  font-family: "figTree";
  font-size: var(--text-button);
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: -0.32px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.site-header__cta:hover {
  opacity: 0.85;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.site-header__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Section 1: Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1440px) {
  :root {
    --nav-gap: clamp(10px, 1.2vw, 24px);
  }
}

@media (max-width: 767px) {
  .site-header__inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    padding-block: 12px;
  }

  .site-header__brand {
    order: 1;
  }

  .site-header__actions {
    order: 2;
    margin-left: auto;
  }

  .site-header__toggle {
    display: flex;
  }

  .site-header__nav {
    order: 3;
    flex: none;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-header__nav.is-open {
    max-height: 360px;
  }

  .site-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-block: 20px 8px;
  }

  .site-header__link {
    font-family: "figTree";
    white-space: normal;
  }
}

@media (max-width: 430px) {
  :root {
    --space-container-x: 16px;
  }

  .site-header__cta {
    min-height: 36px;
    padding: 10px 18px;
  }
}

/* ==========================================================================
   Section 2: Hero
   ========================================================================== */

.hero-section {
  position: relative;
  width: 100%;
  height: var(--hero-height);
  max-height: calc(100vh - var(--hero-max-inset));
  overflow: hidden;
  color: var(--color-white);
}

.hero-section__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-section__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: bottom center;
}

.hero-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 0.83vw, 16px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-top: var(--hero-content-top);
  padding-inline: var(--space-container-x);
  font-family: "figTree";
  text-align: center;
}

.hero-section__title {
  margin: 0;
  max-width: 1049px;
  font-family: "figTree";
  font-size: var(--text-hero-title);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

.hero-section__subtitle {
  margin: 0;
  max-width: 694px;
  font-family: "figTree";
  font-size: var(--text-hero-subtitle);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-white);
}

.hero-section__inquire {
  margin-top: clamp(8px, 0.83vw, 16px);
}

/* --------------------------------------------------------------------------
   Section 2: Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .hero-section__title {
    font-family: "figTree";
    line-height: 1.15;
  }
}

@media (max-width: 430px) {
  :root {
    --hero-content-top: clamp(50px, 12vw, 100px);
  }

  .hero-section__bg-image {
    object-position: calc(84% + 20px) bottom;
  }
}

/* ==========================================================================
   Section 3: Pain Points
   ========================================================================== */

.pain-points-section {
  width: 100%;
  background-color: var(--color-white);
}

.pain-points-section__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-top: clamp(40px, 3.54vw, 68px);
  padding-bottom: clamp(32px, 3.23vw, 62px);
  padding-inline: var(--space-container-x);
}

.pain-points-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 0.89vw, 17px);
  font-family: "figTree";
  text-align: center;
}

.pain-points-section__eyebrow {
  margin: 0;
  font-family: "figTree";
  font-size: var(--text-section-eyebrow);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
}

.pain-points-section__title {
  margin: 0;
  max-width: 523px;
  font-family: "figTree";
  font-size: var(--text-section-title);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

.pain-points-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 0.85vw, 16px);
  margin-top: clamp(40px, 4.32vw, 83px);
}

.pain-points-card {
  min-width: 0;
}

.pain-points-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 426.4 / 629.76;
  border-radius: clamp(16px, 1.25vw, 24px);
  overflow: hidden;
}

.pain-points-card__image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.pain-points-card__image--1 {
  object-position: 35% 25%;
}

.pain-points-card__image--2 {
  object-position: 50% 35%;
}

.pain-points-card__image--3 {
  object-position: 65% center;
}

.pain-points-card__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  aspect-ratio: 427 / 184;
}

.pain-points-card__caption-glass {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(20px);
  -webkit-mask-image: var(--pain-point-caption-mask);
  mask-image: var(--pain-point-caption-mask);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.pain-points-card__caption-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: clamp(18px, 1.4vw, 26px) 1fr;
  align-items: start;
  justify-items: center;
  height: 100%;
  font-family: "figTree";
  text-align: center;
}

.pain-points-card__icon {
  font-family: "figTree";
  font-size: clamp(8px, 0.47vw, 10px);
  font-weight: 300;
  line-height: 1;
  font-size: 20px;
  color: rgba(51, 51, 51, 0.55);
}

.pain-points-card__caption-content .pain-points-card__text {
  align-self: center;
}

.pain-points-card__text {
  margin: 0;
  font-family: "figTree";
  font-size: var(--text-card-caption);
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-text);
}

.pain-points-card__text--1 {
  max-width: clamp(140px, 9.17vw, 176px);
}

.pain-points-card__text--2 {
  max-width: clamp(200px, 15.05vw, 289px);
}

.pain-points-card__text--3 {
  max-width: clamp(180px, 13.33vw, 256px);
}

.pain-points-card--dark .pain-points-card__caption-glass {
  background: rgba(255, 255, 255, 0.38);
}

/* --------------------------------------------------------------------------
   Section 3: Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .pain-points-section__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pain-points-card__media {
    aspect-ratio: auto;
    min-height: clamp(360px, 82vw, 520px);
  }
}

@media (max-width: 430px) {
  .pain-points-section__title {
    max-width: 100%;
  }

  .pain-points-card__text {
    max-width: 100%;
  }
}

/* ==========================================================================
   Section 4: TurboSilence AI Tech
   ========================================================================== */

.turbo-silence-section {
  width: 100%;
  background-color: var(--color-white);
}

.turbo-silence-section__inner {
  width: 100%;
  max-width: min(1489px, 100%);
  margin-inline: auto;
  padding-top: clamp(60px, 6.77vw, 130px);
  padding-bottom: clamp(80px, 12.66vw, 243px);
  padding-inline: var(--space-container-x);
}

.turbo-silence-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 0.68vw, 13px);
  font-family: "figTree";
  text-align: center;
}

.turbo-silence-section__title {
  margin: 0;
  font-family: "figTree";
  font-size: var(--text-section-title);
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
}

.turbo-silence-section__subtitle {
  margin: 0;
  font-family: "figTree";
  font-size: var(--text-section-subtitle-lg);
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
}

.turbo-silence-section__desc {
  margin: clamp(22px, 1.92vw, 37px) 0 0;
  max-width: clamp(280px, 54.06vw, 1038px);
  font-family: "figTree";
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
}

.turbo-silence-section__figure {
  margin: clamp(32px, 2.5vw, 48px) 0 0;
  width: 100%;
}

.turbo-silence-section__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   Section 4: Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .turbo-silence-section__desc {
    font-family: "figTree";
    line-height: 1.55;
  }
}

/* ==========================================================================
   Section 5: COP UP TO 30 / Efficient
   ========================================================================== */

.cop-section {
  width: 100%;
  background-color: #f5f5f7;
}

.cop-section__inner {
  width: 100%;
  max-width: min(1786px, 100%);
  margin-inline: auto;
  padding-top: clamp(40px, 6.1vw, 117px);
  padding-bottom: clamp(48px, 4.17vw, 80px);
  padding-inline: var(--space-container-x);
}

.cop-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 0.42vw, 8px);
  font-family: "figTree";
  text-align: center;
}

.cop-section__eyebrow {
  margin: 0;
  font-family: "figTree";
  font-size: var(--text-section-subtitle-lg);
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
}

.cop-section__title {
  margin: 0;
  font-family: "figTree";
  font-size: var(--text-section-title);
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
}

.cop-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(16px, 1.4vw, 27px);
}

.cop-section__desc {
  position: relative;
  z-index: 1;
  margin: 0 0 clamp(-48px, -2.9vw, -56px);
  max-width: clamp(280px, 47.14vw, 905px);
  font-family: "figTree";
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #000000;
}

.cop-section__figure {
  width: 100%;
  margin: 0;
}

.cop-section__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   Section 5: Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .cop-section__desc {
    margin-bottom: clamp(16px, 4vw, 24px);
  }
}

@media (max-width: 430px) {
  .cop-section__desc {
    max-width: 100%;
  }
}

/* ==========================================================================
   Section 6: Dual Features
   ========================================================================== */

.dual-features-section {
  width: 100%;
  background-color: #f5f5f7;
}

.dual-features-section__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-top: clamp(24px, 3.96vw, 76px);
  padding-bottom: clamp(32px, 3.39vw, 65px);
  padding-inline: var(--space-container-x);
}

.dual-features-section__carousel {
  width: 100%;
}

.dual-features-section__viewport {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.dual-features-section__viewport:hover {
  cursor: grab;
}

.dual-features-section__viewport.is-grabbing {
  cursor: grabbing;
  user-select: none;
}

.dual-features-section__track {
  --dual-features-gap: clamp(16px, 1.72vw, 33px);
  --dual-features-slides-per-view: 2;
  display: flex;
  gap: var(--dual-features-gap);
  will-change: transform;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - var(--dual-features-gap) * (var(--dual-features-slides-per-view) - 1)) / var(--dual-features-slides-per-view));
  min-height: clamp(320px, 29.95vw, 575px);
  border-radius: clamp(16px, 1.25vw, 24px);
  overflow: hidden;
}

.feature-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.feature-card__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.feature-card__bg-image--winter {
  object-position: 35% center;
}

.feature-card__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.feature-card__gradient--light {
  background: linear-gradient(180deg, #ffffff 1.44%, rgba(255, 255, 255, 0) 48.08%);
}

.feature-card__gradient--winter {
  background: linear-gradient(180deg, #ffffff 2.4%, rgba(255, 255, 255, 0) 56.73%);
}

.feature-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: clamp(12px, 1.04vw, 20px);
  padding: clamp(24px, 2.19vw, 42px) clamp(20px, 3.28vw, 63px) clamp(16px, 1.25vw, 24px);
}

.feature-card__header {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-card__eyebrow {
  margin: 0;
  font-family: "figTree";
  font-size: var(--text-section-subtitle-lg);
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
}

.feature-card__title {
  margin: 0;
  font-family: "figTree";
  font-size: var(--text-feature-title);
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
}

.feature-card__desc {
  margin: 0;
  max-width: 554px;
  font-family: "figTree";
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
}

.feature-card__figure {
  margin: auto 0 0;
  width: 100%;
  background: transparent;
}

.feature-card__product {
  display: block;
  width: 100%;
  max-width: 553px;
  height: auto;
  margin-inline: auto;
  background: transparent;
  object-fit: contain;
}

.dual-features-section__indicator {
  position: relative;
  width: min(290px, 100%);
  height: 2px;
  margin-top: clamp(24px, 2.55vw, 49px);
}

.dual-features-section__indicator-track {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: rgba(0, 0, 0, 0.12);
}

.dual-features-section__indicator-active {
  position: absolute;
  top: 0;
  left: 0;
  /* width: min(80px, 28%); */
  width: 50%;
  height: 2px;
  border-radius: 1px;
  background-color: #000000;
  transition: left 0.6s ease;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Section 6: Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .dual-features-section__track {
    --dual-features-gap: 20px;
    --dual-features-slides-per-view: 1;
  }

  .feature-card {
    min-height: clamp(400px, 75vw, 520px);
  }

  .feature-card__desc {
    max-width: 100%;
  }
}

/* ==========================================================================
   Section 7: R290 Refrigerant
   ========================================================================== */

.r290-section {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 66vw, 1267px);
  overflow: hidden;
  background-color: #f5f5f7;
}

.r290-section__background {
  position: absolute;
  top: clamp(40px, 4.69vw, 90px);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: #f5f5f7;
  background-image: url("assets/images/r290-hero-background.jpg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auro;
  background-blend-mode: multiply;
}

.r290-section__fade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: clamp(180px, 23.44vw, 450px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.47) 59.19%, #ffffff 100%);
  pointer-events: none;
  opacity: 0.47;
}

.r290-section__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-top: clamp(80px, 7.92vw, 152px);
  padding-bottom: clamp(120px, 12.5vw, 240px);
  padding-inline: var(--space-container-x);
}

.r290-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 0.68vw, 13px);
  font-family: "figTree";
  text-align: center;
}

.r290-section__title {
  margin: 0;
  max-width: clamp(280px, 45.89vw, 881px);
  font-family: "figTree";
  font-size: var(--text-section-title);
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
}

.r290-section__subtitle {
  margin: 0;
  max-width: clamp(280px, 39.32vw, 755px);
  font-family: "figTree";
  font-size: var(--text-section-subtitle-lg);
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
}

.r290-section__desc {
  margin: clamp(16px, 1.25vw, 24px) 0 0;
  max-width: clamp(280px, 46.25vw, 888px);
  font-family: "figTree";
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
}

/* --------------------------------------------------------------------------
   Section 7: Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .r290-section__desc {
    font-family: "figTree";
    line-height: 1.55;
  }
}

/* ==========================================================================
   AI Cluster: Rectangle 77 backdrop (Figma 183:556)
   Covers Section 7 bottom overlap + Sections 8–12
   ========================================================================== */

.ai-cluster {
  position: relative;
}

/* absolute reason: Figma Rectangle 77 decorative panel behind Sections 8–12 */
.ai-cluster::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(calc(1660 / 1920 * 100vw), 1441px);
  border-radius: min(calc(24 / 1920 * 100vw), 24px);
  background-color: rgba(217, 217, 217, 0.2);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
  pointer-events: none;
}

.ai-cluster>section {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

/* ==========================================================================
   AI Cluster: Responsive
   ========================================================================== */
@media(max-width:767px) {
  .ai-cluster::before {
    display: none;
  }
}


/* ==========================================================================
   Section 8: AI Smart Control
   ========================================================================== */

.ai-control-section {
  width: 100%;
}

.ai-control-section__inner {
  width: 100%;
  max-width: min(1201px, 100%);
  margin-inline: auto;
  padding-top: clamp(48px, 5vw, 96px);
  padding-bottom: clamp(64px, 6.77vw, 130px);
  padding-inline: var(--space-container-x);
  margin-top: -300px;
}

.ai-control-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 0.42vw, 8px);
  font-family: "figTree";
  text-align: center;
}

.ai-control-section__title {
  margin: 0;
  max-width: 497px;
  font-family: "figTree";
  font-size: var(--text-hero-title);
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
}

.ai-control-section__subtitle {
  margin: 0;
  max-width: 662px;
  font-family: "figTree";
  font-size: var(--text-section-title);
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
}

.ai-control-section__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 1.2vw, 23px);
  margin-top: clamp(80px, 9.19vw, 234px);
  font-family: "figTree";
  text-align: center;
}

.ai-control-section__intro-title {
  margin: 0;
  max-width: 312px;
  font-family: "figTree";
  font-size: var(--text-section-subtitle-lg);
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
}

.ai-control-section__intro-desc {
  margin: 0;
  max-width: clamp(280px, 47.34vw, 909px);
  font-family: "figTree";
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
}

.ai-control-section__dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(16px, 1.15vw, 22px);
  margin-top: clamp(8px, 4.86vw, 70px);
}

.ai-control-section__aside {
  display: grid;
  grid-template-rows: auto auto;
  gap: clamp(16px, 1.3vw, 25px);
  min-width: 0;
  align-content: start;
}

.ai-control-section__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(12px, 1vw, 19px);
}

/* Pool heat pump card — Figma Group 57 / 49:252 */
.ai-control-section__pool-card {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.78vw, 40px);
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 32.63vw, 646px);
  padding: clamp(10px, 4.44vw, 64px) clamp(16px, 2.07vw, 40px) clamp(10px, 4.44vw, 64px);
  border-radius: clamp(16px, 1.25vw, 24px);
  background-image: linear-gradient(216.16deg,
      rgba(227, 227, 227, 0) 0.6%,
      #ffffff 104.76%);
  box-shadow:
    clamp(-14px, -1.46vw, -28px) clamp(19px, 1.98vw, 38px) clamp(40px, 4.11vw, 79px) clamp(-6px, -0.63vw, -12px) rgba(0, 0, 0, 0.15);
}

.ai-control-section__pool-head {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-start;
  font-family: "figTree";
  text-align: center;
  gap: clamp(6px, 1.11vw, 16px);
  padding-top: clamp(4px, 0.31vw, 6px);
  padding-left: 40px;
}

.ai-control-section__pool-temp {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  font-family: "figTree";
  letter-spacing: -0.2px;
  color: #000000;
}

.ai-control-section__pool-temp-value {
  font-family: "figTree";
  font-size: clamp(64px, 6.67vw, 128px);
  font-weight: 500;
  line-height: 1;
}

.ai-control-section__pool-temp-sup {
  margin-top: clamp(4px, 0.42vw, 8px);
  font-family: "figTree";
  font-size: clamp(14px, 1.04vw, 20px);
  font-weight: 500;
  line-height: 1;
  align-self: flex-start;
}

.ai-control-section__pool-temp-unit {
  margin-bottom: clamp(10px, 1.04vw, 20px);
  font-family: "figTree";
  font-size: clamp(24px, 2.5vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.ai-control-section__pool-title {
  margin: 0;
  font-family: "figTree";
  font-size: clamp(24px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.2px;
  color: #000000;
}

.ai-control-section__pool-status {
  margin: 0;
  font-family: "figTree";
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.2px;
  color: #000000;
}

.ai-control-section__pool-chart {
  display: flex;
  /* flex: 1; */
  flex-direction: column;
  gap: clamp(8px, 1.11vw, 16px);
  min-height: clamp(160px, 9.42vw, 239px);
  padding: clamp(12px, 0.94vw, 18px) clamp(10px, 0.83vw, 16px) clamp(10px, 0.73vw, 14px);
  border: 1px solid rgba(102, 102, 102, 0.94);
  border-radius: clamp(16px, 1.25vw, 24px);
}

.ai-control-section__pool-chart-visual {
  /* display: grid;
  flex: 1;
  align-items: end;
  min-height: clamp(72px, 4.17vw, 80px); */
}

.ai-control-section__pool-tooltip {
  grid-area: 1 / 1;
  z-index: 1;
  align-self: start;
  justify-self: start;
  padding: clamp(6px, 0.42vw, 8px) clamp(8px, 0.52vw, 10px);
  border-radius: clamp(6px, 0.47vw, 9px);
  background-color: rgba(212, 212, 212, 0.37);
  margin-left: 68px;
}

.ai-control-section__pool-tooltip p {
  margin: 0;
  font-family: "figTree";
  font-size: clamp(10px, 0.57vw, 11px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.2px;
  color: #686868;
}

.ai-control-section__pool-chart-graph {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: auto;
  align-self: end;
  margin-top: 30px;
}

.ai-control-section__pool-chart-axis {
  display: flex;
  justify-content: space-between;
  gap: clamp(4px, 0.42vw, 8px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-control-section__pool-chart-axis li {
  font-family: "figTree";
  font-size: clamp(11px, 0.73vw, 14px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.2px;
  color: #040404;
}

/* Stat cards — Figma Group 53 / 54 */
.ai-control-section__stat-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: clamp(200px, 13.41vw, 257px);
  padding:
    clamp(24px, 1.67vw, 32px) clamp(14px, 2.13vw, 41px) clamp(12px, 1.35vw, 26px);
  border-radius: clamp(16px, 1.25vw, 24px);
  box-shadow:
    clamp(-14px, -1.46vw, -28px) clamp(19px, 1.98vw, 38px) clamp(40px, 4.11vw, 79px) clamp(-7px, -0.68vw, -13px) rgba(0, 0, 0, 0.25);
}

.ai-control-section__stat-card--cost {
  background-image: linear-gradient(222.3deg,
      rgba(153, 153, 153, 0.074) 2.05%,
      rgba(255, 255, 255, 0) 102.42%);
}

.ai-control-section__stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 0.63vw, 12px);
}

.ai-control-section__stat-label,
.ai-control-section__stat-value {
  font-family: "figTree";
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.23px;
  color: #010101;
}

.ai-control-section__stat-gauge-wrap {
  display: grid;
  flex: 1;
  align-content: center;
  margin-top: clamp(12px, 1.04vw, 20px);
  min-height: 0;
}

.ai-control-section__stat-gauge {
  display: flex;
  grid-area: 1 / 1;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.ai-control-section__stat-gauge img {
  display: block;
  width: min(100%, clamp(140px, 10.3vw, 198px));
  height: auto;
}

.ai-control-section__stat-caption {
  grid-area: 1 / 1;
  align-self: end;
  justify-self: center;
  margin: 0 0 clamp(2px, 0.21vw, 4px);
  font-family: "figTree";
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.23px;
  text-align: center;
  color: #010101;
  transform: translateY(21px);
}

.ai-control-section__stat-card--o2 {
  gap: clamp(8px, 0.63vw, 12px);
  background-image: linear-gradient(222deg,
      rgba(153, 153, 153, 0.094) 0%,
      rgba(255, 255, 255, 0) 102.74%);
}

.ai-control-section__o2-row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.83vw, 16px);
}

.ai-control-section__o2-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 2.96vw, 57px);
  height: clamp(40px, 2.96vw, 58px);
  border-radius: 50%;
  background-color: rgba(217, 217, 217, 0.2);
}

.ai-control-section__o2-icon img {
  display: block;
  width: clamp(18px, 1.33vw, 26px);
  height: auto;
}

.ai-control-section__o2-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.21vw, 4px);
  min-width: 0;
}

.ai-control-section__o2-value {
  margin: 0;
  font-family: "figTree";
  line-height: 1.2;
  letter-spacing: -0.23px;
  color: #010101;
}

.ai-control-section__o2-value-num {
  font-family: "figTree";
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
}

.ai-control-section__o2-value-unit {
  font-family: "figTree";
  font-size: clamp(13px, 0.83vw, 16px);
  font-weight: 400;
}

.ai-control-section__o2-value-unit--lg {
  font-family: "figTree";
  font-size: clamp(15px, 1.04vw, 20px);
}

.ai-control-section__o2-label {
  margin: 0;
  font-family: "figTree";
  font-size: clamp(10px, 0.63vw, 12px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.23px;
  color: #010101;
}

.ai-control-section__o2-gauge {
  margin: 0;
  padding-top: clamp(6px, 0.52vw, 10px);
}

.ai-control-section__o2-gauge img {
  display: block;
  width: 100%;
  max-width: clamp(140px, 10.21vw, 196px);
  height: auto;
}

.ai-control-section__more-card {
  display: grid;
  width: 100%;
  margin: 0;
  aspect-ratio: 556.455 / 362.726;
  border-radius: clamp(16px, 1.25vw, 24px);
  overflow: hidden;
}

.ai-control-section__more-media {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
}

.ai-control-section__more-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.ai-control-section__more-action {
  grid-area: 1 / 1;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: clamp(20px, 2.63vw, 51px);
  padding-bottom: clamp(28px, 3.76vw, 72px);
  pointer-events: none;
}

.ai-control-section__more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(60px, 4.02vw, 77px);
  min-height: clamp(32px, 2.04vw, 39px);
  padding-inline: clamp(14px, 1.04vw, 20px);
  border-radius: clamp(20px, 1.56vw, 30px);
  background-color: rgba(255, 255, 255, 0.75);
  font-family: "figTree";
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.2px;
  color: #393939;
  pointer-events: auto;
  transition: opacity 0.2s ease;
}

.ai-control-section__more-button:hover {
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Section 8: Responsive
   -------------------------------------------------------------------------- */
@media (max-width:1560px) {
  .ai-control-section__inner {
    margin-top: -240px;
  }
}

@media (max-width: 767px) {
  .ai-control-section__dashboard {
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 24px);
  }

  .ai-control-section__pool-card,
  .ai-control-section__stat-card {
    aspect-ratio: auto;
  }

  .ai-control-section__pool-chart-marker {
    margin-left: 24%;
    margin-bottom: 18%;
  }

  .ai-control-section__intro {
    margin-top: clamp(48px, 10vw, 80px);
  }

  .ai-control-section__intro-desc {
    font-family: "figTree";
    line-height: 1.55;
  }

  .ai-control-section__intro-desc,
  .ai-control-section__subtitle,
  .ai-control-section__title {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .ai-control-section__cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Section 9: AI Entertainment / AI Visible Energy Saving
   ========================================================================== */

.energy-saving-section {
  width: 100%;
  background-color: #ffffff;
}

.energy-saving-section__inner {
  width: 100%;
  max-width: min(1198px, 100%);
  margin-inline: auto;
  padding-top: clamp(48px, 5vw, 96px);
  padding-bottom: clamp(64px, 6.77vw, 130px);
  padding-inline: var(--space-container-x);
}

.energy-saving-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "figTree";
  text-align: center;
}

.energy-saving-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0;
  font-family: "figTree";
  font-size: var(--text-section-subtitle-lg);
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
}

.energy-saving-section__title-line {
  display: block;
}

.energy-saving-section__desc {
  margin: clamp(20px, 1.61vw, 31px) 0 0;
  max-width: min(909px, 100%);
  font-family: "figTree";
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
}

.energy-saving-section__showcase {
  position: relative;
  margin-top: clamp(20px, 1.67vw, 32px);
  border-radius: clamp(16px, 1.25vw, 24px);
  overflow: hidden;
}

.energy-saving-section__bg {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 14%;
}

.energy-saving-section__glass {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  /* background-color: rgba(255, 255, 255, 0.2); */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: clamp(16px, 1.25vw, 24px);
}

.energy-saving-section__panel-content {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}

/* absolute reason: Figma 49:133 plant layer above glass */
.energy-saving-section__plant-wrap {
  position: absolute;
  top: 9.25%;
  left: 9.45%;
  width: 78.57%;
  height: 79.45%;
  display: flex;
  align-items: flex-end;
  margin: 0;
}

.energy-saving-section__plant {
  width: 100%;
  height: 100%;
  background-image: url(assets/images/ai-entertainment-tree-art.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* absolute reason: Figma 49:134 / 49:139 icon layers on top */
.energy-saving-section__metric {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(10px, 0.89vw, 18px);
}

.energy-saving-section__metric--solar {
  top: 39.74%;
  left: 23.02%;
}

.energy-saving-section__metric--power {
  top: 72.18%;
  left: 66.42%;
}

.energy-saving-section__metric-icon {
  display: block;
  width: clamp(40px, 2.81vw, 54px);
  height: auto;
}

.energy-saving-section__metric-icon--sm {
  width: clamp(28px, 1.875vw, 36px);
}

.energy-saving-section__metric-label {
  margin: 0;
  font-family: "figTree";
  font-size: clamp(13px, 0.78vw, 15px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.23px;
  color: #ffffff;
}

.energy-saving-section__metric-label--sm {
  font-family: "figTree";
  font-size: clamp(12px, 0.73vw, 14px);
}

/* --------------------------------------------------------------------------
   Section 9: Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .energy-saving-section__showcase {
    display: grid;
    grid-template-rows: auto auto;
  }

  .energy-saving-section__bg {
    grid-row: 1;
    grid-column: 1;
  }

  .energy-saving-section__glass {
    position: relative;
    top: auto;
    right: auto;
    grid-row: 2;
    grid-column: 1;
    width: 100%;
    min-height: clamp(280px, 70vw, 420px);
    border-radius: clamp(16px, 4vw, 24px);
  }

  .energy-saving-section__panel-content {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(280px, 70vw, 420px);
  }

  .energy-saving-section__plant-wrap {
    top: 6%;
    left: 8%;
    width: 62%;
    height: 72%;
  }

  .energy-saving-section__metric--solar {
    top: 8%;
    left: 12%;
  }

  .energy-saving-section__metric--power {
    top: 68%;
    left: 55%;
  }

  .energy-saving-section__desc,
  .energy-saving-section__title {
    max-width: 100%;
  }
}

/* ==========================================================================
   Section 10: AI Energy Report
   ========================================================================== */

.energy-report-section {
  width: 100%;
  background-color: #ffffff;
}

.energy-report-section__inner {
  width: 100%;
  max-width: min(1200px, 100%);
  margin-inline: auto;
  padding-top: clamp(48px, 5vw, 96px);
  padding-bottom: clamp(64px, 6.77vw, 130px);
  padding-inline: var(--space-container-x);
}

.energy-report-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "figTree";
  text-align: center;
}

.energy-report-section__title {
  margin: 0;
  font-family: "figTree";
  font-size: var(--text-section-subtitle-lg);
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
}

.energy-report-section__desc {
  margin: clamp(20px, 1.61vw, 31px) 0 0;
  max-width: min(759px, 100%);
  font-family: "figTree";
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
}

.energy-report-section__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  margin-top: 51px;
  padding-top: 51px;
  padding-bottom: 24px;
  overflow: hidden;
  border: none;
  border-radius: 24px;
  background: #fff;
  box-shadow: -43px 64px 77px -13px rgba(0, 0, 0, 0.25);
}

.energy-report-section__card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.43px;
  font-family: "figTree";
  text-align: center;
}

.energy-report-section__card-label {
  margin: 0;
  font-family: "figTree";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.30385;
  color: #000000;
  opacity: 0.46;
}

.energy-report-section__card-period {
  margin: 0;
  font-family: "figTree";
  font-size: 40px;
  font-weight: 500;
  line-height: 1.30385;
  color: #000000;
}

.energy-report-section__chart {
  position: relative;
  width: 100%;
  margin-top: 18.07px;
}

.energy-report-section__chart-layers {
  position: relative;
  width: 100%;
  min-height: clamp(160px, 12.8vw, 246px);
}

.energy-report-section__chart-base {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.energy-report-section__chart-area,
.energy-report-section__chart-line {
  position: absolute;
  top: calc(12 / 243 * 100%);
  left: 0;
  width: calc(691 / 1200 * 100%);
  height: auto;
}

.energy-report-section__chart-area {
  z-index: 2;
}

.energy-report-section__chart-line {
  z-index: 3;
}

/* absolute reason: chart marker and guide line anchored to Figma data point */
.energy-report-section__chart-point {
  position: absolute;
  top: calc(-6 / 243 * 100%);
  left: calc(673 / 1200 * 100%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(38 / 1200 * 100%);
}

.energy-report-section__chart-marker {
  display: block;
  width: 100%;
  height: auto;
}

.energy-report-section__chart-guide {
  display: block;
  width: calc(5 / 38 * 100%);
  height: auto;
}

/* absolute reason: tooltip bubble anchored to chart data point */
.energy-report-section__chart-tooltip {
  position: absolute;
  top: calc(24 / 243 * 100%);
  left: calc(469 / 1200 * 100%);
  z-index: 5;
  width: calc(128 / 1200 * 100%);
  margin: 0;
}

.energy-report-section__chart-tooltip-bubble {
  display: block;
  width: 100%;
  height: auto;
}

.energy-report-section__chart-tooltip-text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: calc(12 / 64 * 100%);
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: "figTree";
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 500;
  line-height: 1.2;
  color: #999999;
}

.energy-report-section__month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 770px;
  margin: 26.66px auto 0;
  padding-inline: 34px;
  font-family: "figTree";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.30385;
}

.energy-report-section__month-tab {
  color: #000000;
  opacity: 0.46;
}

.energy-report-section__month-tab--active {
  color: #000000;
  opacity: 1;
}

.energy-report-section__range-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 770px;
  height: 53.24px;
  margin: 35.86px auto 0;
  padding-inline: 84px;
  border: 2px solid rgba(204, 204, 204, 0.41);
  border-radius: 200px;
}

.energy-report-section__range-tab {
  flex: 0 0 auto;
  font-family: "figTree";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.30385;
  text-align: center;
  white-space: nowrap;
  color: #000000;
  opacity: 0.46;
  border: 3px solid transparent;
  border-radius: 200px;
}

.energy-report-section__range-tab--active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 171px;
  height: 53.24px;
  color: #000000;
  opacity: 1;
  border: 3px solid #cccccc;
  background-color: #ffffff;
}

.energy-report-section__stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  max-width: min(558px, 100%);
  margin: clamp(32px, 4.33vw, 52px) auto 0;
  column-gap: clamp(48px, 12.5vw, 138px);
  font-family: "figTree";
  text-align: center;
}

.energy-report-section__stats-divider {
  display: block;
  width: 1px;
  height: clamp(100px, 8.1vw, 156px);
  flex-shrink: 0;
}

.energy-report-section__stat-label {
  margin: 0;
  font-family: "figTree";
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.46);
}

.energy-report-section__stat-value {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(4px, 0.31vw, 6px);
  margin: clamp(8px, 0.63vw, 12px) 0 0;
}

.energy-report-section__stat-number {
  font-family: "figTree";
  font-size: clamp(40px, 3.33vw, 64px);
  font-weight: 400;
  line-height: 1;
  color: #000000;
}

.energy-report-section__stat-unit,
.energy-report-section__stat-currency {
  margin-top: clamp(6px, 0.42vw, 8px);
  font-family: "figTree";
  font-size: clamp(10px, 0.625vw, 12px);
  font-weight: 400;
  line-height: 1;
  color: #8a8a8a;
}

.energy-report-section__stat-compare {
  margin: clamp(8px, 0.63vw, 12px) 0 0;
  font-family: "figTree";
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.2;
  color: #8a8a8a;
}

/* --------------------------------------------------------------------------
   Section 10: Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .energy-report-section__card {
    padding-top: calc(51 / 1200 * 100vw);
    padding-bottom: calc(24 / 1200 * 100vw);
    border-radius: calc(24 / 1200 * 100vw);
  }

  .energy-report-section__card-head {
    gap: calc(5.43 / 1200 * 100vw);
  }

  .energy-report-section__card-label,
  .energy-report-section__month-nav,
  .energy-report-section__range-tab {
    font-family: "figTree";
    font-size: calc(20 / 1200 * 100vw);
  }

  .energy-report-section__card-period {
    font-family: "figTree";
    font-size: calc(40 / 1200 * 100vw);
  }

  .energy-report-section__chart {
    margin-top: calc(18.07 / 1200 * 100vw);
  }

  .energy-report-section__month-nav {
    margin-top: calc(26.66 / 1200 * 100vw);
    padding-inline: calc(34 / 1200 * 100vw);
  }

  .energy-report-section__range-nav {
    height: calc(53.24 / 1200 * 100vw);
    margin-top: calc(35.86 / 1200 * 100vw);
    padding-inline: calc(84 / 1200 * 100vw);
  }

  .energy-report-section__range-tab--active {
    min-width: calc(171 / 1200 * 100vw);
    height: calc(53.24 / 1200 * 100vw);
  }

  .energy-report-section__chart-tooltip-text {
    font-family: "figTree";
    font-size: clamp(12px, 3.2vw, 14px);
  }

  .energy-report-section__stats {
    grid-template-columns: 1fr;
    row-gap: clamp(24px, 6vw, 32px);
  }

  .energy-report-section__stats-divider {
    display: none;
  }

  .energy-report-section__desc,
  .energy-report-section__title {
    max-width: 100%;
  }
}

/* ==========================================================================
   Section 11: Efficiency Leaderboard
   Figma: 183:778 (1210×1113)
   ========================================================================== */

.leaderboard-section {
  width: 100%;
  background-color: #ffffff;
}

.leaderboard-section__inner {
  width: 100%;
  max-width: 1210px;
  margin-inline: auto;
  padding-top: calc(66 / 1920 * 100vw);
  padding-bottom: calc(130 / 1920 * 100vw);
  padding-inline: var(--space-container-x);
}

.leaderboard-section__stage {
  display: grid;
  width: 100%;
}

.leaderboard-section__stage::before {
  content: "";
  grid-area: 1 / 1;
  width: 100%;
  padding-bottom: calc(1113 / 1210 * 100%);
  pointer-events: none;
}

.leaderboard-section__header,
.leaderboard-section__canvas {
  grid-area: 1 / 1;
}

.leaderboard-section__header {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: start;
  font-family: "figTree";
  text-align: center;
}

.leaderboard-section__title {
  margin: 0;
  font-family: "figTree";
  font-size: min(32px, calc(32 / 1210 * 100vw));
  font-weight: 500;
  line-height: 1.1875;
  color: #000000;
}

.leaderboard-section__desc {
  margin: min(34px, calc(34 / 1210 * 100vw)) 0 0;
  max-width: min(759px, 100%);
  font-family: "figTree";
  font-size: min(20px, calc(20 / 1210 * 100vw));
  font-weight: 500;
  line-height: normal;
  color: #000000;
}

.leaderboard-section__canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 0;
  margin-top: 0;
}

.leaderboard-section__visual {
  position: absolute;
  top: calc(24 / 1113 * 100%);
  left: calc(61 / 1210 * 100%);
  z-index: 1;
  width: calc(1092 / 1210 * 100%);
  height: calc(874 / 1113 * 100%);
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.leaderboard-section__plants-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.leaderboard-section__plants-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.leaderboard-section__plants {
  position: absolute;
  top: 12.15%;
  left: 7.28%;
  width: 85.44%;
  height: 85.44%;
  max-width: none;
  object-fit: cover;
}

.leaderboard-section__rank-list {
  position: absolute;
  top: calc(205 / 1113 * 100%);
  left: calc(16 / 1210 * 100%);
  z-index: 2;
  width: calc(116 / 1210 * 100%);
  max-width: 116px;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.leaderboard-section__rank-label {
  margin: 0;
  font-family: "figTree";
  font-size: min(20px, calc(20 / 1210 * 100vw));
  font-weight: 500;
  line-height: normal;
  color: #8a8a8a;
}

.leaderboard-section__rank-line {
  display: block;
  width: max(270px, 100%);
  height: 1px;
  margin-top: 10px;
  background-color: #8A8A8A;
}

.leaderboard-section__rank-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  list-style: none;
  margin-top: 60px;
}

.leaderboard-section__rank-item {
  position: relative;
  width: 100%;
}

.leaderboard-section__rank-item+.leaderboard-section__rank-item {
  margin-top: calc(21 / 1113 * 100%);
}

.leaderboard-section__rank-item--dim-61 {
  margin-top: calc(19 / 1113 * 100%);
  opacity: 0.61;
}

.leaderboard-section__rank-item--dim-86 {
  opacity: 0.86;
}

.leaderboard-section__rank-avatar {
  position: relative;
  width: 100%;
  max-width: 116px;
  aspect-ratio: 1 / 1;
}

.leaderboard-section__rank-ring {
  position: absolute;
  display: block;
  height: auto;
}

.leaderboard-section__rank-ring--outer {
  top: 0;
  left: 0;
  width: 100%;
}

.leaderboard-section__rank-ring--inner {
  top: 6.03%;
  left: 6.03%;
  width: 87.93%;
}

.leaderboard-section__rank-photo {
  position: absolute;
  top: 9.48%;
  left: 9.48%;
  width: 81.03%;
  height: 81.03%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.leaderboard-section__rank-name {
  position: absolute;
  top: 50%;
  left: calc(133 / 116 * 100%);
  z-index: 2;
  font-family: "figTree";
  font-size: min(20px, calc(20 / 1210 * 100vw));
  font-weight: 500;
  line-height: normal;
  color: #8a8a8a;
  white-space: nowrap;
  transform: translateY(-50%);
}

.leaderboard-section__badge-dot {
  position: absolute;
  top: calc(255 / 1113 * 100%);
  left: calc(954 / 1210 * 100%);
  z-index: 2;
  display: block;
  width: calc(58 / 1210 * 100%);
  height: auto;
}

.leaderboard-section__badge-aside-label {
  position: absolute;
  top: calc(406 / 1113 * 100%);
  left: calc(1017 / 1210 * 100%);
  z-index: 2;
  margin: 0;
  font-family: "figTree";
  font-size: min(20px, calc(20 / 1210 * 100vw));
  font-weight: 500;
  line-height: normal;
  color: #8a8a8a;
}

.leaderboard-section__badge {
  position: absolute;
  top: calc(234 / 1113 * 100%);
  left: calc(970 / 1210 * 100%);
  z-index: 2;
  width: calc(238 / 1210 * 100%);
}

.leaderboard-section__badge-ring {
  display: block;
  width: 100%;
  height: auto;
}

.leaderboard-section__badge-number {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "figTree";
  font-size: min(128px, calc(128 / 1210 * 100vw));
  font-weight: 500;
  line-height: 1;
  color: #000000;
  transform: translate(-50%, -50%);
}

.leaderboard-section__card {
  position: absolute;
  top: calc(723 / 1113 * 100%);
  left: calc(10 / 1210 * 100%);
  z-index: 3;
  display: grid;
  /* grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); */
  grid-template-columns: 1fr 1fr;
  align-items: start;
  width: calc(1200 / 1210 * 100%);
  min-height: calc(390 / 1113 * 100%);
  margin: 0;
  padding: min(72px, calc(72 / 1210 * 100vw)) 0 min(48px, calc(48 / 1210 * 100vw));
  overflow: hidden;
  background-color: rgba(217, 217, 217, 0.2);
  border-radius: 24px;
  box-shadow: -23px 21px 47px -14px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.leaderboard-section__card-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "figTree";
  text-align: center;
}

.leaderboard-section__card-label {
  margin: 0;
  font-family: "figTree";
  font-size: min(32px, calc(32 / 1210 * 100vw));
  font-weight: 500;
  line-height: 1.1875;
  color: #000000;
}

.leaderboard-section__card-label--regular {
  font-family: "figTree";
  font-weight: 400;
}

.leaderboard-section__card-value {
  margin: min(28px, calc(28 / 1210 * 100vw)) 0 0;
  font-family: "figTree";
  font-size: min(128px, calc(128 / 1210 * 100vw));
  font-weight: 400;
  line-height: 1;
  color: #000000;
}

.leaderboard-section__card-foot {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: min(111px, calc(111 / 1210 * 100vw));
  margin: min(24px, calc(24 / 1210 * 100vw)) 0 0;
}

.leaderboard-section__card-foot-label {
  font-family: "figTree";
  font-size: min(24px, calc(24 / 1210 * 100vw));
  font-weight: 500;
  line-height: normal;
  color: #000000;
}

.leaderboard-section__card-unit,
.leaderboard-section__card-currency {
  font-family: "figTree";
  font-size: min(32px, calc(32 / 1210 * 100vw));
  font-weight: 400;
  line-height: normal;
  color: #000000;
}

.leaderboard-section__card-divider {
  position: absolute;
  top: calc(70 / 390 * 100%);
  left: 50%;
  z-index: 2;
  display: block;
  width: 1px;
  height: calc(289 / 390 * 100%);
  margin: 0;
  transform: translateX(-50%);
}

/* --------------------------------------------------------------------------
   Section 11: Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1440px) {
  .leaderboard-section__title {
    font-family: "figTree";
    font-size: calc(32 / 1440 * 100vw);
  }

  .leaderboard-section__desc {
    font-family: "figTree";
    font-size: calc(20 / 1440 * 100vw);
  }

  .leaderboard-section__rank-label,
  .leaderboard-section__rank-name,
  .leaderboard-section__badge-aside-label {
    font-family: "figTree";
    font-size: calc(20 / 1440 * 100vw);
  }

  .leaderboard-section__badge-number {
    font-family: "figTree";
    font-size: calc(128 / 1440 * 100vw);
  }

  .leaderboard-section__card-label {
    font-family: "figTree";
    font-size: calc(32 / 1440 * 100vw);
  }

  .leaderboard-section__card-value {
    font-family: "figTree";
    font-size: calc(128 / 1440 * 100vw);
  }

  .leaderboard-section__card-foot-label {
    font-family: "figTree";
    font-size: calc(24 / 1440 * 100vw);
  }

  .leaderboard-section__card-unit,
  .leaderboard-section__card-currency {
    font-family: "figTree";
    font-size: calc(32 / 1440 * 100vw);
  }
}

@media (max-width: 767px) {
  .leaderboard-section__inner {
    padding-top: calc(48 / 768 * 100vw);
    padding-bottom: calc(80 / 768 * 100vw);
  }

  .leaderboard-section__stage {
    display: block;
  }

  .leaderboard-section__stage::before {
    content: none;
    display: none;
  }

  .leaderboard-section__header,
  .leaderboard-section__canvas {
    grid-area: auto;
  }

  .leaderboard-section__canvas {
    min-height: auto;
    padding-bottom: calc(48 / 768 * 100vw);
  }

  .leaderboard-section__visual,
  .leaderboard-section__rank-list,
  .leaderboard-section__badge-dot,
  .leaderboard-section__badge-aside-label,
  .leaderboard-section__badge,
  .leaderboard-section__card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  .leaderboard-section__visual {
    height: calc(874 / 768 * 100vw);
    margin-top: calc(24 / 768 * 100vw);
  }

  .leaderboard-section__rank-list {
    width: 100%;
    max-width: none;
    margin-top: calc(32 / 768 * 100vw);
  }

  .leaderboard-section__rank-item {
    display: grid;
    grid-template-columns: calc(116 / 768 * 100vw) minmax(0, 1fr);
    align-items: center;
    column-gap: calc(17 / 768 * 100vw);
  }

  .leaderboard-section__rank-name {
    position: static;
    transform: none;
    font-family: "figTree";
    white-space: normal;
  }

  .leaderboard-section__rank-line {
    width: min(270px, 100%);
  }

  .leaderboard-section__rank-item+.leaderboard-section__rank-item {
    margin-top: calc(21 / 768 * 100vw);
  }

  .leaderboard-section__rank-item--dim-61 {
    margin-top: calc(19 / 768 * 100vw);
  }

  .leaderboard-section__rank-avatar {
    max-width: calc(116 / 768 * 100vw);
  }

  .leaderboard-section__badge-dot {
    display: none;
  }

  .leaderboard-section__badge-aside-label {
    margin-top: calc(24 / 768 * 100vw);
    font-family: "figTree";
    text-align: center;
  }

  .leaderboard-section__badge {
    width: calc(238 / 768 * 100vw);
    margin: calc(16 / 768 * 100vw) auto 0;
  }

  .leaderboard-section__badge-number {
    font-family: "figTree";
    font-size: calc(128 / 768 * 100vw);
  }

  .leaderboard-section__card {
    min-height: calc(390 / 768 * 100vw);
    margin-top: calc(-175 / 874 * 100%);
    padding: calc(72 / 768 * 100vw) calc(24 / 768 * 100vw) calc(48 / 768 * 100vw);
    grid-template-columns: 1fr;
    row-gap: calc(32 / 768 * 100vw);
  }

  .leaderboard-section__card-divider {
    display: none;
  }

  .leaderboard-section__title {
    font-family: "figTree";
    font-size: calc(32 / 768 * 100vw);
  }

  .leaderboard-section__desc {
    margin-top: calc(34 / 768 * 100vw);
    font-family: "figTree";
    font-size: calc(20 / 768 * 100vw);
  }

  .leaderboard-section__card-label {
    font-family: "figTree";
    font-size: calc(32 / 768 * 100vw);
  }

  .leaderboard-section__card-value {
    margin-top: calc(28 / 768 * 100vw);
    font-family: "figTree";
    font-size: calc(128 / 768 * 100vw);
  }

  .leaderboard-section__card-foot {
    gap: calc(24 / 768 * 100vw);
  }

  .leaderboard-section__card-foot-label {
    font-family: "figTree";
    font-size: calc(24 / 768 * 100vw);
  }

  .leaderboard-section__card-unit,
  .leaderboard-section__card-currency {
    font-family: "figTree";
    font-size: calc(32 / 768 * 100vw);
  }
}

@media (max-width: 430px) {
  .leaderboard-section__inner {
    padding-top: calc(40 / 430 * 100vw);
    padding-bottom: calc(64 / 430 * 100vw);
  }

  .leaderboard-section__canvas {
    padding-bottom: calc(32 / 430 * 100vw);
  }

  .leaderboard-section__title {
    font-family: "figTree";
    font-size: calc(32 / 430 * 100vw);
  }

  .leaderboard-section__desc {
    margin-top: calc(24 / 430 * 100vw);
    max-width: 100%;
    font-family: "figTree";
    font-size: calc(18 / 430 * 100vw);
  }

  .leaderboard-section__visual {
    height: calc(360 / 430 * 100vw);
    margin-top: calc(16 / 430 * 100vw);
  }

  .leaderboard-section__rank-list {
    margin-top: calc(24 / 430 * 100vw);
  }

  .leaderboard-section__rank-label,
  .leaderboard-section__rank-name,
  .leaderboard-section__badge-aside-label {
    font-family: "figTree";
    font-size: calc(18 / 430 * 100vw);
  }

  .leaderboard-section__rank-line {
    width: 100%;
    margin-top: calc(8 / 430 * 100vw);
  }

  .leaderboard-section__rank-items {
    gap: calc(16 / 430 * 100vw);
    margin-top: calc(32 / 430 * 100vw);
  }

  .leaderboard-section__rank-item {
    grid-template-columns: calc(72 / 430 * 100vw) minmax(0, 1fr);
    column-gap: calc(12 / 430 * 100vw);
  }

  .leaderboard-section__rank-item+.leaderboard-section__rank-item {
    margin-top: calc(16 / 430 * 100vw);
  }

  .leaderboard-section__rank-item--dim-61 {
    margin-top: calc(14 / 430 * 100vw);
  }

  .leaderboard-section__rank-avatar {
    max-width: calc(72 / 430 * 100vw);
  }

  .leaderboard-section__badge-aside-label {
    margin-top: calc(16 / 430 * 100vw);
  }

  .leaderboard-section__badge {
    width: calc(160 / 430 * 100vw);
    margin-top: calc(12 / 430 * 100vw);
  }

  .leaderboard-section__badge-number {
    font-family: "figTree";
    font-size: calc(88 / 430 * 100vw);
  }

  .leaderboard-section__card {
    margin-top: calc(-56 / 874 * 100%);
    min-height: auto;
    padding: calc(40 / 430 * 100vw) calc(16 / 430 * 100vw) calc(32 / 430 * 100vw);
    row-gap: calc(24 / 430 * 100vw);
  }

  .leaderboard-section__card-label {
    font-family: "figTree";
    font-size: calc(24 / 430 * 100vw);
  }

  .leaderboard-section__card-value {
    margin-top: calc(16 / 430 * 100vw);
    font-family: "figTree";
    font-size: calc(80 / 430 * 100vw);
  }

  .leaderboard-section__card-foot {
    flex-direction: column;
    align-items: center;
    gap: calc(6 / 430 * 100vw);
    margin-top: calc(16 / 430 * 100vw);
  }

  .leaderboard-section__card-foot-label {
    font-family: "figTree";
    font-size: calc(16 / 430 * 100vw);
    line-height: 1.3;
    text-align: center;
  }

  .leaderboard-section__card-unit,
  .leaderboard-section__card-currency {
    font-family: "figTree";
    font-size: calc(24 / 430 * 100vw);
  }
}

/* ==========================================================================
   Section 12: AI Voice Assistant
   Figma: 183:559 (926×1027)
   ========================================================================== */

.voice-section {
  width: 100%;
  background-color: #ffffff;
}

.voice-section__inner {
  width: 100%;
  max-width: 926px;
  margin-inline: auto;
  padding-top: 1px;
  padding-bottom: clamp(64px, 6.77vw, 130px);
  padding-inline: var(--space-container-x);
}

.voice-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "figTree";
  text-align: center;
}

.voice-section__title {
  margin: 0;
  font-family: "figTree";
  font-size: min(32px, calc(32 / 926 * 100vw));
  font-weight: 500;
  line-height: normal;
  color: #000000;
}

.voice-section__stage {
  position: relative;
  width: 100%;
  margin-top: min(63px, calc(63 / 926 * 100vw));
}

.voice-section__stage::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.voice-section__command-bar {
  position: absolute;
  top: calc(18 / 926 * 100%);
  left: calc(73 / 926 * 100%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(810 / 926 * 100%);
  height: calc(99 / 926 * 100%);
  padding-inline: calc(65 / 810 * 100%) calc(41 / 810 * 100%);
  background-color: rgba(217, 217, 217, 0.39);
  border-radius: 200px;
  box-shadow: -23px 33px 83px -14px rgba(0, 0, 0, 0.25);
}

.voice-section__command-text {
  margin: 0;
  font-family: "figTree";
  font-size: min(40px, calc(40 / 926 * 100vw));
  font-weight: 500;
  line-height: normal;
  color: #9e9e9e;
  white-space: nowrap;
}

.voice-section__waveform-icon {
  flex-shrink: 0;
  width: calc(64 / 810 * 100%);
  max-width: 64px;
  height: auto;
}

.voice-section__hello-bubble {
  position: absolute;
  top: calc(102 / 926 * 100%);
  left: calc(504 / 926 * 100%);
  z-index: 4;
  width: calc(307 / 926 * 100%);
}

.voice-section__hello-shape {
  display: block;
  width: 100%;
  height: auto;
}

.voice-section__hello-text {
  position: absolute;
  top: 26%;
  left: 50%;
  margin: 0;
  font-family: "figTree";
  font-size: min(40px, calc(40 / 926 * 100vw));
  font-weight: 500;
  line-height: normal;
  color: #9e9e9e;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.voice-section__orb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.voice-section__orb-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.voice-section__character-frame {
  position: absolute;
  top: calc(187 / 926 * 100%);
  left: calc(135 / 926 * 100%);
  width: calc(716 / 926 * 100%);
  height: calc(513 / 926 * 100%);
  overflow: hidden;
  transform: rotate(-1.75deg);
}

.voice-section__orb-character {
  position: absolute;
  top: -47.8%;
  left: -21.99%;
  width: 143.98%;
  height: 205.33%;
  max-width: none;
  object-fit: cover;
}

.voice-section__orb-shadow {
  position: absolute;
  top: calc(604 / 926 * 100%);
  left: calc(90 / 926 * 100%);
  width: calc(796 / 926 * 100%);
  height: auto;
}

/* --------------------------------------------------------------------------
   Section 12: Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1440px) {
  .voice-section__title {
    font-family: "figTree";
    font-size: calc(32 / 1440 * 100vw);
  }

  .voice-section__command-text,
  .voice-section__hello-text {
    font-family: "figTree";
    font-size: calc(40 / 1440 * 100vw);
  }
}

@media (max-width: 767px) {
  .voice-section__inner {
    padding-top: calc(48 / 768 * 100vw);
    padding-bottom: calc(80 / 768 * 100vw);
  }

  .voice-section__title {
    font-family: "figTree";
    font-size: calc(32 / 768 * 100vw);
  }

  .voice-section__stage {
    margin-top: calc(40 / 768 * 100vw);
  }

  .voice-section__command-text,
  .voice-section__hello-text {
    font-family: "figTree";
    font-size: calc(32 / 768 * 100vw);
  }

  .voice-section__command-bar {
    padding-inline: calc(24 / 768 * 100vw);
  }

  .voice-section__waveform-icon {
    width: calc(48 / 768 * 100vw);
    max-width: 48px;
  }
}

@media (max-width: 430px) {
  .voice-section__inner {
    padding-top: calc(32 / 430 * 100vw);
    padding-bottom: calc(64 / 430 * 100vw);
  }

  .voice-section__title {
    font-family: "figTree";
    font-size: calc(28 / 430 * 100vw);
  }

  .voice-section__stage {
    margin-top: calc(32 / 430 * 100vw);
  }

  .voice-section__command-text,
  .voice-section__hello-text {
    font-family: "figTree";
    font-size: calc(24 / 430 * 100vw);
  }

  .voice-section__command-bar {
    padding-inline: calc(16 / 430 * 100vw);
  }

  .voice-section__waveform-icon {
    width: calc(40 / 430 * 100vw);
    max-width: 40px;
  }
}

/* ==========================================================================
   Section 13: iGarden Ecosystem
   Figma: 183:809 (2123×1840)
   ========================================================================== */

.ecosystem-section {
  width: 100%;
  background-color: #ffffff;
}

.ecosystem-section__stage-wrap {
  width: 100%;
  padding-top: clamp(64px, 6.77vw, 130px);
  padding-bottom: clamp(64px, 6.77vw, 130px);
}

.ecosystem-section__stage {
  position: relative;
  width: 100%;
  max-width: 2123px;
  margin-inline: auto;
}

.ecosystem-section__stage::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: calc(1840 / 2123 * 100%);
}

.ecosystem-section__header {
  position: absolute;
  top: calc(38 / 1840 * 100%);
  right: 0;
  left: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: var(--space-container-x);
  font-family: "figTree";
  text-align: center;
}

.ecosystem-section__title {
  margin: 0;
  font-family: "figTree";
  font-size: min(48px, calc(48 / 2123 * 100vw));
  font-weight: 700;
  line-height: normal;
  color: #000000;
}

.ecosystem-section__desc {
  margin: calc(10 / 1840 * 100%) 0 0;
  max-width: min(909px, calc(909 / 2123 * 100%));
  font-family: "figTree";
  font-size: min(20px, calc(20 / 2123 * 100vw));
  font-weight: 500;
  line-height: normal;
  color: #000000;
}

.ecosystem-section__hero-frame {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: calc(1293 / 1840 * 100%);
  overflow: hidden;
}

.ecosystem-section__hero-bg {
  position: absolute;
  top: -0.02%;
  left: 0;
  width: 100%;
  height: 109.53%;
  max-width: none;
  object-fit: cover;
}

.ecosystem-section__phone {
  position: absolute;
  top: calc(1106 / 1840 * 100%);
  left: calc(854 / 2123 * 100%);
  z-index: 3;
  display: block;
  width: calc(539 / 2123 * 100%);
  height: auto;
}

.ecosystem-section__feature-title {
  position: absolute;
  z-index: 2;
  margin: 0;
  font-family: "figTree";
  font-size: min(32px, calc(32 / 2123 * 100vw));
  font-weight: 500;
  line-height: normal;
  color: #000000;
}

.ecosystem-section__feature-title--app {
  top: calc(1395 / 1840 * 100%);
  left: calc(417 / 2123 * 100%);
}

.ecosystem-section__feature-title--voice {
  top: calc(1561 / 1840 * 100%);
  left: calc(417 / 2123 * 100%);
}

.ecosystem-section__feature-title--iot {
  top: calc(1464 / 1840 * 100%);
  left: calc(1458 / 2123 * 100%);
}

.ecosystem-section__feature-sup {
  font-family: "figTree";
  font-size: 0.62em;
  font-weight: 500;
  line-height: 0;
  vertical-align: super;
}

.ecosystem-section__feature-sub,
.ecosystem-section__feature-desc {
  position: absolute;
  z-index: 2;
  margin: 0;
  font-family: "figTree";
  font-size: min(20px, calc(20 / 2123 * 100vw));
  font-weight: 500;
  line-height: normal;
  color: #000000;
}

.ecosystem-section__feature-sub--app {
  top: calc(1447 / 1840 * 100%);
  left: calc(417 / 2123 * 100%);
  font-family: "figTree";
  white-space: nowrap;
}

.ecosystem-section__feature-desc--voice {
  top: calc(1619 / 1840 * 100%);
  left: calc(417 / 2123 * 100%);
  width: calc(372 / 2123 * 100%);
}

.ecosystem-section__feature-desc--iot {
  top: calc(1526 / 1840 * 100%);
  left: calc(1458 / 2123 * 100%);
  width: calc(396 / 2123 * 100%);
}

.ecosystem-section__divider {
  position: absolute;
  top: calc(1516 / 1840 * 100%);
  left: calc(393 / 2123 * 100%);
  z-index: 3;
  display: block;
  width: calc(545 / 2123 * 100%);
  height: auto;
}

/* --------------------------------------------------------------------------
   Section 13: Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1440px) {
  .ecosystem-section__title {
    font-family: "figTree";
    font-size: calc(48 / 1440 * 100vw);
  }

  .ecosystem-section__desc,
  .ecosystem-section__feature-sub,
  .ecosystem-section__feature-desc {
    font-family: "figTree";
    font-size: calc(20 / 1440 * 100vw);
  }

  .ecosystem-section__feature-title {
    font-family: "figTree";
    font-size: calc(32 / 1440 * 100vw);
  }
}

@media (max-width: 767px) {
  .ecosystem-section__stage-wrap {
    padding-top: calc(48 / 768 * 100vw);
    padding-bottom: calc(80 / 768 * 100vw);
  }

  .ecosystem-section__stage::before {
    padding-bottom: 0;
  }

  .ecosystem-section__stage {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 768 * 100vw);
  }

  .ecosystem-section__header,
  .ecosystem-section__hero-frame,
  .ecosystem-section__phone,
  .ecosystem-section__feature-title,
  .ecosystem-section__feature-sub,
  .ecosystem-section__feature-desc,
  .ecosystem-section__divider {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: none;
  }

  .ecosystem-section__header {
    order: 1;
  }

  .ecosystem-section__hero-frame {
    order: 2;
    height: calc(400 / 768 * 100vw);
    border-radius: calc(16 / 768 * 100vw);
  }

  .ecosystem-section__phone {
    order: 3;
    width: min(320px, 72%);
    margin-inline: auto;
  }

  .ecosystem-section__feature-title--app,
  .ecosystem-section__feature-sub--app,
  .ecosystem-section__divider,
  .ecosystem-section__feature-title--voice,
  .ecosystem-section__feature-desc--voice {
    order: 4;
  }

  .ecosystem-section__feature-title--iot,
  .ecosystem-section__feature-desc--iot {
    order: 5;
  }

  .ecosystem-section__feature-title,
  .ecosystem-section__feature-sub,
  .ecosystem-section__feature-desc {
    padding-inline: var(--space-container-x);
    font-family: "figTree";
    text-align: left;
  }

  .ecosystem-section__divider {
    margin-inline: var(--space-container-x);
  }

  .ecosystem-section__feature-sub--app {
    font-family: "figTree";
    white-space: normal;
  }

  .ecosystem-section__divider {
    width: min(541px, 100%);
  }

  .ecosystem-section__title {
    font-family: "figTree";
    font-size: calc(36 / 768 * 100vw);
  }

  .ecosystem-section__desc {
    margin-top: calc(16 / 768 * 100vw);
    font-family: "figTree";
    font-size: calc(18 / 768 * 100vw);
  }

  .ecosystem-section__feature-title {
    font-family: "figTree";
    font-size: calc(28 / 768 * 100vw);
  }

  .ecosystem-section__feature-sub,
  .ecosystem-section__feature-desc {
    font-family: "figTree";
    font-size: calc(18 / 768 * 100vw);
  }
}

@media (max-width: 430px) {
  .ecosystem-section__stage-wrap {
    padding-top: calc(32 / 430 * 100vw);
    padding-bottom: calc(64 / 430 * 100vw);
  }

  .ecosystem-section__hero-frame {
    height: calc(280 / 430 * 100vw);
  }

  .ecosystem-section__phone {
    width: min(260px, 78%);
  }

  .ecosystem-section__title {
    font-family: "figTree";
    font-size: calc(28 / 430 * 100vw);
  }

  .ecosystem-section__desc {
    font-family: "figTree";
    font-size: calc(16 / 430 * 100vw);
  }

  .ecosystem-section__feature-title {
    font-family: "figTree";
    font-size: calc(24 / 430 * 100vw);
  }

  .ecosystem-section__feature-sub,
  .ecosystem-section__feature-desc {
    font-family: "figTree";
    font-size: calc(16 / 430 * 100vw);
  }
}

/* ==========================================================================
   Section 14: Built to Last / Warranty
   Figma: 183:825 (1416×859)
   ========================================================================== */

.warranty-section {
  width: 100%;
  background-color: #ffffff;
}

.warranty-section__stage-wrap {
  width: 100%;
  padding-top: clamp(64px, 6.77vw, 130px);
  padding-bottom: clamp(64px, 6.77vw, 130px);
  padding-inline: var(--space-container-x);
}

.warranty-section__stage {
  position: relative;
  width: 100%;
  max-width: 1416px;
  margin-inline: auto;
}

.warranty-section__stage::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: calc(859 / 1416 * 100%);
}

.warranty-section__title {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: max-content;
  max-width: 100%;
  margin: 0;
  font-family: "figTree";
  font-size: min(48px, calc(48 / 1416 * 100vw));
  font-weight: 700;
  line-height: normal;
  color: #000000;
  text-align: center;
  transform: translateX(-50%);
}

.warranty-section__visual {
  position: absolute;
  top: calc(17 / 859 * 100%);
  left: 0;
  z-index: 1;
  width: 100%;
  height: calc(770 / 859 * 100%);
  margin: 0;
}

.warranty-section__visual-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}



.warranty-section__footnote {
  position: absolute;
  top: calc(803 / 859 * 100%);
  left: 50%;
  z-index: 2;
  width: min(994px, 100%);
  margin: 0;
  font-family: "figTree";
  font-size: min(20px, calc(20 / 1416 * 100vw));
  font-weight: 500;
  line-height: normal;
  color: #000000;
  text-align: center;
  transform: translateX(-50%);
}

/* --------------------------------------------------------------------------
   Section 14: Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1440px) {
  .warranty-section__title {
    font-family: "figTree";
    font-size: calc(48 / 1440 * 100vw);
  }

  .warranty-section__footnote {
    font-family: "figTree";
    font-size: calc(20 / 1440 * 100vw);
  }
}

@media (max-width: 767px) {
  .warranty-section__stage-wrap {
    padding-top: calc(48 / 768 * 100vw);
    padding-bottom: calc(80 / 768 * 100vw);
  }

  .warranty-section__stage::before {
    padding-bottom: 0;
  }

  .warranty-section__stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(20 / 768 * 100vw);
  }

  .warranty-section__title,
  .warranty-section__visual,
  .warranty-section__footnote {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    transform: none;
  }

  .warranty-section__visual {
    height: auto;
    aspect-ratio: 1416 / 770;
  }

  .warranty-section__title {
    font-family: "figTree";
    font-size: calc(36 / 768 * 100vw);
    text-align: center;
  }



  .warranty-section__footnote {
    font-family: "figTree";
    font-size: calc(18 / 768 * 100vw);
    text-align: center;
  }
}

@media (max-width: 430px) {
  .warranty-section__stage-wrap {
    padding-top: calc(32 / 430 * 100vw);
    padding-bottom: calc(64 / 430 * 100vw);
  }

  .warranty-section__title {
    font-family: "figTree";
    font-size: calc(28 / 430 * 100vw);
  }


  .warranty-section__footnote {
    font-family: "figTree";
    font-size: calc(16 / 430 * 100vw);
  }
}

/* ==========================================================================
   Section 15: Testimonials / Trusted By
   Figma: 183:830 Frame 47 (1920×1080) · Group 68: 183:839 (1557.5×791)
   ========================================================================== */

.testimonials-section {
  width: 100%;
  background-color: #ffffff;
}

.testimonials-section__stage-wrap {
  width: 100%;
  padding-top: clamp(64px, 6.1vw, 117px);
  padding-bottom: clamp(64px, 6.1vw, 117px);
  padding-inline: var(--space-container-x);
}

.testimonials-section__stage {
  position: relative;
  width: 100%;
  max-width: 1557.5px;
  margin-inline: auto;
}

.testimonials-section__stage::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: calc(791 / 1557.5 * 100%);
}

.testimonials-section__title {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0;
  transform: translateX(-50%);
  font-family: "figTree";
  font-size: min(48px, calc(48 / 1557.5 * 100vw));
  font-weight: 700;
  line-height: normal;
  color: #000000;
  text-align: center;
  white-space: nowrap;
}

.testimonials-section__since {
  position: absolute;
  top: calc(108 / 791 * 100%);
  left: 50%;
  z-index: 1;
  width: max-content;
  max-width: calc(100% - 32px);
  height: auto;
  margin: 0;
  transform: translateX(-50%);
  font-family: "figTree";
  font-size: min(20px, calc(20 / 1557.5 * 100vw));
  font-weight: 500;
  line-height: normal;
  color: #000000;
  text-align: center;
}

.testimonials-section__cards {
  position: absolute;
  top: calc(204 / 791 * 100%);
  left: 0;
  z-index: 3;
  width: 100%;
  height: calc(502 / 791 * 100%);
}

.testimonials-section__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.testimonials-section__viewport:hover {
  cursor: grab;
}

.testimonials-section__viewport.is-grabbing {
  cursor: grabbing;
  user-select: none;
}

.testimonials-section__track {
  --testimonials-gap: calc(25 / 1557.5 * 100%);
  --testimonials-slides-per-view: 3;
  display: flex;
  gap: var(--testimonials-gap);
  height: 100%;
  will-change: transform;
}

.testimonials-section__card {
  position: relative;
  flex: 0 0 calc((100% - var(--testimonials-gap) * (var(--testimonials-slides-per-view) - 1)) / var(--testimonials-slides-per-view));
  overflow: hidden;
  height: 100%;
  border-radius: min(24px, calc(24 / 1557.5 * 100vw));
}

.testimonials-section__card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonials-section__card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(45 / 502 * 100%) calc(45 / 502 * 100%) calc(46 / 502 * 100%);
}

.testimonials-section__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(12 / 502 * 100%);
}

.testimonials-section__card-name {
  margin: 0;
  font-family: "figTree";
  font-size: min(36px, calc(36 / 1557.5 * 100vw));
  font-weight: 500;
  line-height: normal;
  color: #ffffff;
  text-align: center;
}

.testimonials-section__card-name--solo {
  width: fit-content;
}

.testimonials-section__card-flag {
  display: block;
  flex-shrink: 0;
  width: calc(39 / 502 * 100%);
  height: auto;
  aspect-ratio: 39 / 27;
  object-fit: cover;
}

.testimonials-section__card-quote {
  margin: calc(14 / 502 * 100%) 0 0;
  font-family: "figTree";
  font-size: min(20px, calc(20 / 1557.5 * 100vw));
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
}

.testimonials-section__indicator {
  position: absolute;
  top: calc(790.5 / 791 * 100%);
  left: 0;
  z-index: 4;
  width: calc(290 / 1557.5 * 100%);
  height: 4px;
}

.testimonials-section__indicator-track {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background-color: #c7c7c7;
}

.testimonials-section__indicator-active {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(80 / 290 * 100%);
  height: 4px;
  border-radius: 2px;
  background-color: #000000;
  transition: left 0.6s ease;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Section 15: Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1440px) {
  .testimonials-section__title {
    font-family: "figTree";
    font-size: calc(48 / 1440 * 100vw);
  }

  .testimonials-section__since {
    font-family: "figTree";
    font-size: calc(20 / 1440 * 100vw);
  }

  .testimonials-section__card-name {
    font-family: "figTree";
    font-size: calc(36 / 1440 * 100vw);
  }

  .testimonials-section__card-quote {
    font-family: "figTree";
    font-size: calc(20 / 1440 * 100vw);
  }
}

@media (max-width: 767px) {
  .testimonials-section__stage-wrap {
    padding-top: calc(48 / 768 * 100vw);
    padding-bottom: calc(80 / 768 * 100vw);
  }

  .testimonials-section__stage::before {
    padding-bottom: 0;
  }

  .testimonials-section__stage {
    display: flex;
    flex-direction: column;
    gap: calc(24 / 768 * 100vw);
  }

  .testimonials-section__title,
  .testimonials-section__since,
  .testimonials-section__cards,
  .testimonials-section__indicator {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
  }

  .testimonials-section__title {
    font-family: "figTree";
    font-size: calc(36 / 768 * 100vw);
    text-align: center;
    white-space: normal;
  }

  .testimonials-section__since {
    font-family: "figTree";
    font-size: calc(20 / 768 * 100vw);
    text-align: center;
  }

  .testimonials-section__cards {
    height: auto;
    padding-bottom: calc(4 / 768 * 100vw);
  }

  .testimonials-section__viewport {
    height: auto;
  }

  .testimonials-section__track {
    --testimonials-gap: calc(16 / 768 * 100vw);
    --testimonials-slides-per-view: 1;
    height: auto;
  }

  .testimonials-section__card {
    flex: 0 0 calc(320 / 768 * 100vw);
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: calc(20 / 768 * 100vw);
  }

  .testimonials-section__card-content {
    padding: calc(24 / 768 * 100vw);
  }

  .testimonials-section__card-name {
    font-family: "figTree";
    font-size: calc(28 / 768 * 100vw);
  }

  .testimonials-section__card-flag {
    width: calc(32 / 768 * 100vw);
  }

  .testimonials-section__card-quote {
    margin-top: calc(12 / 768 * 100vw);
    font-family: "figTree";
    font-size: calc(16 / 768 * 100vw);
    line-height: 1.2;
  }

  .testimonials-section__indicator {
    width: calc(200 / 768 * 100vw);
    height: 3px;
    margin-top: calc(8 / 768 * 100vw);
  }

  .testimonials-section__indicator-track,
  .testimonials-section__indicator-active {
    height: 3px;
  }
}

@media (max-width: 430px) {
  .testimonials-section__stage-wrap {
    padding-top: calc(32 / 430 * 100vw);
    padding-bottom: calc(64 / 430 * 100vw);
  }

  .testimonials-section__title {
    font-family: "figTree";
    font-size: calc(28 / 430 * 100vw);
  }

  .testimonials-section__since {
    font-family: "figTree";
    font-size: calc(18 / 430 * 100vw);
  }

  .testimonials-section__card {
    flex-basis: calc(280 / 430 * 100vw);
    border-radius: calc(16 / 430 * 100vw);
  }

  .testimonials-section__card-name {
    font-family: "figTree";
    font-size: calc(24 / 430 * 100vw);
  }

  .testimonials-section__card-quote {
    font-family: "figTree";
    font-size: calc(14 / 430 * 100vw);
  }

  .testimonials-section__indicator {
    width: calc(160 / 430 * 100vw);
  }
}

/* ==========================================================================
   Section 16: Remarks
   Figma: 183:855 Frame 48 (1920×300) · Group 67: 183:856 (1223×99)
   ========================================================================== */

.remarks-section {
  width: 100%;
  background-color: #f5f5f7;
}

.remarks-section__inner {
  width: 100%;
  max-width: 1223px;
  margin-inline: auto;
  padding-top: min(68px, calc(68 / 1920 * 100vw));
  padding-bottom: min(68px, calc(68 / 1920 * 100vw));
  padding-inline: var(--space-container-x);
}

.remarks-section__title {
  margin: 0;
  font-family: "figTree";
  font-size: min(16px, calc(16 / 1920 * 100vw));
  font-weight: 500;
  line-height: normal;
  color: #9e9e9e;
}

.remarks-section__list {
  margin: min(24px, calc(24 / 1920 * 100vw)) 0 0;
}

.remarks-section__item {
  margin: 0 0 5px;
  font-family: "figTree";
  font-size: min(16px, calc(16 / 1920 * 100vw));
  font-weight: 400;
  line-height: normal;
  color: #9e9e9e;
}

.remarks-section__item:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Section 16: Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1440px) {

  .remarks-section__title,
  .remarks-section__item {
    font-family: "figTree";
    font-size: calc(16 / 1440 * 100vw);
  }
}

@media (max-width: 767px) {
  .remarks-section__inner {
    padding-top: calc(40 / 768 * 100vw);
    padding-bottom: calc(64 / 768 * 100vw);
  }

  .remarks-section__list {
    margin-top: calc(16 / 768 * 100vw);
  }

  .remarks-section__title,
  .remarks-section__item {
    font-family: "figTree";
    font-size: calc(14 / 768 * 100vw);
  }

  .remarks-section__item {
    margin-bottom: calc(4 / 768 * 100vw);
  }
}

@media (max-width: 430px) {
  .remarks-section__inner {
    padding-top: calc(32 / 430 * 100vw);
    padding-bottom: calc(48 / 430 * 100vw);
  }

  .remarks-section__title,
  .remarks-section__item {
    font-family: "figTree";
    font-size: calc(13 / 430 * 100vw);
  }
}

/* 移动端调整 */
@media (min-width: 430px) {
  .mobile-only {
    display: none;
  }
}

@media (max-width: 430px) {
  .mobile-only {
    display: block;
  }

  .hero-section__inner {
    padding-bottom: var(--hero-content-top);
    background: linear-gradient(180deg, rgba(28, 28, 31, 0.00) 0%, rgba(28, 28, 31, 0.20) 51.22%);
    backdrop-filter: blur(2px);
  }

  .pain-points-section__grid {
    grid-template-columns: 1fr 1fr;
  }

  .pain-points-section__grid .pain-points-card:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}