/* ==========================================================================
   Fonts
   ========================================================================== */

   @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;
  }

/* ==========================================================================
   Variables
   ========================================================================== */

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-primary: #0071e3;

  --container-max: 1200px;
  --safe-padding-inline: clamp(20px, 4vw, 64px);

  --font-family: "figTree";

  --text-hero-title: clamp(28px, 3.33vw, 64px);
  --text-hero-subtitle: clamp(16px, 1.67vw, 32px);
  --text-button: clamp(14px, 0.83vw, 16px);

  --leading-hero-title: 1;
  --leading-hero-subtitle: 1.2;

  --tracking-hero-title: -0.02em;
  --tracking-hero-subtitle: -0.01em;
  --tracking-button: -0.02em;

  --color-gray-bg: #f5f5f7;
  --color-gray-text: #999999;

  --text-feature-card-title: clamp(20px, 1.667vw, 32px);
  --text-feature-body: clamp(12px, 1.042vw, 20px);

  --color-heading: #171717;
  --text-section-title: clamp(28px, 3.33vw, 64px);
  --text-section-subtitle: clamp(16px, 1.67vw, 32px);
  --tracking-section-title: -0.02em;

  --color-text-primary: #333333;
  --text-nav-brand: clamp(20px, 1.25vw, 24px);
  --text-nav-link: clamp(14px, 0.83vw, 16px);
  --text-nav-button: clamp(14px, 0.83vw, 16px);

  --subnav-height: 74px;
  --header-sticky-offset: 50px;
  --header-height: var(--subnav-height);
  --header-scroll-offset: calc(var(--header-sticky-offset) + var(--header-height));
  --subnav-offset-top: var(--header-sticky-offset);
  --subnav-scroll-offset: var(--header-scroll-offset);
  --container-padding: clamp(20px, 5vw, 120px);
}

/* ==========================================================================
   Global
   ========================================================================== */

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

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  /* font-family: "figTree"; */
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a {
  font-family: "figTree";
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
}

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

button {
  font-family: "figTree";
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

/* ==========================================================================
   Section 0 — Product Subnav (Figma 311:13)
   ========================================================================== */

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

#silence-section,
#energy-saving-section,
#ai-agent-section,
#r290-section,
#other-features-section {
  scroll-margin-top: var(--header-scroll-offset);
}

.subnav__inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  min-height: var(--subnav-height);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  gap: clamp(16px, 2vw, 32px);
}

.subnav__brand {
  font-family: "figTree";
  flex-shrink: 0;
  font-size: var(--text-nav-brand);
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-primary);
}

.subnav__nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.subnav__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 40px);
}

.subnav__link {
  font-family: "figTree";
  position: relative;
  display: inline-block;
  font-size: var(--text-nav-link);
  font-weight: 600;
  line-height: 1;
  color: var(--color-text-primary);
  white-space: nowrap;
  padding-block: 4px;
}

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

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

.subnav__cta:hover {
  opacity: 0.85;
}

.subnav__cta--menu {
  display: none;
}

.subnav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-left: auto;
  color: var(--color-text-primary);
}

.subnav__toggle-icon--close {
  display: none;
}

.subnav.is-menu-open .subnav__toggle-icon--open {
  display: none;
}

.subnav.is-menu-open .subnav__toggle-icon--close {
  display: block;
}

@media (max-width: 1440px) {
  .subnav__links {
    gap: clamp(16px, 2vw, 32px);
  }
}

@media (max-width: 767px) {
  .subnav__toggle {
    display: inline-flex;
  }

  .subnav__cta--desktop {
    display: none;
  }

  .subnav__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px var(--container-padding) 32px;
    background-color: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .subnav.is-menu-open .subnav__nav {
    display: flex;
  }

  .subnav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .subnav__links li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .subnav__link {
    display: block;
    width: 100%;
    padding: 16px 0;
    white-space: normal;
  }

  .subnav__link.is-active::after {
    left: 0;
    bottom: 12px;
    transform: none;
  }

  .subnav__cta--menu {
    display: inline-flex;
    width: 100%;
    margin-top: 24px;
    height: 48px;
  }
}

@media (max-width: 430px) {
  .subnav__brand {
    font-size: 20px;
  }

  .subnav__link {
    font-size: 14px;
  }

  .subnav__cta--menu {
    font-size: 14px;
  }
}

/* ==========================================================================
   Section 1 — Hero Banner (Figma 163:28)
   ========================================================================== */

/* Figma 163:28 @1920 — frame 1080px tall; bg 1186px with top -8.64px offset */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-white);
  --hero-figma-height: clamp(520px, 56.25vw, 1080px);
  --hero-viewport-height: calc(100vh - var(--subnav-scroll-offset));
  height: min(var(--hero-figma-height), var(--hero-viewport-height));
  max-height: var(--hero-viewport-height);
}

/* absolute reason: full-width decorative background layer per layout plan */
.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__background img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  /* Figma bg anchors pool/product at bottom; top has extra sky crop */
  object-position: 90% center;
}

/* Figma 163:28 @1920 — title top ≈115px, subtitle gap 12px, buttons top 255px */
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--safe-padding-inline);
  padding-top: clamp(40px, 6.008vw, 115.36px);
  padding-bottom: clamp(16px, 2vw, 32px);
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hero__content {
  font-family: "figTree";
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1049px;
}

.hero__title {
  font-family: "figTree";
  margin: 0;
  font-size: var(--text-hero-title);
  font-weight: 600;
  line-height: var(--leading-hero-title);
  letter-spacing: var(--tracking-hero-title);
  color: var(--color-black);
}

.hero__subtitle {
  font-family: "figTree";
  margin: clamp(8px, 0.625vw, 12px) 0 0;
  font-size: var(--text-hero-subtitle);
  font-weight: 500;
  line-height: var(--leading-hero-subtitle);
  letter-spacing: var(--tracking-hero-subtitle);
  color: var(--color-black);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.667vw, 32px);
  margin-top: clamp(12px, 1.333vw, 25.6px);
}

.hero__btn {
  font-family: "figTree";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 20px clamp(28px, 2.5vw, 48px);
  border-radius: 100px;
  font-size: var(--text-button);
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--tracking-button);
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.hero__btn:hover {
  opacity: 0.85;
}

.hero__btn--primary {
  font-family: "figTree";
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-white);
}

.hero__btn--secondary {
  font-family: "figTree";
  background-color: transparent;
  border: 3px solid var(--color-primary);
  color: var(--color-primary);
}

.hero__btn-icon {
  flex-shrink: 0;
  width: 14px;
  height: 16px;
}

@media (max-width: 767px) {
  .hero {
    --hero-figma-height: clamp(560px, 85svh, 900px);
    --hero-viewport-height: calc(100svh - var(--subnav-scroll-offset));
    height: min(var(--hero-figma-height), var(--hero-viewport-height));
    max-height: var(--hero-viewport-height);
  }

  .hero__inner {
    padding-top: clamp(32px, 10vw, 72px);
    padding-bottom: clamp(12px, 4vw, 24px);
  }

  .hero__title {
    max-width: 100%;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__btn {
    min-height: 48px;
    padding-block: 14px;
  }
}

/* Short viewport: compress top spacing, keep image bottom-anchored */
@media (max-height: 700px) {
  .hero__inner {
    padding-top: clamp(24px, 5vh, 64px);
  }

  .hero__actions {
    margin-top: clamp(8px, 1.5vh, 20px);
  }
}

@media (max-width: 430px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .hero__btn {
    width: 100%;
  }
  .hero__background img{
    object-position: 49% 50%;
  }
}

/* ==========================================================================
   Section 2 — Features Overview (Figma 163:36)
   ========================================================================== */

.features {
  width: 100%;
  background-color: var(--color-gray-bg);
}

.features__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--safe-padding-inline);
  padding-top: clamp(40px, 5.22vw, 100.21px);
  padding-bottom: clamp(48px, 5.68vw, 109px);
}

.features__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.625vw, 12px);
}

.features__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.042vw, 20px);
}

.features-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--color-white);
}

/* absolute reason: full-card anchor overlay for in-page navigation */
.features-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  text-decoration: none;
  cursor: pointer;
}

.features-card__link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -4px;
}

.features-card--large {
  width: 100%;
  aspect-ratio: 1204 / 407;
}

.features-card--small {
  width: 100%;
  aspect-ratio: 590 / 400;
}

.features-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.features-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* absolute reason: Figma layers two scene images with offset crop in the energy card */
.features-card__img--back {
  position: absolute;
  width: 137.33%;
  height: 113.94%;
  left: -10.45%;
  top: -14.02%;
  max-width: none;
}

.features-card__img--front {
  position: absolute;
  width: 138.52%;
  height: 114.93%;
  left: -7.6%;
  top: -11.59%;
  max-width: none;
  z-index: 1;
}

.features-card--large .features-card__img {
  width: 100%;
  height: 166.4%;
  top: -24.36%;
  left: -0.05%;
  position: absolute;
  max-width: none;
}

.features-card--ai .features-card__img {
  width: 168.56%;
  height: 126%;
  left: -8.67%;
  top: -25.94%;
  position: absolute;
  max-width: none;
}

/* absolute reason: text and action overlay on top of card media per Figma */
.features-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(20px, 1.77vw, 34px);
  pointer-events: none;
}

.features-card__text {
  pointer-events: none;
}

.features-card__title {
  font-family: "figTree";
  margin: 0;
  font-size: var(--text-feature-card-title);
  font-weight: 700;
  line-height: normal;
  color: var(--color-white);
}

.features-card__desc {
  font-family: "figTree";
  margin: 8px 0 0 0;
  font-size: var(--text-feature-body);
  font-weight: 500;
  line-height: normal;
  color: var(--color-white);
}

.features-card__action {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  pointer-events: none;
}

.features-card__action svg {
  display: block;
}

.features-card__chevron {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -35%);
  width: 16px;
  height: 8px;
}

.features-card--ai .features-card__action path {
  transform-origin: center;
}

.features__summary {
  font-family: "figTree";
  margin-top: clamp(20px, 1.458vw, 28px);
  text-align: center;
  font-size: var(--text-feature-body);
  font-weight: 500;
  line-height: normal;
  color: var(--color-gray-text);
}

.features__summary p {
  margin: 0;
}

.features__summary strong {
  font-family: "figTree";
  font-weight: 500;
  color: var(--color-black);
}

@media (max-width: 767px) {
  .features__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .features-card__overlay {
    flex-direction: column;
    align-items: flex-start;
  }

  .features-card__action {
    align-self: flex-end;
  }
}

/* ==========================================================================
   Section 3 — 30X Silence (Figma 163:59)
   ========================================================================== */

.silence {
  width: 100%;
  background-color: var(--color-gray-bg);
  padding-bottom: clamp(40px, 3.18vw, 61px);
  scroll-margin-top: clamp(16px, 2.08vw, 40px);
}

.silence__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--safe-padding-inline);
  padding-top: clamp(40px, 5.17vw, 99.36px);
}

.silence__header {
  font-family: "figTree";
  text-align: center;
}

.silence__title {
  font-family: "figTree";
  margin: 0;
  font-size: var(--text-section-title);
  font-weight: 600;
  line-height: normal;
  letter-spacing: var(--tracking-section-title);
  color: var(--color-heading);
}

.silence__subtitle {
  font-family: "figTree";
  margin: clamp(8px, 0.521vw, 10px) 0 0;
  font-size: var(--text-section-subtitle);
  font-weight: 500;
  line-height: normal;
  color: var(--color-black);
}

.silence__visual {
  position: relative;
  width: 100%;
  margin-top: clamp(32px, 3.59vw, 69px);
}

.silence__scene {
  position: relative;
  width: 100%;
  height: clamp(360px, 50vw, 960px);
  overflow: hidden;
}

.silence__scene-img {
  position: absolute;
  width: 100.9%;
  height: 113.51%;
  left: -0.9%;
  top: -6.74%;
  max-width: none;
  object-fit: cover;
}

/* absolute reason: info card overlays scene bottom per Figma 163:64 */
.silence__info-card {
  font-family: "figTree";
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 3.18vw, 61px);
  transform: translateX(-50%);
  width: min(600px, calc(100% - 40px));
  min-height: 160px;
  padding: clamp(20px, 1.615vw, 31px) clamp(20px, 2.08vw, 40px)
    clamp(16px, 2.03vw, 39px);
  border-radius: 24px;
  background-color: rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.042vw, 19px);
  backdrop-filter: blur(16px);
}

.silence__info-metric {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 0.833vw, 16px);
}

.silence__info-icon {
  flex-shrink: 0;
  width: clamp(28px, 2.031vw, 39px);
  height: auto;
}

.silence__info-value {
  font-family: "figTree";
  margin: 0;
  font-size: clamp(20px, 1.667vw, 32px);
  font-weight: 600;
  line-height: normal;
  color: var(--color-white);
}

.silence__info-sup {
  font-family: "figTree";
  font-size: clamp(12px, 1.075vw, 20.64px);
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
}

.silence__info-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.silence__info-copy p {
  font-family: "figTree";
  margin: 0;
  font-size: clamp(12px, 1.042vw, 20px);
  font-weight: 500;
  line-height: normal;
  color: var(--color-white);
}

@media (max-width: 767px) {
  .silence__scene {
    height: clamp(320px, 75vw, 560px);
  }

  .silence__info-card {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: calc(100% - 40px);
    max-width: 600px;
    margin: clamp(-80px, -12vw, -48px) auto 0;
  }

  .silence__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: clamp(24px, 6vw, 40px);
  }
}

@media (max-width: 430px) {
  .silence__info-metric {
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   Section 4 — iGarden AI Agent (Figma 163:71)
   ========================================================================== */

.ai-agent {
  width: 100%;
  background-color: var(--color-gray-bg);
  padding-top: clamp(40px, 4.17vw, 80px);
  padding-bottom: clamp(40px, 4.17vw, 80px);
  scroll-margin-top: clamp(16px, 2.08vw, 40px);
  --ai-panel-max: 1440px;
  --ai-content-max: 1200px;
  --ai-radius: 24px;
}

.ai-agent__header {
  font-family: "figTree";
  width: 100%;
  max-width: var(--ai-content-max);
  margin-inline: auto;
  padding-inline: var(--safe-padding-inline);
  text-align: center;
}

.ai-agent__title {
  font-family: "figTree";
  margin: 0;
  font-size: var(--text-section-title);
  font-weight: 600;
  line-height: clamp(32px, 2.92vw, 56px);
  letter-spacing: var(--tracking-section-title);
  color: var(--color-heading);
}

.ai-agent__subtitle {
  font-family: "figTree";
  margin: clamp(8px, 0.521vw, 10px) 0 0;
  font-size: var(--text-section-subtitle);
  font-weight: 400;
  line-height: clamp(28px, 2.92vw, 56px);
  color: var(--color-black);
}

/* Figma 163:72 — white panel 1440px, radius 24px */
.ai-agent__panel {
  width: calc(100% - 2 * var(--safe-padding-inline));
  max-width: var(--ai-panel-max);
  margin: clamp(32px, 3.65vw, 70px) auto 0;
  padding: clamp(40px, 3.13vw, 60px) clamp(20px, 4vw, 64px)
    clamp(48px, 4.17vw, 80px);
  border-radius: var(--ai-radius);
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 5.21vw, 100px);
}

.ai-agent__block {
  width: 100%;
  max-width: var(--ai-content-max);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ai-agent__block-title {
  font-family: "figTree";
  margin: 0;
  font-size: clamp(20px, 1.667vw, 32px);
  font-weight: 600;
  line-height: normal;
  text-align: center;
  color: var(--color-black);
}

.ai-agent__block-title--voice {
  font-family: "figTree";
  align-self: flex-start;
  text-align: center;
  width: 100%;
}

.ai-agent__block-desc {
  font-family: "figTree";
  margin-top: clamp(12px, 0.94vw, 18px);
  max-width: 1066px;
  text-align: center;
  font-size: clamp(12px, 0.938vw, 18px);
  font-weight: 400;
  line-height: normal;
  color: var(--color-gray-text);
}

.ai-agent__block-desc p {
  margin: 0;
}

.ai-agent__block-desc p + p {
  margin-top: 0;
}

.ai-agent__grid-visual {
  width: 100%;
  margin-top: clamp(32px, 3.65vw, 70px);
  border-radius: var(--ai-radius);
  overflow: hidden;
  aspect-ratio: 1200 / 550;
}

.ai-agent__grid-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ai-agent__entertainment-visual {
  position: relative;
  width: 100%;
  border-radius: var(--ai-radius);
  overflow: hidden;
  aspect-ratio: 1200 / 611;
}

.ai-agent__entertainment-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* absolute reason: title overlays visual top per Figma 163:78 */
.ai-agent__entertainment-title {
  font-family: "figTree";
  position: absolute;
  top: clamp(20px, 2.08vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  margin: 0;
  font-size: clamp(20px, 1.667vw, 32px);
  font-weight: 600;
  line-height: normal;
  text-align: center;
  color: var(--color-white);
  white-space: nowrap;
}

.ai-agent__features {
  width: 100%;
  max-width: var(--ai-content-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.08vw, 60px);
}

.ai-agent__feature {
  font-family: "figTree";
  text-align: center;
}

.ai-agent__feature-title {
  font-family: "figTree";
  margin: 0;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 700;
  line-height: normal;
  color: var(--color-black);
}

.ai-agent__feature-sup {
  font-family: "figTree";
  font-size: 0.65em;
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
}

.ai-agent__feature-desc {
  font-family: "figTree";
  margin: clamp(8px, 1.04vw, 20px) 0 0;
  font-size: clamp(12px, 1.042vw, 20px);
  font-weight: 500;
  line-height: normal;
  color: var(--color-gray-text);
}

.ai-agent__block--voice {
  gap: clamp(24px, 2.34vw, 45px);
}

.ai-agent__voice-visual {
  width: 100%;
  border-radius: var(--ai-radius);
  overflow: hidden;
  aspect-ratio: 1200 / 550;
}

.ai-agent__voice-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 767px) {
  .ai-agent__panel {
    width: calc(100% - 40px);
    padding-inline: clamp(16px, 4vw, 24px);
    gap: clamp(40px, 8vw, 64px);
  }

  .ai-agent__grid-visual,
  .ai-agent__voice-visual {
    aspect-ratio: auto;
  }

  .ai-agent__grid-visual > img,
  .ai-agent__voice-visual > img {
    height: auto;
  }

  .ai-agent__features {
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vw, 48px);
  }
}

@media (max-width: 430px) {
  .ai-agent__entertainment-title {
    white-space: normal;
    width: calc(100% - 32px);
  }
}

/* ==========================================================================
   Section 5 — iGarden Ecosystem (Figma 163:135)
   ========================================================================== */

.ecosystem {
  width: 100%;
  background-color: var(--color-gray-bg);
}

.ecosystem__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--safe-padding-inline);
  padding-top: clamp(40px, 4.33vw, 83px);
  padding-bottom: clamp(32px, 2.92vw, 56px);
}

.ecosystem__header {
  font-family: "figTree";
  text-align: center;
}

/* Figma 163:138 — 32px SemiBold, black */
.ecosystem__title {
  font-family: "figTree";
  margin: 0;
  font-size: clamp(20px, 1.667vw, 32px);
  font-weight: 600;
  line-height: normal;
  color: var(--color-black);
}

/* Figma 163:139 — 24px Regular, #999, max-width 1066px */
.ecosystem__desc {
  font-family: "figTree";
  margin: clamp(8px, 0.625vw, 12px) auto 0;
  max-width: 1066px;
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 400;
  line-height: normal;
  color: var(--color-gray-text);
}

.ecosystem__visual {
  position: relative;
  width: 100%;
  margin-top: clamp(32px, 3.13vw, 60px);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1200 / 617;
}

/* Figma 163:136 — crop w 145.11%, h 105.83%, left -43.5%, top -2.79% */
.ecosystem__scene-img {
  object-fit: contain;
}

@media (max-width: 767px) {
  .ecosystem__visual {
    aspect-ratio: auto;
    height: auto;
  }

  .ecosystem__scene-img {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    top: auto;
    aspect-ratio: 1200 / 617;
    object-fit: cover;
  }
}

/* ==========================================================================
   Section 6 — 30X Energy Saving (Figma 163:141)
   ========================================================================== */

.energy-saving {
  width: 100%;
  background-color: #bdbec4;
  scroll-margin-top: clamp(16px, 2.08vw, 40px);
}

.energy-saving__visual {
  position: relative;
  width: 100%;
}

.energy-saving__scene {
  position: relative;
  width: 100%;
  --energy-scene-height: clamp(560px, 56.15vw, 1078px);
  height: min(100vh, var(--energy-scene-height));
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
}

.energy-saving__scene-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* absolute reason: title overlays full-width scene top per Figma 163:144 */
.energy-saving__header {
  font-family: "figTree";
  position: absolute;
  top: clamp(40px, 3.69vw, 90px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: calc(100% - 40px);
  max-width: var(--container-max);
  text-align: center;
}

/* Figma 163:144 — 64px SemiBold #171717, tracking -1.28px */
.energy-saving__title {
  font-family: "figTree";
  margin: 0;
  font-size: var(--text-section-title);
  font-weight: 600;
  line-height: normal;
  letter-spacing: var(--tracking-section-title);
  color: var(--color-heading);
}

/* Figma 163:145 — 32px Medium black */
.energy-saving__subtitle {
  font-family: "figTree";
  margin: clamp(8px, 0.57vw, 11px) 0 0;
  font-size: var(--text-section-subtitle);
  font-weight: 500;
  line-height: normal;
  color: var(--color-black);
}

/* absolute reason: info card overlays scene bottom per Figma 163:146 */
.energy-saving__info-card {
  font-family: "figTree";
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 3.18vw, 61px);
  transform: translateX(-50%);
  width: min(600px, calc(100% - 40px));
  min-height: 160px;
  padding: clamp(16px, 1.25vw, 24px) clamp(20px, 2.08vw, 40px)
    clamp(16px, 2.03vw, 39px);
  border-radius: 24px;
  background-color: rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 0.57vw, 11px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.energy-saving__info-metric {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(8px, 0.833vw, 16px);
}

.energy-saving__info-icon {
  flex-shrink: 0;
  width: auto;
  height: clamp(24px, 1.719vw, 33px);
}

.energy-saving__info-icon--flame {
  height: clamp(22px, 1.667vw, 32px);
}

.energy-saving__info-arrows {
  flex-shrink: 0;
  width: clamp(28px, 1.823vw, 35px);
  height: auto;
}

.energy-saving__info-value {
  font-family: "figTree";
  margin: 0;
  font-size: clamp(20px, 1.667vw, 32px);
  font-weight: 600;
  line-height: normal;
  color: var(--color-white);
}

.energy-saving__info-sup {
  font-family: "figTree";
  font-size: clamp(12px, 1.075vw, 20.64px);
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
}

.energy-saving__info-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 533px;
}

/* Figma 163:147 — 20px Regular white */
.energy-saving__info-copy p {
  font-family: "figTree";
  margin: 0;
  font-size: clamp(12px, 1.042vw, 20px);
  font-weight: 400;
  line-height: normal;
  color: var(--color-white);
}

@media (max-width: 767px) {
  .energy-saving__scene {
    height: clamp(480px, 120vw, 720px);
    max-height: none;
  }

  .energy-saving__header {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding-top: clamp(40px, 10vw, 72px);
  }

  .energy-saving__info-card {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: calc(100% - 40px);
    max-width: 600px;
    margin: clamp(-80px, -12vw, -48px) auto 0;
  }

  .energy-saving__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: clamp(24px, 6vw, 40px);
  }
}

/* ==========================================================================
   Section 7 — R290 Refrigerant (Figma 163:156)
   ========================================================================== */

.r290 {
  width: 100%;
  background-color: var(--color-white);
}

.r290__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--safe-padding-inline);
  padding-top: clamp(48px, 8.97vw, 172px);
  padding-bottom: clamp(48px, 7.4vw, 142px);
}

.r290__header {
  font-family: "figTree";
  text-align: center;
}

/* Figma 163:160 — 64px SemiBold #171717 */
.r290__title {
  font-family: "figTree";
  margin: 0;
  font-size: var(--text-section-title);
  font-weight: 600;
  line-height: normal;
  letter-spacing: var(--tracking-section-title);
  color: var(--color-heading);
}

/* Figma 163:161 — 32px Regular black */
.r290__subtitle {
  font-family: "figTree";
  margin: clamp(8px, 0.47vw, 9px) auto 0;
  font-size: var(--text-section-subtitle);
  font-weight: 400;
  line-height: normal;
  color: var(--color-black);
}

.r290__visual {
  position: relative;
  width: 100%;
  margin-top: clamp(32px, 3.13vw, 40px);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1200 / 640;
}

/* Figma 163:157 — crop w 105.25%, h 111.31%, left -1.51%, top -9.37% */
.r290__scene-img {
  position: absolute;
  width: 105.25%;
  height: 111.31%;
  left: -1.51%;
  top: -9.37%;
  max-width: none;
  object-fit: cover;
}

/* absolute reason: comparison card overlays scene per Figma 163:173 */
.r290__compare {
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 2.08vw, 40px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(450px, calc(100% - 32px));
  height: clamp(128px, 8.33vw, 160px);
  z-index: 1;
}

/* Figma 163:174 — 450×111, rgba(0,0,0,0.1) */

.r290__compare-col {
  font-family: "figTree";
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: clamp(89px, 5.78vw, 111px);
  text-align: center;
}

.r290__compare-col--left,
.r290__compare-col--right {
  padding-top: clamp(11px, 0.729vw, 14px);
  padding-bottom: clamp(16px, 1.042vw, 20px);
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
}

.r290__compare-col--left {
  border-radius: 24px 0 0 24px;
}

.r290__compare-col--right {
  border-radius: 0 24px 24px 0;
  transform: translateX(-1px);
}

/* arc glow — left outer edge */
.r290__compare-col--left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  width: 1px;
  height: 80%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.22) 14%,
    rgba(255, 255, 255, 0.72) 42%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.72) 58%,
    rgba(255, 255, 255, 0.22) 86%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Figma 163:176 — center highlight 137×160 */
.r290__compare-col--active {
  flex: 0 0 clamp(100px, 7.14vw, 137px);
  height: clamp(128px, 8.33vw, 160px);
  padding-top: clamp(17px, 1.146vw, 22px);
  padding-bottom: clamp(12px, 0.833vw, 16px);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
  z-index: 2;
}

/* arc glow — active left edge */
.r290__compare-col--active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  width: 1px;
  height: 84%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 12%,
    rgba(255, 255, 255, 0.78) 40%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.78) 60%,
    rgba(255, 255, 255, 0.28) 88%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* arc glow — active top-left & bottom-right corners, soft gradient on border only */
.r290__compare-col--active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(
      ellipse 130% 130% at 0% 0%,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.72) 22%,
      rgba(255, 255, 255, 0.38) 44%,
      rgba(255, 255, 255, 0.12) 62%,
      rgba(255, 255, 255, 0) 100%
    ),
    radial-gradient(
      ellipse 130% 130% at 100% 100%,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.72) 22%,
      rgba(255, 255, 255, 0.38) 44%,
      rgba(255, 255, 255, 0.12) 62%,
      rgba(255, 255, 255, 0) 100%
    );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

/* arc glow — right outer edge */
.r290__compare-col--right::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  width: 1px;
  height: 80%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.22) 14%,
    rgba(255, 255, 255, 0.72) 42%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.72) 58%,
    rgba(255, 255, 255, 0.22) 86%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Figma 163:186 — single horizontal rule spanning all three columns */
.r290__compare-divider {
  position: absolute;
  top: clamp(58px, 3.802vw, 73px);
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  border: 0;
  background-color: transparent;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.35) 1px,
    rgba(255, 255, 255, 0) 1px
  );
  background-size: 4px 2px;
  background-repeat: repeat-x;
  background-position: left center;
  z-index: 3;
  pointer-events: none;
}

.r290__compare-name {
  font-family: "figTree";
  margin: 0;
  font-size: clamp(14px, 1.042vw, 20px);
  font-weight: 500;
  line-height: normal;
  color: var(--color-white);
}

.r290__compare-name--active {
  font-family: "figTree";
  font-size: clamp(20px, 1.667vw, 32px);
}

.r290__compare-value-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.42vw, 8px);
}

.r290__compare-leaf {
  flex-shrink: 0;
  width: clamp(18px, 1.25vw, 24px);
  height: auto;
}

.r290__compare-value {
  font-family: "figTree";
  margin: 0;
  font-size: clamp(14px, 1.042vw, 20px);
  font-weight: 500;
  line-height: normal;
  color: var(--color-white);
}

.r290__compare-value--active {
  font-family: "figTree";
  font-size: clamp(20px, 1.667vw, 32px);
}

.r290__features {
  width: 100%;
  max-width: 779px;
  margin: clamp(32px, 3.13vw, 40px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  column-gap: clamp(24px, 6.25vw, 120px);
  row-gap: clamp(8px, 0.57vw, 11px);
}

.r290__feature {
  font-family: "figTree";
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  justify-items: center;
  text-align: center;
  gap: 20px;
}

.r290__feature-metric {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(6px, 0.52vw, 10px);
}

/* Figma 163:166 — 32px SemiBold #2caaed */
.r290__feature-label,
.r290__feature-value {
  font-family: "figTree";
  font-size: clamp(20px, 1.667vw, 32px);
  font-weight: 600;
  line-height: normal;
  color: #2caaed;
}

.r290__feature-arrows {
  flex-shrink: 0;
  width: clamp(28px, 2.083vw, 40px);
  height: auto;
}

.r290__feature-sup {
  font-family: "figTree";
  font-size: 0.65em;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
}

.r290__feature-icon {
  width: clamp(36px, 2.55vw, 49px);
  height: auto;
}

/* Figma 163:171 — 17px Regular #999 */
.r290__feature-desc {
  font-family: "figTree";
  margin: 0;
  max-width: 333px;
  font-size: clamp(12px, 0.885vw, 17px);
  font-weight: 400;
  line-height: normal;
  color: var(--color-gray-text);
}

@media (max-width: 767px) {
  .r290__inner {
    padding-top: clamp(40px, 10vw, 72px);
  }

  .r290__visual {
    aspect-ratio: auto;
  }

  .r290__scene-img {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    top: auto;
    aspect-ratio: 1200 / 640;
  }

  .r290__compare {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: clamp(-72px, -10vw, -48px) auto 0;
  }

  .r290__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
  }

  .r290__features {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: clamp(32px, 6vw, 48px);
  }

  .r290__feature {
    grid-row: auto;
    grid-template-rows: auto auto;
    row-gap: clamp(8px, 0.57vw, 11px);
  }
}

/* ==========================================================================
   Section 8 — Other Features (Figma 163:187)
   ========================================================================== */

.other-features {
  width: 100%;
  background-color: var(--color-gray-bg);
}

.other-features__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--safe-padding-inline);
  padding-top: clamp(40px, 4.17vw, 80px);
  padding-bottom: clamp(40px, 4.17vw, 80px);
}

.other-features__header {
  font-family: "figTree";
  text-align: center;
}

/* Figma 163:205 — 64px SemiBold #171717 */
.other-features__title {
  font-family: "figTree";
  margin: 0;
  font-size: var(--text-section-title);
  font-weight: 600;
  line-height: normal;
  letter-spacing: var(--tracking-section-title);
  color: var(--color-heading);
}

.other-features__carousel {
  margin-top: clamp(32px, 3.8vw, 73px);
}

.other-features__swiper {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.other-features__swiper .swiper-slide {
  height: auto;
}

.other-features__slide {
  position: relative;
  width: 100%;
}

.other-features__slide-media {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 1200 / 617;
  border-radius: 24px;
  overflow: hidden;
  background-color: #e8e8ea;
}

/* Figma node exports already include crop — fill 1200/617 viewport */
.other-features__slide-layer {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.other-features__slide-layer--heating-snow {
  object-fit: cover;
  pointer-events: none;
}

/* absolute reason: gradient overlay on aesthetics scene per Figma 163:196 */
.other-features__slide-media--aesthetics::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(169.48deg, rgba(0, 0, 0, 0.2) 9.66%, rgba(0, 0, 0, 0) 26.91%);
  pointer-events: none;
  z-index: 1;
}

/* absolute reason: slide titles overlay scene images per Figma 163:192 */
.other-features__slide-copy {
  font-family: "figTree";
  position: absolute;
  top: clamp(32px, 3.13vw, 60px);
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 520px);
  padding-inline: 16px;
  text-align: center;
  z-index: 2;
}

/* Figma 163:193 — 32px SemiBold white */
.other-features__slide-copy--light .other-features__slide-title {
  font-family: "figTree";
  color: var(--color-white);
}

.other-features__slide-copy--light .other-features__slide-desc {
  font-family: "figTree";
  color: var(--color-white);
}

.other-features__slide-copy--dark .other-features__slide-title,
.other-features__slide-copy--dark .other-features__slide-desc {
  font-family: "figTree";
  color: var(--color-black);
}

.other-features__slide-title {
  font-family: "figTree";
  margin: 0;
  font-size: clamp(20px, 1.667vw, 32px);
  font-weight: 600;
  line-height: normal;
}

/* Figma 163:194 — 24px Regular */
.other-features__slide-desc {
  font-family: "figTree";
  margin: clamp(8px, 0.625vw, 12px) 0 0;
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 400;
  line-height: normal;
}

.other-features__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(24px, 2.08vw, 40px);
}

/* Figma 163:217 — 348×80 white pill */
.other-features__pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: clamp(240px, 18.13vw, 348px);
  height: clamp(56px, 4.17vw, 80px);
  padding-inline: clamp(6px, 0.42vw, 8px);
  border-radius: 100px;
  background-color: var(--color-white);
}

.other-features__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(48px, 3.33vw, 64px);
  height: clamp(48px, 3.33vw, 64px);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #e6e6e6;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.other-features__arrow:hover {
  background-color: #666666;
}

.other-features__arrow-icon {
  display: block;
  width: clamp(28px, 1.875vw, 36px);
  height: clamp(28px, 1.875vw, 36px);
  pointer-events: none;
}

/* Figma 163:218 — 60×12 dots, 12px diameter, 12px gap */
.other-features__pagination.swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 0.625vw, 12px);
  width: clamp(48px, 3.13vw, 60px);
  margin: 0;
}

.other-features__pagination .swiper-pagination-bullet {
  width: clamp(10px, 0.625vw, 12px);
  height: clamp(10px, 0.625vw, 12px);
  margin: 0;
  opacity: 1;
  background-color: #999999;
  transition: background-color 0.2s ease;
}

.other-features__pagination .swiper-pagination-bullet-active {
  background-color: #333333;
}

.other-features__grid {
  list-style: none;
  margin: clamp(40px, 5.21vw, 100px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: auto auto;
  column-gap: clamp(16px, 2.08vw, 40px);
  row-gap: 0;
}

.other-features__card {
  font-family: "figTree";
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  justify-items: center;
  text-align: center;
  background-color: var(--color-white);
  border-radius: 24px;
  padding-bottom: clamp(12px, 0.83vw, 16px);
}

.other-features__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: clamp(12px, 1.04vw, 20px);
  min-height: clamp(88px, 6.77vw, 130px);
}

.other-features__card-icon--badge {
  position: relative;
}

.other-features__card-circle,
.other-features__card-graphic {
  width: auto;
  height: clamp(40px, 5.21vw, 100px);
  max-width: clamp(64px, 5.21vw, 100px);
  max-height: clamp(40px, 5.21vw, 100px);
  object-fit: contain;
}

/* Figma 163:210 — 36px Bold #2caaed */
.other-features__card-badge {
  font-family: "figTree";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(24px, 1.875vw, 36px);
  font-weight: 700;
  line-height: normal;
  color: #2caaed;
}

/* Figma 163:208 — 20px Medium #999 */
.other-features__card-label {
  font-family: "figTree";
  margin: 0;
  padding-inline: clamp(8px, 0.625vw, 12px);
  font-size: clamp(14px, 1.042vw, 20px);
  font-weight: 500;
  line-height: normal;
  color: var(--color-gray-text);
  margin: auto 0;
}

.other-features__card-label span {
  display: block;
}

@media (max-width: 767px) {
  .other-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    row-gap: clamp(16px, 4vw, 24px);
  }

  .other-features__card {
    grid-row: auto;
    grid-template-rows: auto auto;
    row-gap: clamp(8px, 2vw, 12px);
  }
}

@media (max-width: 430px) {
  .other-features__slide-desc {
    white-space: normal;
  }
}

/* ==========================================================================
   Section 9 — Revolutionary Innovative Technology (Figma 163:246 / 163:248)
   ========================================================================== */

.rev-tech {
  width: 100%;
  background-color: var(--color-white);
}

.rev-tech__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--safe-padding-inline);
  padding-top: clamp(40px, 5.16vw, 99px);
  padding-bottom: clamp(40px, 4.17vw, 80px);
}

.rev-tech__header {
  font-family: "figTree";
  text-align: center;
}

/* Figma 163:246 — 32px Medium #0a0a0a */
.rev-tech__title {
  font-family: "figTree";
  margin: 0;
  font-size: clamp(20px, 1.667vw, 32px);
  font-weight: 500;
  line-height: normal;
  color: #0a0a0a;
}

/* Figma 163:264 — 565.75×63.37, centered below title */
.rev-tech__brand {
  display: flex;
  justify-content: center;
  margin: clamp(4px, 0.42vw, 8px) 0 0;
}

.rev-tech__brand-logo {
  display: block;
  width: clamp(280px, 29.47vw, 566px);
  height: auto;
}

.rev-tech__list {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.08vw, 40px);
  margin-top: clamp(24px, 4.01vw, 77px);
}

.rev-tech__item {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.125vw, 60px);
}

.rev-tech__item--reverse {
  flex-direction: row-reverse;
}

.rev-tech__media {
  position: relative;
  flex: 1 1 58.33%;
  max-width: 700px;
  margin: 0;
  aspect-ratio: 700 / 400;
  border-radius: 24px;
  overflow: hidden;
}

.rev-tech__media--pad {
  background: linear-gradient(55.99deg, #9aa2be 44.55%, #eeeef0 106.69%);
}

.rev-tech__media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rev-tech__copy {
  flex: 1 1 36.67%;
  min-width: 0;
}

/* Figma 163:252 / 163:256 / 163:262 — 32px SemiBold black */
.rev-tech__item-title {
  font-family: "figTree";
  margin: 0;
  font-size: clamp(20px, 1.667vw, 32px);
  font-weight: 600;
  line-height: normal;
  color: var(--color-black);
}

/* Figma 163:253 — 18px Regular #999 */
.rev-tech__item-desc {
  font-family: "figTree";
  margin: clamp(8px, 0.625vw, 12px) 0 0;
  font-weight: 400;
  line-height: normal;
  color: var(--color-gray-text);
}

.rev-tech__item-desc--sm {
  font-family: "figTree";
  font-size: clamp(14px, 0.937vw, 18px);
}

.rev-tech__item-desc--sm p {
  margin: 0;
}

.rev-tech__item-desc--sm p + p {
  margin-top: 0;
}

/* Figma 163:257 / 163:263 — 20px Regular #999 */
.rev-tech__item-desc--lg {
  font-family: "figTree";
  font-size: clamp(14px, 1.042vw, 20px);
}

@media (max-width: 767px) {
  .rev-tech__list {
    margin-top: clamp(24px, 6vw, 48px);
  }

  .rev-tech__item,
  .rev-tech__item--reverse {
    flex-direction: column;
    align-items: stretch;
  }

  .rev-tech__media {
    flex: none;
    max-width: none;
    width: 100%;
  }
}

/* ==========================================================================
   Section 10 — Testimonials (Figma 163:286)
   ========================================================================== */

.testimonials {
  position: relative;
  width: 100%;
  min-height: clamp(400px, 36.46vw, 700px);
  overflow: hidden;
  background-color: var(--color-gray-bg);
}

/* absolute reason: full-width pool scene background per Figma 163:286 */
.testimonials__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.testimonials__scene-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.testimonials__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--safe-padding-inline);
  padding-top: clamp(40px, 5.17vw, 99px);
  padding-bottom: clamp(40px, 5.17vw, 99px);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 373px));
  justify-content: center;
  gap: clamp(16px, 2.5vw, 48px);
  align-items: start;
}

/* Figma 163:287 / 163:293 / 163:299 — 373×365 glass cards */
.testimonials__card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
}

.testimonials__card--side {
  margin-top: clamp(64px, 6.93vw, 133px);
}

.testimonials__card-header {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.94vw, 18px);
  min-height: clamp(56px, 3.85vw, 74px);
  padding: clamp(10px, 0.68vw, 13px);
  background-color: var(--color-white);
}

.testimonials__avatar-wrap {
  position: relative;
  flex-shrink: 0;
  width: clamp(40px, 2.5vw, 48px);
  height: clamp(40px, 2.5vw, 48px);
}

.testimonials__avatar {
  display: block;
  width: 100%;
  height: 100%;
}

.testimonials__quote-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(22px, 1.51vw, 29px);
  height: auto;
}

/* Figma 163:290 — 20px Medium black */
.testimonials__author {
  font-family: "figTree";
  margin: 0;
  font-size: clamp(14px, 1.042vw, 20px);
  font-weight: 500;
  line-height: normal;
  color: var(--color-black);
}

.testimonials__quote {
  margin: 0;
  padding: clamp(24px, 2.08vw, 40px) clamp(24px, 2.08vw, 40px) clamp(28px, 2.08vw, 40px);
}

/* Figma 163:289 — 20px Medium white */
.testimonials__quote p {
  font-family: "figTree";
  margin: 0;
  font-size: clamp(14px, 1.042vw, 20px);
  font-weight: 500;
  line-height: normal;
  color: var(--color-white);
}

.testimonials__quote p + p {
  margin-top: clamp(8px, 0.625vw, 12px);
}

@media (max-width: 767px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 373px;
    margin-inline: auto;
  }

  .testimonials__card--side,
  .testimonials__card--center {
    margin-top: 0;
  }
}

/* ==========================================================================
   Section 11 — Disclaimer (Figma 163:305)
   ========================================================================== */

.disclaimer {
  width: 100%;
  background-color: var(--color-white);
}

.disclaimer__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--safe-padding-inline);
  padding-block: clamp(40px, 4.17vw, 80px);
  display: flex;
  justify-content: center;
}

.disclaimer__content {
  width: 100%;
  max-width: clamp(280px, 56.98vw, 1094px);
  word-break: break-word;
}

/* Figma 163:306 — 17px Regular #999 */
.disclaimer__content p {
  font-family: "figTree";
  margin: 0;
  font-size: clamp(14px, 0.885vw, 17px);
  font-weight: 400;
  line-height: normal;
  color: var(--color-gray-text);
}

/* ==========================================================================
   Hero Video Modal
   ========================================================================== */

html.ig-m30-hero-video-modal-open,
body.ig-m30-hero-video-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.hero-video-modal__trigger {
  cursor: pointer;
}

.hero-video-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  touch-action: none;
}

.hero-video-modal.is-open {
  display: flex;
}

.hero-video-modal__dialog {
  display: flex;
  flex-direction: column;
  width: calc(100vw - 32px);
  max-width: 960px;
  border-radius: clamp(10px, 1.042vw, 20px);
  overflow: hidden;
  background: #1a1a1a;
}

.hero-video-modal__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(12px, 1.25vw, 24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-video-modal__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.417vw, 8px);
  min-width: 0;
}

.hero-video-modal__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 600;
  line-height: 1.2;
}

.hero-video-modal__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(10px, 0.833vw, 16px);
  font-weight: 400;
  line-height: 1.2;
}

.hero-video-modal__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.hero-video-modal__close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-video-modal__close-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.hero-video-modal__frame-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.hero-video-modal__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}
