@charset "UTF-8";
:root {
  color-scheme: light;
  --bs-body-font-family: Montserrat, Segoe UI, system-ui, -apple-system, sans-serif;
  --bs-body-color: #111111;
  --bs-body-bg: #F6F9F7;
  --bs-primary: #00843F;
  --bs-primary-rgb: 0, 132, 63;
  --bs-link-color: #00843F;
  --bs-link-color-rgb: 0, 132, 63;
  --bs-link-hover-color: #006B33;
  --bs-border-color: #E3E9E5;
  --bs-border-radius: 12px;
  --bs-emphasis-color: #111111;
  --momi-header-h: 76px;
}
@media (min-width: 992px) {
  :root {
    --momi-header-h: 88px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--momi-header-h) + 16px);
}

body {
  font-family: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: #111111;
  background: #F6F9F7;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: inherit;
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

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

a {
  color: #00843F;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid #009B4C;
  outline-offset: 3px;
  border-radius: 8px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 2000;
  background: #00843F;
  color: #FFFFFF;
  padding: 0.6rem 1rem;
  border-radius: 12px;
}
.skip-link:focus {
  top: 12px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
.h-display {
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 700;
  color: #009B4C;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.h-section {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: #009B4C;
  line-height: 1.22;
}

.h-card {
  font-size: 1.1rem;
  font-weight: 600;
  color: #009B4C;
}

.lead-text {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

.body-text {
  font-size: clamp(0.97rem, 1.15vw, 1.06rem);
  line-height: 1.75;
}

.label-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: #5F6661;
  letter-spacing: 0.02em;
}

.text-muted-momi {
  color: #5F6661;
}

.text-green {
  color: #009B4C;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #FFFFFF;
  border-bottom: 1px solid #E3E9E5;
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
.site-header .navbar {
  min-height: var(--momi-header-h);
  padding: 0;
}
.site-header .navbar-brand {
  padding: 0;
  margin: 0;
}
.site-header .brand-logo {
  height: 48px;
  width: auto;
}
@media (min-width: 992px) {
  .site-header .brand-logo {
    height: 56px;
  }
}
.site-header .navbar-toggler {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid #E3E9E5;
  padding: 0;
  display: grid;
  place-items: center;
}
.site-header .navbar-toggler:focus {
  box-shadow: none;
}
.site-header .navbar-toggler:focus-visible {
  outline: 3px solid #009B4C;
  outline-offset: 3px;
}
.site-header .toggler-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #111111;
  border-radius: 2px;
  position: relative;
  transition: background 0.2s;
}
.site-header .toggler-bar::before, .site-header .toggler-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #111111;
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.site-header .toggler-bar::before {
  top: -6px;
}
.site-header .toggler-bar::after {
  top: 6px;
}
.site-header .navbar-toggler[aria-expanded=true] .toggler-bar {
  background: transparent;
}
.site-header .navbar-toggler[aria-expanded=true] .toggler-bar::before {
  transform: translateY(6px) rotate(45deg);
}
.site-header .navbar-toggler[aria-expanded=true] .toggler-bar::after {
  transform: translateY(-6px) rotate(-45deg);
}
.site-header .nav-link {
  color: #111111;
  font-weight: 500;
  font-size: 1.02rem;
  position: relative;
  padding: 0.9rem 0;
}
.site-header .nav-link:hover, .site-header .nav-link:focus {
  color: #111111;
}
.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.55rem;
  height: 2px;
  background: #009B4C;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.site-header .nav-link:hover::after, .site-header .nav-link.active::after {
  transform: scaleX(1);
}
.site-header .nav-link.active {
  color: #111111;
}
@media (min-width: 992px) {
  .site-header .navbar-toggler {
    display: none;
  }
  .site-header .navbar-nav {
    gap: 2.1rem;
    margin-right: 2.2rem;
  }
  .site-header .nav-link {
    padding: 0.4rem 0;
  }
  .site-header .nav-link::after {
    bottom: -2px;
  }
}
@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    border-top: 1px solid #E3E9E5;
    margin: 0 -12px;
    padding: 0.5rem 12px 1.2rem;
  }
  .site-header .nav-link {
    border-bottom: 1px solid #E3E9E5;
    font-size: 1.1rem;
  }
  .site-header .nav-link::after {
    display: none;
  }
  .site-header .nav-link.active {
    color: #009B4C;
  }
  .site-header .header-cta {
    width: 100%;
    margin-top: 1rem;
  }
}

.navbar-collapse.is-open {
  display: block !important;
}

.site-footer {
  background: #00843F;
  color: #FFFFFF;
  padding: 64px 0 28px;
  margin-top: auto;
}
.site-footer .footer-logo {
  height: 72px;
  width: auto;
}
.site-footer .footer-tagline {
  font-weight: 600;
  margin-top: 1.1rem;
}
.site-footer .footer-desc {
  opacity: 0.85;
  font-size: 0.93rem;
  max-width: 34em;
  margin-top: 0.5rem;
}
.site-footer .footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}
.site-footer .footer-links a {
  color: #FFFFFF;
  opacity: 0.85;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}
.site-footer .footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}
.site-footer .footer-bottom {
  margin-top: 3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  opacity: 0.85;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1040;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.wa-float.is-visible {
  transform: scale(1);
}
.wa-float:hover {
  transform: scale(1.06);
  color: #FFFFFF;
}
.wa-float svg {
  width: 28px;
  height: 28px;
}

.has-buybar .wa-float {
  bottom: 96px;
}
@media (min-width: 992px) {
  .has-buybar .wa-float {
    bottom: 20px;
  }
}

.btn-momi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.8em 1.4em;
  border-radius: 12px;
  border: 1.5px solid transparent;
  font-family: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  background-image: none;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-momi:active {
  transform: scale(0.97);
}
.btn-momi:focus-visible {
  outline: 3px solid #009B4C;
  outline-offset: 3px;
}
.btn-momi svg {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}
.btn-momi--primary {
  background: #00843F;
  color: #FFFFFF;
}
.btn-momi--primary:hover {
  background: #006B33;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 132, 63, 0.25);
}
.btn-momi--outline {
  background: #FFFFFF;
  color: #111111;
  border-color: #E3E9E5;
}
.btn-momi--outline:hover {
  border-color: #009B4C;
  color: #00843F;
}
.btn-momi--text {
  background: none;
  color: #009B4C;
  padding-left: 0.3em;
  padding-right: 0.3em;
}
.btn-momi--text:hover {
  color: #00843F;
  text-decoration: underline;
}
.btn-momi--light {
  background: #FFFFFF;
  color: #00843F;
}
.btn-momi--light:hover {
  background: #F5FFF4;
  color: #006B33;
}
.btn-momi--wa {
  background: #25D366;
  color: #08301A;
}
.btn-momi--wa:hover {
  background: #1FBE5B;
  color: #08301A;
}
.btn-momi--shopee {
  background: #EE4D2D;
  color: #FFFFFF;
}
.btn-momi--shopee:hover {
  background: #D8431F;
  color: #FFFFFF;
}
.btn-momi--tokopedia {
  background: #03AC0E;
  color: #FFFFFF;
}
.btn-momi--tokopedia:hover {
  background: #02960C;
  color: #FFFFFF;
}
.btn-momi--tiktok {
  background: #111111;
  color: #FFFFFF;
}
.btn-momi--tiktok:hover {
  background: #333333;
  color: #FFFFFF;
}
.btn-momi--sm {
  padding: 0.55em 1em;
  font-size: 0.9rem;
}
.btn-momi--block {
  width: 100%;
}

.icon-btn {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #E3E9E5;
  background: #FFFFFF;
  display: inline-grid;
  place-items: center;
  font-weight: 500;
  font-size: 1.1rem;
  transition: border-color 0.2s, color 0.2s;
}
.icon-btn:hover {
  border-color: #009B4C;
  color: #00843F;
}
.icon-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.badge-momi {
  display: inline-block;
  background: #00843F;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 0.35em 0.95em;
  border-radius: 9px;
}
.badge-momi--soft {
  background: #DDF2E5;
  color: #00843F;
}
.badge-momi--sm {
  font-size: 0.72rem;
  padding: 0.3em 0.75em;
  border-radius: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.45em 0.95em;
  border-radius: 9px;
  background: #FFFFFF;
  border: 1px solid #E3E9E5;
  font-size: 0.88rem;
  font-weight: 500;
}

.section {
  padding: clamp(64px, 9vw, 108px) 0;
}

.section--white {
  background: #FFFFFF;
}

.section--mint {
  background: #F5FFF4;
}

.section--bordered {
  border-block: 1px solid #E3E9E5;
}

.section--tight-top {
  padding-top: 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.section-head .h-section {
  margin: 0.85rem 0 0.9rem;
}
.section-head.text-center {
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  background: #FFFFFF;
  border-bottom: 1px solid #E3E9E5;
  padding: clamp(40px, 6vw, 72px) 0 clamp(36px, 5vw, 56px);
}
.page-hero .breadcrumb {
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a {
  color: #5F6661;
  text-decoration: none;
}
.page-hero .breadcrumb a:hover {
  color: #00843F;
}
.page-hero .breadcrumb .breadcrumb-item.active {
  color: #111111;
}
.page-hero .h-display {
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  margin: 0.8rem 0 0.8rem;
}
.page-hero .lead-text {
  max-width: 40em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: #111111;
}
.product-card:hover {
  color: #111111;
}
.product-card__media {
  position: relative;
  aspect-ratio: 1/1.08;
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.product-card__media img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product-card:hover .product-card__media img {
  transform: translateY(-8px) scale(1.04);
}
.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
}
.product-card__cta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 0.7em;
  border-radius: 12px;
  background: #FFFFFF;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
  color: #00843F;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product-card:hover .product-card__cta, .product-card:focus-visible .product-card__cta {
  opacity: 1;
  transform: none;
}
@media (hover: none) {
  .product-card__cta {
    display: none;
  }
}
.product-card__body {
  padding: 1.05rem 0.3rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: #009B4C;
}
.product-card__name {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0.2rem 0 0.35rem;
}
.product-card__cat {
  font-size: 0.82rem;
  color: #5F6661;
}
.product-card__price {
  margin-top: 0.6rem;
}
@media (max-width: 575.98px) {
  .product-card__media {
    border-radius: 16px;
  }
  .product-card__badge {
    top: 10px;
    left: 10px;
  }
  .product-card__name {
    font-size: 1rem;
  }
  .product-card__cat {
    font-size: 0.75rem;
  }
  .product-card .price {
    gap: 0.1rem 0.5rem;
  }
  .product-card .price__now {
    font-size: 1.02rem;
  }
  .product-card .price__old {
    font-size: 0.8rem;
  }
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem 0.8rem;
  flex-wrap: wrap;
}
.price__now {
  color: #009B4C;
  font-weight: 600;
  font-size: 1.2rem;
}
.price__old {
  color: #5F6661;
  font-size: 0.98rem;
  text-decoration: line-through;
}
.price__off {
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
  background: #E0464F;
  padding: 0.2em 0.55em;
  border-radius: 6px;
}
.price--start {
  justify-content: flex-start;
}
.price--lg .price__now {
  font-size: clamp(1.6rem, 3vw, 2rem);
}
.price--lg .price__old {
  font-size: 1.1rem;
}

.accordion-momi {
  --bs-accordion-border-color: #E3E9E5;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: #009B4C;
  --bs-accordion-bg: transparent;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
}
.accordion-momi .accordion-item {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: transparent;
}
.accordion-momi .accordion-button {
  font-family: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #111111;
  padding: 1.25rem 0;
  background: transparent;
  box-shadow: none;
}
.accordion-momi .accordion-button:not(.collapsed) {
  color: #009B4C;
}
.accordion-momi .accordion-button:focus-visible {
  outline: 3px solid #009B4C;
  outline-offset: 3px;
}
.accordion-momi .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: #009B4C;
  width: auto;
  height: auto;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.accordion-momi .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}
.accordion-momi .accordion-body {
  padding: 0 0 1.3rem;
  max-width: 62ch;
}
.accordion-momi .accordion-collapse.show-fallback {
  display: block;
}

.hero {
  background: #FFFFFF;
  padding: clamp(40px, 6vw, 84px) 0 clamp(56px, 8vw, 96px);
}
.hero .h-display {
  margin: 1.1rem 0 1.3rem;
}
.hero .lead-text {
  max-width: 36em;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.9rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.3rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #5F6661;
}
.hero__trust span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #009B4C;
  margin-right: 0.5em;
  vertical-align: middle;
}

.hero-in > * {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-in > *:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-in > *:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-in > *:nth-child(4) {
  animation-delay: 0.24s;
}

.hero-in > *:nth-child(5) {
  animation-delay: 0.32s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-in > * {
    opacity: 1;
    transform: none;
  }
}
.stage-card {
  background: #FFFFFF;
  border: 1px solid #E3E9E5;
  border-radius: 28px;
  padding: clamp(16px, 2.6vw, 24px);
  box-shadow: 0 18px 48px rgba(0, 40, 20, 0.1);
}
.stage-card__media {
  position: relative;
  aspect-ratio: 1;
  border-radius: 22px;
  overflow: hidden;
  background: #E9FBEF;
  isolation: isolate;
}
.stage-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.7s ease, transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.stage-card__media img.is-active {
  opacity: 1;
  transform: none;
}
.stage-card__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 14px;
}
@media (max-width: 479.98px) {
  .stage-card__tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stage-card__tab {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0.65rem 0.2rem;
  border-radius: 12px;
  color: #5F6661;
  font-weight: 600;
  font-size: 0.84rem;
  line-height: 1.25;
  position: relative;
  overflow: hidden;
}
.stage-card__tab small {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  margin-top: 2px;
}
.stage-card__tab[aria-selected=true] {
  background: #00843F;
  color: #FFFFFF;
}
.stage-card__tab:hover:not([aria-selected=true]) {
  background: #F5FFF4;
  color: #111111;
}
.stage-card__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: rgba(255, 255, 255, 0.7);
}
.stage-card__tab[aria-selected=true] .stage-card__progress {
  animation: fill var(--stage-ms, 4000ms) linear forwards;
}
.stage-card.is-paused .stage-card__progress {
  animation: none;
  width: 0;
}
.stage-card__info {
  margin-top: 14px;
  min-height: 4.6em;
}
.stage-card__info h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: #009B4C;
  margin-bottom: 0.25rem;
}
.stage-card__info p {
  color: #5F6661;
  font-size: 0.92rem;
}

@keyframes fill {
  to {
    width: 100%;
  }
}
.marquee {
  display: block;
  background: #00843F;
  color: #FFFFFF;
  text-decoration: none;
  overflow: hidden;
  padding: 0.95rem 0;
}
.marquee:hover {
  color: #FFFFFF;
}
.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 34s linear infinite;
  font-weight: 500;
  white-space: nowrap;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.3rem;
  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid #E3E9E5;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
.pillar__icon {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  background: #DDF2E5;
}
.pillar p {
  font-size: 0.9rem;
  line-height: 1.75;
}

.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.journey::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #E3E9E5;
}
.journey__fill {
  position: absolute;
  top: 27px;
  left: 12.5%;
  height: 2px;
  width: 0;
  background: #009B4C;
  transition: width 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.journey__step {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  position: relative;
  text-align: center;
  padding: 0 0.6rem;
}
.journey__step h3 {
  font-size: 1rem;
  font-weight: 600;
}
.journey__step small {
  color: #5F6661;
}
.journey__step[aria-selected=true] h3 {
  color: #009B4C;
}
.journey__dot {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #FFFFFF;
  border: 2px solid #E3E9E5;
  font-size: 1.45rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.journey__step[aria-selected=true] .journey__dot {
  border-color: #009B4C;
  background: #DDF2E5;
  transform: scale(1.08);
}
@media (max-width: 767.98px) {
  .journey {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.8rem;
  }
  .journey::before, .journey__fill {
    display: none;
  }
}

.journey-panel {
  margin-top: 2.4rem;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 28px;
  background: #F5FFF4;
}
.journey-panel h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #009B4C;
  margin-bottom: 0.6rem;
}
.journey-panel .lbl {
  font-weight: 600;
  margin: 1.1rem 0 0.5rem;
}
.journey-panel__products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.journey-panel__product {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.8rem 0.35rem 0.35rem;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid #E3E9E5;
  text-decoration: none;
  color: #111111;
  font-weight: 500;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.journey-panel__product img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
  background: #F5FFF4;
}
.journey-panel__product:hover {
  border-color: #009B4C;
  color: #00843F;
}
.journey-panel .nutri {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.panel-swap {
  animation: swap 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes swap {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}
.finder-box {
  max-width: 780px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E3E9E5;
  border-radius: 28px;
  padding: clamp(24px, 5vw, 44px);
}
.finder-box__progress {
  height: 6px;
  border-radius: 6px;
  background: #E3E9E5;
  overflow: hidden;
  margin-bottom: 1.8rem;
}
.finder-box__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: #009B4C;
  transition: width 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.finder-box h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.finder-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 519.98px) {
  .finder-opts {
    grid-template-columns: 1fr;
  }
}

.finder-opt {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 1.1rem;
  border-radius: 20px;
  border: 1.5px solid #E3E9E5;
  background: #F6F9F7;
  text-align: left;
  font-weight: 500;
  transition: border-color 0.2s, transform 0.2s;
}
.finder-opt span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.finder-opt small {
  color: #5F6661;
  font-weight: 400;
}
.finder-opt:hover {
  border-color: #009B4C;
  transform: translateY(-2px);
}

.finder-result {
  text-align: center;
}
.finder-result h3 {
  color: #009B4C;
  margin: 0.9rem 0 0.5rem;
}
.finder-result p {
  max-width: 46em;
  margin: 0 auto 1.4rem;
}
.finder-result__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.review-card {
  background: #F5FFF4;
  border-radius: 26px;
  padding: clamp(24px, 3vw, 32px);
  height: 100%;
}
.review-card__quote {
  font-family: Georgia, serif;
  font-size: 3.2rem;
  line-height: 0.6;
  font-weight: 700;
  height: 26px;
  margin-top: 8px;
}
.review-card p {
  font-size: 1rem;
  margin-top: 0.4rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.3rem;
}
.reviewer__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #D9D9D9;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #555555;
  font-size: 0.9rem;
}
.reviewer__stars {
  color: #F5B400;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
.reviewer__name {
  font-size: 0.88rem;
  display: block;
  font-weight: 500;
}
.reviewer__meta {
  font-size: 0.76rem;
  color: #6B7B70;
  display: block;
}

.review-slider {
  position: relative;
}
@media (min-width: 576px) {
  .review-slider {
    padding-inline: 58px;
  }
}

.review-viewport {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}
.review-viewport:active {
  cursor: grabbing;
}

.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  background: #FFFFFF;
  box-shadow: 0 10px 24px rgba(14, 59, 42, 0.14);
}
.review-nav--prev {
  left: 0;
}
.review-nav--next {
  right: 0;
}
@media (pointer: coarse) {
  .review-nav {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 575.98px) {
  .review-nav {
    display: none;
  }
}

.review-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.review-dot {
  position: relative;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #CBD8CF;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.review-dot::after {
  content: "";
  position: absolute;
  inset: -17px -6px;
}
.review-dot:hover {
  background: #8FB89F;
}
.review-dot.is-active {
  background: #00843F;
  width: 22px;
  border-radius: 6px;
}
.review-dot:focus-visible {
  outline: 2px solid #00843F;
  outline-offset: 3px;
}

.review-play {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0 0.9rem;
  border-radius: 12px;
  border: 1px solid #E3E9E5;
  background: #FFFFFF;
  color: #1C2B22;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.review-play:hover {
  border-color: #009B4C;
  color: #00843F;
}
.review-play:focus-visible {
  outline: 2px solid #00843F;
  outline-offset: 2px;
}
.review-play__icon {
  width: 11px;
  height: 12px;
  background: currentColor;
  clip-path: polygon(0 0, 35% 0, 35% 100%, 0 100%, 0 0, 65% 0, 100% 0, 100% 100%, 65% 100%, 65% 0);
}
.review-play.is-paused .review-play__icon {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

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

.review-track {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  user-select: none;
  transition: transform 0.6s cubic-bezier(0.22, 0.8, 0.28, 1);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .review-track {
    transition: none;
  }
}

.review-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  display: flex;
}
.review-slide > .review-card {
  width: 100%;
}
@media (max-width: 991.98px) {
  .review-slide {
    flex-basis: calc((100% - 1rem) / 2);
  }
}
@media (max-width: 575.98px) {
  .review-slide {
    flex-basis: 100%;
  }
}

.cta-box {
  background: #00843F;
  color: #FFFFFF;
  border-radius: 28px;
  padding: clamp(36px, 7vw, 72px);
  position: relative;
  overflow: hidden;
}
.cta-box h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 600;
}
.cta-box p {
  opacity: 0.9;
  margin-top: 0.9rem;
  max-width: 40em;
}
.cta-box::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -80px;
  top: -120px;
  background: rgba(255, 255, 255, 0.07);
}
.cta-box > * {
  position: relative;
  z-index: 1;
}

.journey__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #009B4C;
  letter-spacing: 0.08em;
  margin-bottom: 0.1rem;
}

.journey-panel__aside {
  background: #FFFFFF;
  border: 1px solid #E3E9E5;
  border-radius: 20px;
  padding: 1.2rem;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.filter-btn {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0.5em 1.05em;
  border-radius: 9px;
  border: 1px solid #E3E9E5;
  background: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  color: #5F6661;
  transition: all 0.2s;
}
.filter-btn:hover {
  border-color: #009B4C;
  color: #00843F;
}
.filter-btn[aria-pressed=true] {
  background: #00843F;
  border-color: #00843F;
  color: #FFFFFF;
}

.catalog-tools {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.catalog-tools .form-control, .catalog-tools .form-select {
  border-radius: 12px;
  border-color: #E3E9E5;
  font-size: 0.92rem;
  min-height: 42px;
}
.catalog-tools .form-control:focus, .catalog-tools .form-select:focus {
  border-color: #009B4C;
  box-shadow: 0 0 0 3px rgba(0, 155, 76, 0.15);
}
.catalog-tools .form-control {
  min-width: 220px;
  width: auto;
}
@media (max-width: 575.98px) {
  .catalog-tools {
    width: 100%;
  }
  .catalog-tools .form-control {
    flex: 1;
    min-width: 0;
  }
}

.catalog-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #5F6661;
}

.catalog-count {
  font-size: 0.9rem;
  color: #5F6661;
  margin-bottom: 1rem;
}

.catalog-grid > [hidden] {
  display: none !important;
}

.catalog-grid > .is-entering {
  animation: swap 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.filter-btn__num {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.7;
}

.filter-btn__count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  margin-left: 0.2rem;
  border-radius: 10px;
  background: #DDF2E5;
  color: #00843F;
  font-size: 0.72rem;
}

.filter-btn[aria-pressed=true] .filter-btn__count {
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
}

.stage-intro {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.4rem;
  border-radius: 20px;
  background: #F5FFF4;
  border: 1px solid #DDF2E5;
}
.stage-intro[hidden] {
  display: none;
}
.stage-intro__icon {
  flex: 0 0 48px;
  height: 48px;
  border-radius: 14px;
  background: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}
.stage-intro p {
  font-size: 0.93rem;
  line-height: 1.7;
}

.detail {
  padding: clamp(28px, 4vw, 48px) 0 clamp(64px, 8vw, 96px);
  background: #FFFFFF;
}

@media (min-width: 992px) {
  .gallery {
    position: sticky;
    top: calc(var(--momi-header-h) + 20px);
  }
}
.gallery__main {
  position: relative;
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease, opacity 0.3s ease;
  transform-origin: var(--zx, 50%) var(--zy, 50%);
}
.gallery__main.is-zoom img {
  transform: scale(1.8);
}
.gallery__hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.35em 0.7em;
  border-radius: 8px;
  color: #5F6661;
  pointer-events: none;
}
.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #FFFFFF;
}
.gallery__nav--prev {
  left: 12px;
}
.gallery__nav--next {
  right: 12px;
}
.gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.gallery__thumb {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  flex: 0 0 76px;
  height: 76px;
  border-radius: 12px;
  border: 2px solid transparent;
  overflow: hidden;
  background: #F5FFF4;
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery__thumb[aria-current=true] {
  border-color: #009B4C;
}
.gallery__note {
  font-size: 0.8rem;
  color: #5F6661;
  margin-top: 0.6rem;
}

.detail-info .product-label {
  font-weight: 500;
  color: #009B4C;
  font-size: 0.95rem;
}
.detail-info h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 700;
  color: #009B4C;
  line-height: 1.18;
  margin: 0.35rem 0 0.7rem;
}
.detail-info .price {
  margin: 1.1rem 0 1.3rem;
}
.detail-info .summary {
  font-size: 1rem;
  line-height: 1.75;
}
.detail-info .highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.3rem 0 0;
}

.buy-box {
  margin-top: 1.6rem;
  padding: 1.3rem;
  border-radius: 20px;
  background: #F5FFF4;
  border: 1px solid #DDF2E5;
}
.buy-box__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.buy-box__title {
  font-weight: 600;
}
.buy-box__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 399.98px) {
  .buy-box__grid {
    grid-template-columns: 1fr;
  }
}
.buy-box__wa {
  grid-column: 1/-1;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #FFFFFF;
  border: 1px solid #E3E9E5;
  border-radius: 12px;
  padding: 3px;
}
.qty button {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  font-size: 1.1rem;
}
.qty button:hover {
  background: #F5FFF4;
}
.qty output {
  min-width: 2.2ch;
  text-align: center;
  font-weight: 600;
}

.info-tabs {
  margin-top: 2.2rem;
}
.info-tabs .nav {
  gap: 0.4rem;
  border-bottom: 1px solid #E3E9E5;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.info-tabs .nav::-webkit-scrollbar {
  display: none;
}
.info-tabs .nav-link {
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: #5F6661;
  font-weight: 500;
  padding: 0.8rem 0.2rem;
  margin-right: 1.2rem;
  white-space: nowrap;
  background: none;
}
.info-tabs .nav-link.active {
  color: #009B4C;
  border-bottom-color: #009B4C;
  background: none;
}
.info-tabs .nav-link:hover {
  color: #111111;
}
.info-tabs .tab-pane {
  padding-top: 1.3rem;
}
.info-tabs .tab-pane.is-active-fallback {
  display: block;
  opacity: 1;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}
.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.check-list li::before {
  content: "✓";
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #DDF2E5;
  color: #00843F;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 1px;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
  counter-reset: step;
}
.step-list li {
  display: flex;
  gap: 0.8rem;
  counter-increment: step;
}
.step-list li::before {
  content: counter(step);
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #00843F;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 600;
}

.warn-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}
.warn-list li {
  display: flex;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: #FFF6E5;
  border: 1px solid #F6E2B8;
}
.warn-list li::before {
  content: "!";
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E9A21A;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.disclaimer {
  font-size: 0.82rem;
  color: #5F6661;
  margin-top: 1.2rem;
}

.buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1035;
  background: #FFFFFF;
  border-top: 1px solid #E3E9E5;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.buy-bar.is-visible {
  transform: none;
}
.buy-bar__price {
  line-height: 1.2;
}
.buy-bar__price b {
  color: #009B4C;
  font-weight: 600;
  display: block;
}
.buy-bar__price s {
  color: #5F6661;
  font-size: 0.8rem;
}
.buy-bar .btn-momi {
  white-space: nowrap;
}
.buy-bar .btn-momi:first-of-type {
  margin-left: auto;
}
@media (min-width: 992px) {
  .buy-bar {
    display: none;
  }
}

.not-found {
  text-align: center;
  padding: 5rem 1rem;
}

.story {
  max-width: 760px;
  margin: 0 auto;
}
.story p {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}
.story p:first-of-type::first-letter {
  float: left;
  font-size: 3.6rem;
  line-height: 0.9;
  font-weight: 700;
  color: #009B4C;
  margin: 0.35rem 0.6rem 0 0;
}

.quote-band {
  background: #F5FFF4;
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
}
.quote-band blockquote {
  margin: 0 auto;
  max-width: 30em;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 600;
  color: #009B4C;
  line-height: 1.4;
}

.media-card {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #E9FBEF;
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 767.98px) {
  .stage-strip {
    grid-template-columns: 1fr 1fr;
  }
}
.stage-strip figure {
  margin: 0;
}
.stage-strip img {
  border-radius: 20px;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.stage-strip figure:hover img {
  transform: translateY(-4px);
}
.stage-strip figcaption {
  text-align: center;
  font-weight: 600;
  margin-top: 0.6rem;
}

.value-card {
  height: 100%;
  padding: 1.5rem;
  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid #E3E9E5;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border-color: #DDF2E5;
}
.value-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: #009B4C;
  margin: 0.25rem 0 0.6rem;
}
.value-card p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.brand-kit {
  background: #FFFFFF;
  border: 1px solid #E3E9E5;
  border-radius: 28px;
  padding: clamp(22px, 4vw, 36px);
}
.brand-kit__tile {
  border-radius: 20px;
  display: grid;
  place-items: center;
  padding: 1.6rem;
  height: 170px;
}
.brand-kit__tile img {
  max-height: 110px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-kit__tile--green {
  background: #00843F;
}
.brand-kit__tile--light {
  background: #F5FFF4;
}
.brand-kit figcaption {
  font-size: 0.85rem;
  color: #5F6661;
  margin-top: 0.5rem;
  text-align: center;
}

.commit-list {
  counter-reset: c;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.commit-list li {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid #E3E9E5;
  counter-increment: c;
}
.commit-list li::before {
  content: "0" counter(c);
  font-weight: 700;
  color: #009B4C;
  font-size: 1.3rem;
  line-height: 1.2;
}
.commit-list b {
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid #E3E9E5;
  text-decoration: none;
  color: #111111;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border-color: #009B4C;
  color: #111111;
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.2rem;
}
.contact-card__icon svg {
  width: 24px;
  height: 24px;
}
.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
}
.contact-card p {
  font-size: 0.88rem;
  color: #5F6661;
}
.contact-card span.go {
  margin-top: auto;
  font-weight: 500;
  color: #00843F;
  font-size: 0.9rem;
}

.form-card {
  background: #FFFFFF;
  border: 1px solid #E3E9E5;
  border-radius: 28px;
  padding: clamp(22px, 4vw, 36px);
}
.form-card .form-label {
  font-weight: 500;
  font-size: 0.92rem;
}
.form-card .form-control, .form-card .form-select {
  border-radius: 12px;
  border-color: #E3E9E5;
  padding: 0.7rem 0.9rem;
}
.form-card .form-control:focus, .form-card .form-select:focus {
  border-color: #009B4C;
  box-shadow: 0 0 0 3px rgba(0, 155, 76, 0.15);
}
.form-card .form-check-input:checked {
  background-color: #00843F;
  border-color: #00843F;
}
.form-card .form-note {
  font-size: 0.82rem;
  color: #5F6661;
}

.topic-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.topic-group input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.topic-group label {
  padding: 0.5em 1em;
  border-radius: 9px;
  border: 1px solid #E3E9E5;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: #5F6661;
  transition: all 0.2s;
}
.topic-group input:checked + label {
  background: #00843F;
  border-color: #00843F;
  color: #FFFFFF;
}
.topic-group input:focus-visible + label {
  outline: 3px solid #009B4C;
  outline-offset: 3px;
}

.stage-aspect {
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #E3E9E5;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.stage-aspect:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
.stage-aspect img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.stage-aspect__body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.stage-aspect__body p {
  font-size: 0.88rem;
  line-height: 1.65;
}
.stage-aspect__products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.6rem;
}
.stage-aspect__products a {
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.3em 0.75em;
  border-radius: 9px;
  background: #DDF2E5;
  color: #00843F;
  transition: background 0.2s, color 0.2s;
}
.stage-aspect__products a:hover {
  background: #00843F;
  color: #FFFFFF;
}

.story-lead {
  max-width: 640px;
}
