/* =========
   0. Fonts
   ========= */
@font-face {
  font-family: 'ClarimoUDPE';
  src: url('fonts/ClarimoUDPE-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ClarimoUDPE';
  src: url('fonts/ClarimoUDPE-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'ClarimoUDPE', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  color: var(--color-text);
}

.text-fuji-bold {
  font-weight: 700;
}

.text-fuji-green {
  color: var(--color-fuji-green);
}

.text-fuji-yellow {
  color: var(--color-fuji-yellow)
}

[id] {
  scroll-margin-top: calc(var(--header-top-height-shrunk) + 56px);
}

@media (max-width: 767.98px) {
  [id] {
    scroll-margin-top: calc(var(--header-top-height-shrunk) + 48px);
  }
}


@media (min-width: 1400px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1400px;
  }
}


/* =========
   2. CSS variables

   ========= */
:root {
  --text-xxl: 84px;
  --text-xl: 36px;
  --text-md: 38px;
  --text-sm: 18px;
  --text-xs: 16px;

  --header-top-height: 100px;
  --header-top-height-shrunk: 60px;
  --header-nav-height: 48px;
  --header-logo-height: 52px;
  --header-logo-height-shrunk: 28px;

  --color-fuji-green: #01916D;
  --color-fuji-yellow: #eff5dd;
  --color-text: #000000;
}

@media (max-width: 1399.98px) {
  :root {
    --text-xxl: 64px;
    --text-xl: 32px;
    --text-md: 24px;
    --text-sm: 17px;
    --text-xs: 15px;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --text-xxl: 52px;
    --text-xl: 28px;
    --text-md: 22px;
    --text-sm: 16px;
    --text-xs: 14px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --text-xxl: 42px;
    --text-xl: 28px;
    --text-md: 20px;
    --text-sm: 15px;
    --text-xs: 14px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --text-xxl: 32px;
    --text-xl: 28px;
    --text-md: 18px;
    --text-sm: 15px;
    --text-xs: 13px;
  }
}


/* =========
   3. Type-size utility classes
   ========= */
.text-size-xxl {
  font-size: var(--text-xxl) !important;
  line-height: 1.1;
}

.text-size-xl {
  font-size: var(--text-xl) !important;
  line-height: 1.2;
}

.text-size-md {
  font-size: var(--text-md) !important;
  line-height: 1.3;
}

.text-size-sm {
  font-size: var(--text-sm) !important;
  line-height: 1.5;
}

.text-size-xs {
  font-size: var(--text-xs) !important;
  line-height: 1.5;
}


/* =========
   4. Site header
   ========= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  background: #fff;
}

.header-top {
  position: relative;
  height: var(--header-top-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  will-change: height;
  padding: 0 1.5rem;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo img {
  height: var(--header-logo-height);
  width: auto;
  display: block;
  will-change: height;
}


.header-burger {
  display: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--color-fuji-green);
  color: #fff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.header-burger-icon {
  display: block;
  width: 22px;
  height: 16px;
  position: relative;
}

.header-burger-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.header-burger-icon span:nth-child(1) {
  top: 0;
}

.header-burger-icon span:nth-child(2) {
  top: 7px;
}

.header-burger-icon span:nth-child(3) {
  top: 14px;
}

.site-header.is-menu-open .header-burger-icon span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .header-burger-icon span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .header-burger-icon span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.header-nav {
  height: var(--header-nav-height);
  background: #016D52;
  display: flex;
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  height: 100%;
  width: 100%;
}

.header-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.header-nav-link:hover,
.header-nav-link:focus-visible {
  color: #fff;
  opacity: 0.75;
}

.header-offset {
  height: calc(var(--header-top-height) + var(--header-nav-height));
}

body.subnav-stuck .header-nav {
  height: 0;
}

/* =========
   Mobile (<992px): hide green bar, show burger menu
   ========= */
@media (max-width: 991.98px) {
  .header-top {
    justify-content: flex-start;
  }

  .header-burger {
    display: flex;
    z-index: 1050;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    background: var(--color-fuji-green);
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
  }

  .site-header.is-menu-open .header-nav {
    max-height: 80vh;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);

  }

  .site-header::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: -1;
  }

  .site-header.is-menu-open::before {
    opacity: 1;
    pointer-events: auto;
  }

  .header-nav-list {
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
    opacity: 0;
    height: 100%;
    transition: opacity 0.25s ease 0.1s;
  }

  .site-header.is-menu-open .header-nav-list {
    opacity: 1;
  }

  .header-nav-item {
    width: 100%;
    text-align: center;
  }

  .header-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 17px;
    font-weight: 600;
  }

  .header-nav-link:hover,
  .header-nav-link:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    opacity: 1;
  }

  .header-offset {
    height: var(--header-top-height);
  }

  body.subnav-stuck .header-nav {
    height: auto;
  }
}

/* =========================================================
   Nav-disabled state — hide green primary nav on desktop
   Toggle by adding/removing .nav-disabled on <body>
   ========================================================= */
body.nav-disabled .header-offset {
  height: var(--header-top-height);
}

@media (min-width: 992px) {
  body.nav-disabled .header-nav {
    display: none;
  }

  /* Subnav now sticks directly under the white header */
  body.nav-disabled .subnav {
    top: var(--header-top-height-shrunk);
  }
}

/* =========
   5. Hero with locked-position floating pins
   ========= */
.hero {
  width: 100%;
  background: #fff;
}

.hero-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1320 / 650;
  container-type: inline-size;
  container-name: hero;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content-wrap {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  max-width: 41%;
}

.hero-flexone {
  width: 18cqw;
  max-width: 350px;
  height: auto;
  margin-bottom: 2cqw;
  display: block;
}

.hero-headline {
  font-size: 3.4cqw;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1.4cqw;
  color: var(--color-text);
}

.hero-bottom {
  max-width: 400px;
}

.hardware .hero-bottom {
  max-width: 550px;
}

.hero-body {
  font-size: 1.15cqw;
  line-height: 1.55;
  margin: 0 0 2cqw;
  color: #333;
}

.btn-fuji {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  background: var(--color-fuji-green);
  color: #fff;
  padding: 1.4em 2em;
  border-radius: 10px;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  border: none;
}

.btn-fuji:hover,
.btn-fuji:focus-visible {
  background: #40AA56;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 145, 109, 0.3);
}

.btn-fuji svg {
  flex-shrink: 0;
}

.hero-price {
  font-size: 1.05cqw;
  margin: 1.6cqw 0 0;
  color: var(--color-text);
}

.hero-price strong {
  color: var(--color-fuji-green);
  font-weight: 700;
}

.hero-pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  will-change: transform;
  pointer-events: auto;
}

.hero-pin--icon {
  width: 5.4cqw;
  height: 5.4cqw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pin--label {
  background: var(--color-fuji-green);
  color: #fff;
  font-size: 1.2cqw;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  padding: 1.2cqw 2cqw;
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.10);
  white-space: nowrap;
}

.hero-bg--mobile {
  display: none;
}

@media (max-width: 967.98px) {
  .hero-stage {
    aspect-ratio: auto;
    container-type: normal;
    display: flex;
    flex-direction: column;
    background: #fff;
  }

  .hero-bg--desktop {
    display: none;
  }

  .hero-bg--mobile {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    order: 1;
  }

  .hero-pins {
    display: none;
  }

  .hero-content-wrap {
    position: static;
    height: auto;
    padding: 0;
    display: contents;
  }


  .hero-top {
    order: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    padding: 1.5rem 1.25rem 3rem;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.6) 70%,
        transparent 100%);
  }

  .hero-flexone {
    width: 150px;
    max-width: 60%;
    height: auto;
    margin: 0 auto 0.75rem;
  }

  .hero-headline {
    font-size: 28px;
    margin: 0;
    color: var(--color-text);
    line-height: 1.15;
  }

  .hero-bottom {

    order: 2;
    padding: 1.5rem 1.25rem 2.5rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-body {
    font-size: 16px;
    line-height: 1.55;
    margin: 0 0 1.25rem;
    color: #333;
  }

  .btn-fuji {
    font-size: 16px;
    padding: 0.85em 1.6em;
  }

  .hero-price {
    font-size: 15px;
    margin: 1rem 0 0;
  }

  .hero-stage {
    position: relative;
  }
}


/* =========
   6. Scroll reveal
   ========= */
[data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
}

[data-reveal="up"] {
  transform: translate3d(0, 32px, 0);
}

[data-reveal="down"] {
  transform: translate3d(0, -32px, 0);
}

[data-reveal="left"] {
  transform: translate3d(-32px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(32px, 0, 0);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="scale"] {
  transform: scale(0.94);
}

.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}


/* =========
   7. Video section
   ========= */
.video-section {
  position: relative;
  padding: 6rem 0;
  background-image: url(img/video-background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.video-heading {
  text-align: center;
  color: #fff;
  font-weight: 400;
  margin: 0 0 2.5rem;
  position: relative;
  z-index: 1;
}

.video-frame {
  position: relative;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px 0px rgba(0, 0, 0, 0.8);
  cursor: pointer;
  background: none;
  z-index: 1;
}

.video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}


.video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.video-frame:hover::after {
  background: rgba(0, 0, 0, 0.08);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(60px, 8%, 96px);
  aspect-ratio: 1;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.video-play img {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.25));
}

.video-frame:hover .video-play {
  transform: translate(-50%, -50%) scale(1.06);
}

.video-play:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 6px;
  border-radius: 50%;
}

.video-frame.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767.98px) {
  .video-section {
    padding: 5rem 0;
  }

  .video-heading {
    margin-bottom: 1.5rem;
  }
}

/* =========
   8. Secondary sub-navigation
   ========= */
.subnav {
  position: sticky;
  top: var(--header-top-height-shrunk);
  z-index: 1040;
  /* above .site-header so it's visible while green collapses */
  background: #2b2b2b;
  height: 56px;
  display: flex;
}

.subnav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  height: 100%;
}

.subnav-link {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.subnav-link:hover,
.subnav-link:focus-visible {
  color: #fff;
  opacity: 0.7;
}

@media (min-width: 992px) {
  .header-nav {
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  body.subnav-stuck .header-nav {
    height: 0;
  }
}

@media (max-width: 991.98px) {
  .subnav {
    display: none;
  }
}

/* =========
   9. Why FleXOne — feature grid
   ========= */
.why-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #e9f0d3 0%, #dde8c8 100%);
}

.why-heading {
  text-align: center;
  color: var(--color-fuji-green);
  margin: 0 0 3rem;
}

.why-grid {
  margin-bottom: 3rem;
}

.why-cell {
  text-align: center;
  padding-inline: 1.5rem;
}

.why-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.why-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.why-title {
  color: var(--color-fuji-green);
  font-size: 18px;
  margin: 0 0 0.75rem;
}

.why-body {
  color: var(--color-text);
  line-height: 1.55;
  margin: 0;
  max-width: 320px;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .why-grid-inner {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem 2rem;
    transform: none !important;
  }

  .why-cell {
    grid-column: span 2;
  }

  .why-cell:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .why-pagination {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .why-grid-inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    transform: none !important;
  }

  .why-pagination {
    display: none;
  }
}


@media (max-width: 767.98px) {
  .why-section {
    padding: 3rem 0;
  }

  .why-heading {
    margin-bottom: 2rem;
  }

  .why-icon {
    width: 80px;
    height: 80px;
  }

  .why-grid {
    overflow: hidden;
    padding-bottom: 2.5rem;
    margin-bottom: 2rem;
  }

  .why-cell {
    height: auto;
  }

  .why-pagination {
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .why-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(1, 145, 109, 0.25);
    opacity: 1;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .why-pagination .swiper-pagination-bullet-active {
    background: var(--color-fuji-green);
    transform: scale(1.15);
  }
}

/* =========
   10. Who Is FleXOne For
   ========= */
.who-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #1f9b6e 0%, #1a8b62 50%, #167a55 100%);
  overflow: hidden;
}

.who-heading,
.who-subheading {
  text-align: center;
  color: #fff;
  margin: 0 0 3rem;
}

.who-subheading {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.who-bubbles {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;

  height: 440px;
}

.who-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f4f5e8;
  padding: 1.3rem 1.5rem;
  border-radius: 999px;
  width: 420px;
  max-width: 90%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.who-bubble--r1-real {
  top: 0;
  left: 15%;
}

.who-bubble--r1-ghost {
  top: 0;
  right: 5%;
  width: 360px;
  transform: scale(0.7);
}

.who-bubble--r2-ghost {
  top: 38%;
  left: 0%;
  width: 360px;
  transform: scale(0.9);
}

.who-bubble--r2-real {
  top: 38%;
  right: 18%;
}

.who-bubble--r3-real {
  top: 75%;
  left: 15%;
}

.who-bubble--r3-ghost {
  top: 75%;
  right: 8%;
  width: 360px;
  transform: scale(0.8);
}

.who-bubble-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--color-fuji-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-bubble-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.who-bubble-text {
  margin: 0;
  line-height: 1.35;
  color: var(--color-text);
  font-weight: 500;
}

.who-bubble.is-ghost {
  opacity: 0.4;
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

@media (max-width: 991.98px) {
  .who-bubbles {
    height: 380px;
  }

  .who-bubble {
    width: 360px;
  }

  .who-bubble--r1-ghost,
  .who-bubble--r2-ghost,
  .who-bubble--r3-ghost {
    width: 300px;
  }
}

@media (max-width: 767.98px) {
  .who-section {
    padding: 4rem 0;
  }

  .who-bubbles {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .who-bubble {
    position: static;
    width: 100%;
    max-width: 100%;
  }

  .who-bubble.is-ghost {
    display: none;
  }
}

.who-industries {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.industry-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f5e8;
  color: var(--color-fuji-green);
  text-decoration: none;
  font-weight: 700;
  padding: 1.4rem 1rem;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.industry-pill:hover,
.industry-pill:focus-visible {
  background: #fff;
  color: var(--color-fuji-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991.98px) {
  .who-industries {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .who-industries {
    grid-template-columns: repeat(1, 1fr);
  }

  .industry-pill {
    padding: 1.2rem 0.5rem;
  }
}


/* =========
   11. Plan finder
   ========= */
.plan-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #e9f0d3 0%, #dde8c8 100%);
}

.plan-heading {
  text-align: center;
  color: var(--color-fuji-green);
  margin: 0 0 0.5rem;
}

.plan-subheading {
  text-align: center;
  color: var(--color-text);
  margin: 0 0 3rem;
}

.plan-form {
  margin: 0 auto;
}

.plan-step {
  position: relative;
  margin-bottom: 3rem;
  padding-top: 30px;
}

.plan-step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: var(--color-fuji-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.plan-step-card {
  background: #fff;
  border-radius: 14px;
  padding: 4rem 2rem 3.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.plan-step-title {
  text-align: center;
  color: var(--color-fuji-green);
  font-size: 22px;
  margin: 0 0 3rem;
}

.plan-options--pill {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.plan-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-option-pill {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.plan-option:hover .plan-option-pill {
  border-color: rgba(1, 109, 82, 0.4);
  transform: translateY(-2px);
}

.plan-option input:checked+.plan-option-pill {
  background: var(--color-fuji-green);
  background: linear-gradient(320deg, rgba(189, 214, 113, 1) 0%, rgba(1, 145, 109, 1) 100%);
  color: #fff;
  box-shadow: 0 6px 14px rgba(1, 109, 82, 0.3);
  transform: scale(1.1);
}

.plan-option input:focus-visible+.plan-option-pill {
  outline: 3px solid var(--color-fuji-green);
  outline-offset: 3px;
}

.plan-options--tier {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

.plan-tier {
  display: block;
  cursor: pointer;
}

.plan-tier input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-tier-card {
  position: relative;
  height: 100%;
  background: #f3f3f3;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.25s ease;
  overflow: hidden;
}

.plan-tier:hover .plan-tier-card {
  border-color: rgba(1, 109, 82, 0.4);
  transform: translateY(-2px);
}

.plan-tier input:checked+.plan-tier-card {
  background: var(--color-fuji-green);
  background: linear-gradient(280deg, rgba(189, 214, 113, 1) 0%, rgba(1, 145, 109, 1) 100%);
  border: none;
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  transform: scale(1.1);
}

.plan-tier input:checked+.plan-tier-card .plan-tier-name,
.plan-tier input:checked+.plan-tier-card .plan-tier-includes,
.plan-tier input:checked+.plan-tier-card .plan-tier-list {
  color: #fff;
}

.plan-tier-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #c8d96a;
  color: var(--color-text);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 0.5rem;
  text-align: center;
}

.plan-tier--featured .plan-tier-card {
  padding-top: 3rem;
}

.plan-tier-name {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.plan-tier-includes {
  font-size: 14px;
  color: #555;
  margin-bottom: 1.25rem;
}

.plan-tier-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text);
}

.plan-tier-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
}

.plan-tier-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-fuji-green);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.plan-tier input:checked+.plan-tier-card .plan-tier-list li::before {
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e8c4f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

.plan-result {
  text-align: center;
  margin-top: 2rem;
}

.plan-result-label {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.plan-result-price {
  margin: 0 0 2rem;
  color: var(--color-text);
  font-weight: 400;
}

.plan-result-amount,
.plan-result-amount-suffix,
.plan-result-tenure {
  color: var(--color-fuji-green);
  font-weight: 700;
}

.plan-cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.plan-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  padding: 1.3em 1.8em;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.plan-cta--solid {
  background: var(--color-fuji-green);
  color: #fff;
}

.plan-cta--solid:hover,
.plan-cta--solid:focus-visible {
  background: #40AA56;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 145, 109, 0.3);
}

.plan-cta--olive {
  background: #c8d96a;
  color: var(--color-text);
}

.plan-cta--olive:hover,
.plan-cta--olive:focus-visible {
  background: #b8c95a;
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

@media (min-width: 992px) {
  .plan-options--tier .swiper-wrapper {
    display: contents;
  }

  .plan-options--tier .swiper-pagination {
    display: none;
  }

  .plan-options--tier {
    overflow: visible !important;
  }
}

@media (max-width: 991.98px) {
  .plan-options--tier {
    grid-template-columns: none;
    max-width: 100%;
    padding-bottom: 2.5rem;
    overflow: hidden !important;
  }


  .plan-options--tier .swiper-wrapper {
    align-items: stretch;
  }

  .plan-options--tier .swiper-slide {
    height: auto;
    display: flex;
  }

  .plan-tier-card {
    width: 100%;
  }

  .plan-options--tier .swiper-pagination {
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }

  .plan-options--tier .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cfcfcf;
    opacity: 1;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .plan-options--tier .swiper-pagination-bullet-active {
    background: var(--color-fuji-green);
    transform: scale(1.15);
  }
}

@media (max-width: 767.98px) {
  .plan-options--pill {
    flex-direction: column;
  }

  .plan-section {
    padding: 3rem 0;
  }

  .plan-step-card {
    padding: 3rem 1.25rem 2rem;
  }

  .plan-step-title {
    font-size: 18px;
    margin-bottom: 1.5rem;
  }

  .plan-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .plan-cta {
    justify-content: center;
  }

  .plan-option input+.plan-option-pill {
    width: 100%;
    text-align: center;
  }

  .plan-option input:checked+.plan-option-pill {
    transform: scale(1);
  }

  .plan-tier input:checked+.plan-tier-card {
    transform: scale(1);
  }
}


/* =========
   12. How it works — slider with stepped pagination
   ========= */
.how-section {
  padding: 5rem 0;
  background: #fff;
  overflow: hidden;
}

.how-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
  margin: 0 auto 2.5rem;
}

.how-steps .swiper-pagination-bullet {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--color-fuji-green);
  color: var(--color-fuji-green);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  opacity: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  position: relative;
  z-index: 1;
}

.how-steps .swiper-pagination-bullet:hover {
  background: var(--color-fuji-green);
  color: #fff;
}

.how-steps .swiper-pagination-bullet-active {
  background: var(--color-fuji-green);
  color: #fff;
}

.how-steps .swiper-pagination-bullet:not(:last-child)::after {
  content: '';
  display: block;
  width: 110px;
  height: 2px;
  background: var(--color-fuji-green);
  position: absolute;
  left: 120%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.how-swiper {
  overflow: visible;
  padding-bottom: 2rem;
}

.how-slide {
  transition: opacity 0.4s ease;
  opacity: 0.4;
}

.how-slide.swiper-slide-active {
  opacity: 1;
}

.how-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: scale(0.88);
  transform-origin: center center;
  transition: transform 0.4s ease;
}

.swiper-slide-active .how-card {
  transform: scale(1);
}

.how-card-image {
  aspect-ratio: 16 / 10;
  background: #eee;
}

.how-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.how-card-body {
  padding: 2rem 2rem 2.5rem;
  text-align: center;
}

.how-card-title {
  color: var(--color-fuji-green);
  font-size: 22px;
  margin: 0 0 0.75rem;
}

.how-card-text {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.how-card-text strong {
  color: var(--color-text);
  font-weight: 700;
}

.how-cta-wrap {
  margin-top: 0rem;
}

@media (max-width: 991.98px) {
  .how-steps {
    gap: 40px;
  }

  .how-steps .swiper-pagination-bullet {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .how-steps .swiper-pagination-bullet:not(:last-child)::after {
    width: 40px;
  }
}

@media (max-width: 767.98px) {
  .how-section {
    padding: 3rem 0;
  }

  .how-card-body {
    padding: 1.5rem 1.25rem;
  }

  .how-card-title {
    font-size: 18px;
  }

  .how-card-text {
    font-size: 15px;
  }
}

/* =========
   13. More about FleXOne
   ========= */
.more-section {
  position: relative;
  padding: 6rem 0;
  background: var(--color-fuji-green);
  overflow: hidden;
  color: #fff;
}

.more-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.more-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.more-section .container {
  position: relative;
  z-index: 1;
}

.more-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem;
}


.more-subheading {
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

.more-grid {
  margin-bottom: 3.5rem;
  max-width: 1100px;
  margin-inline: auto;
}

.more-cell {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.more-icon {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.more-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.more-content {
  flex: 1;
}

.more-title {
  color: #eff5dd;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.more-title-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.more-title-link:hover {
  color: inherit;
  text-decoration: underline;
}

.more-text {
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 320px;
}

.btn-fuji--cream {
  background: #eff5dd;
  color: var(--color-fuji-green);
}

.btn-fuji--cream:hover,
.btn-fuji--cream:focus-visible {
  background: #fff;
  color: var(--color-fuji-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
}

@media (min-width: 768px) {
  .more-grid-inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    transform: none !important;
  }

  .more-pagination {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .more-section {
    padding: 4rem 0;
  }

  .more-icon {
    width: 72px;
    height: 72px;
  }

  .more-icon img {
    width: 100%;
    height: 100%;
  }
}


@media (max-width: 767.98px) {
  .more-section {
    padding: 3rem 0;
  }

  .more-intro {
    margin-bottom: 2.5rem;
  }

  .more-cell {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    height: auto;
  }

  .more-text {
    margin-inline: auto;
  }

  .more-grid {
    overflow: hidden;
    padding-bottom: 2.5rem;
    margin-bottom: 2rem;
  }


  .more-pagination {
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .more-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .more-pagination .swiper-pagination-bullet-active {
    background: #eff5dd;
    transform: scale(1.15);
  }
}


/* =========
   14. FAQs accordion
   ========= */
.faqs-section {
  padding: 5rem 0;
  background: #fbfbf2;
}

.faq-answer p:not(:last-child) {
  margin-bottom: 1rem;
}

.faqs-row {
  align-items: flex-start;
}

.faqs-heading {
  color: var(--color-fuji-green);
  margin: 0;
  position: sticky;
  top: calc(var(--header-top-height-shrunk) + 56px + 2rem);
}

.faqs-list {
  border-top: 1px solid #d3dcc4;
}

.faq-item {
  border-bottom: 1px solid #d3dcc4;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary {
  list-style: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.faq-item[open] .faq-question {
  color: var(--color-fuji-green);
}

.faq-question:hover {
  color: var(--color-fuji-green);
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-fuji-green);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #b8b8b8;
  position: relative;
  transition: background 0.25s ease, transform 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 1px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon {
  background: var(--color-fuji-green);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 0.5rem 1.75rem;
  color: #444;
  font-size: 15px;
  line-height: 1.65;
  max-width: 720px;
  overflow: hidden;

}

.faq-answer p {
  margin: 0;
}

@media (max-width: 991.98px) {
  .faqs-heading {
    position: static;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .faqs-section {
    padding: 3rem 0;
  }

  .faq-question {
    font-size: 15px;
    padding: 1.25rem 0.25rem;
    gap: 1rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
  }

  .faq-answer {
    padding: 0 0.25rem 1.25rem;
    font-size: 14px;
  }
}

/* =========
   15. Resources & Insights
   ========= */
.resources-section {
  padding: 5rem 0;
  background: #fff;
}

.resources-heading {
  text-align: center;
  color: var(--color-fuji-green);
  margin: 0 0 3rem;
}

.resources-grid {
  margin-bottom: 0;
}


@media (min-width: 768px) {
  .resources-grid-inner {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    transform: none !important;
  }

  .resources-pagination {
    display: none;
  }
}

.resource-card {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
  background: transparent;
  border: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  transform: translateY(-4px);
  color: inherit;
}

.resource-card:focus-visible {
  outline: 3px solid var(--color-fuji-green);
  outline-offset: 6px;
  border-radius: 14px;
}

.resource-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s ease;
}

.resource-card:hover .resource-thumb {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.resource-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.resource-card:hover .resource-thumb img {
  transform: scale(1.04);
}

.resource-tag {
  position: absolute;
  top: 1rem;
  right: 0;
  background: #c8d96a;
  color: var(--color-text);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
  border-radius: 6px 0 0 6px;
}

.resource-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(56px, 14%, 80px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.25s ease;
}

.resource-play img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.3));
}

.resource-card:hover .resource-play {
  transform: translate(-50%, -50%) scale(1.06);
}

.resource-body {
  padding: 1.5rem 0 0;
}

.resource-title {
  color: var(--color-fuji-green);
  font-size: 18px;
  margin: 0 0 1rem;
}

.resource-text {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767.98px) {
  .resources-section {
    padding: 3rem 0;
  }

  .resources-heading {
    margin-bottom: 2rem;
  }

  .resources-grid {
    overflow: hidden;
    padding-bottom: 2.5rem;
  }

  .resource-cell {
    height: auto;
  }

  .resource-title {
    font-size: 16px;
  }

  .resources-pagination {
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .resources-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cfcfcf;
    opacity: 1;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .resources-pagination .swiper-pagination-bullet-active {
    background: var(--color-fuji-green);
    transform: scale(1.15);
  }
}

/* =========
   Video modal
   ========= */
.video-modal .modal-content {
  background: transparent;
  border: 0;
  border-radius: 0;
}

.video-modal-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-el {
  width: 100%;
  height: 100%;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s ease;
}

.video-modal-close:hover {
  opacity: 0.7;
}

@media (max-width: 767.98px) {
  .video-modal-close {
    right: 1rem;
  }
}

/* =========
   16. Timeline — 60 Years
   ========= */
.timeline-section {
  position: relative;
  padding: 5rem 0 4rem;
  background: var(--color-fuji-green);
  color: #fff;
  overflow: hidden;
}

.timeline-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.timeline-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline-section .container {
  position: relative;
  z-index: 1;
}

.timeline-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.timeline-logo--fuji {
  width: 400px;
  height: auto;
}

.timeline-logo-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.5);
}

.timeline-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.timeline-body {
  margin: 0;
  line-height: 1.6;
  color: #fff;
}

.timeline-track-wrap {
  position: relative;
  z-index: 1;
}


.timeline-track {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
}

.timeline-track::-webkit-scrollbar {
  display: none;
}

.timeline-track-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 420px;
  width: max-content;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
      transparent 0%,
      #b8e0c4 8%,
      #b8e0c4 92%,
      transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.timeline-item {
  position: relative;
  flex: 0 0 auto;
  width: var(--timeline-item-width, 280px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
}

.timeline-dot {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #b8e0c4;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow:
    0 0 0 4px rgba(184, 224, 196, 0.25),
    0 0 12px 4px rgba(184, 224, 196, 0.55),
    0 0 24px 8px rgba(184, 224, 196, 0.25);
}

.timeline-content {
  position: absolute;
  left: 1rem;
  right: 1rem;
}

.timeline-year {
  font-size: 18px;
  margin-bottom: 0.5rem;
  color: #fff;
}

.timeline-text {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}

.timeline-text strong {
  color: #fff;
  font-weight: 700;
}

.timeline-item:nth-child(odd) .timeline-content {
  bottom: calc(50% + 30px);
}

.timeline-item:nth-child(even) .timeline-content {
  top: calc(50% + 30px);
}

/*.timeline-item .timeline-content::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  height: 16px;
  background: #b8e0c4;
  transform: translateX(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  bottom: -22px;
} */

.timeline-item:nth-child(even) .timeline-content::before {
  top: -22px;
}

/* =========
   Buttons
   ========= */
.timeline-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.timeline-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.timeline-btn:hover {
  background: rgba(0, 0, 0, 1);
  transform: scale(1.05);
}

.timeline-btn--primary {
  background: #000;
}

.timeline-btn--primary:hover {
  background: #000;
}

.timeline-btn.is-disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

.timeline-btn.is-disabled:hover {
  background: rgba(0, 0, 0, 1);
}

.timeline-cta-wrap {
  margin-top: 1rem;
}

@media (max-width: 767.98px) {
  .timeline-section {
    padding: 3rem 0;
  }

  .timeline-logos {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .timeline-logo--fuji {
    width: 250px;
    height: auto;
  }

  .timeline-logo-divider {
    height: 36px;
  }

  .timeline-intro {
    margin-bottom: 2rem;
  }

  .timeline-track-inner {
    min-height: 400px;
  }

  .timeline-item {
    width: var(--timeline-item-width-mobile, 240px);
    min-height: 420px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .timeline-year {
    font-size: 18px;
  }

  .timeline-text {
    font-size: 14px;
  }
}

/* =========
   17. Footer
   ========= */
.site-footer {
  background: #000;
  color: #fff;
  padding: 3rem 0 2.5rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 40px;
  display: block;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.15s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #fff;
  opacity: 1;
}

.footer-copyright {
  color: #fff;
  font-size: 12px;
  margin: 0;
  letter-spacing: 0.04em;
}

@media (max-width: 767.98px) {
  .site-footer {
    padding: 2rem 0;
  }

  .site-footer .container {
    text-align: center;
  }

  .footer-row {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    flex-direction: column;
  }

  .footer-link {
    font-size: 13px;
  }

  .footer-copyright {
    font-size: 12px;
  }
}




/* =========
   Hardware page
   ========= */

/* =========================================================
   Apeos Standard — looping slider with arrow cursor
   ========================================================= */
.apeos-section {
  position: relative;
  padding: 5rem 0;
  background: var(--color-fuji-green);
  color: #fff;
  overflow: hidden;
}

.apeos-heading {
  color: #fff;
  margin: 0 0 3rem;
}


.apeos-swiper {
  overflow: visible;
  padding-bottom: 3rem;
  cursor: pointer;
}

/* ---- Slides ---- */
.apeos-slide {
  height: auto;
  display: flex;
  transition: opacity 0.4s ease;
  opacity: 0.8;
}

.apeos-slide.swiper-slide-active {
  opacity: 1;
}

.apeos-card {
  background: #eff5dd;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  width: 100%;
  transform: scale(0.88);
  transform-origin: center;
  transition: transform 0.4s ease, background 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.swiper-slide-active .apeos-card {
  transform: scale(1);
  background: #fff;
}

.apeos-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.apeos-icon-circle {
  width: 100%;
  height: 100%;
  background: var(--color-fuji-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apeos-icon-circle img {
  width: 50%;
  height: 50%;
  display: block;
}

.apeos-icon-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background: #c8d96a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.apeos-title {
  color: var(--color-fuji-green);
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 1.5rem;
}

.apeos-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
  text-align: left;
  color: var(--color-text);
}

.apeos-list li {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.apeos-list li:last-child {
  margin-bottom: 0;
}

.apeos-list strong {
  color: var(--color-text);
  font-weight: 700;
}

.apeos-slider-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.apeos-swiper {
  overflow: visible;
  padding-bottom: 1rem;
  cursor: pointer;
}

.apeos-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 0 1rem;
  cursor: default;
}

.apeos-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.apeos-pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.2);
}

.apeos-cta-wrap {
  margin-top: 1rem;
}

@media (max-width: 991.98px) {
  .apeos-section {
    padding: 4rem 0;
  }

  .apeos-card {
    padding: 2rem 1.5rem;
  }

  .apeos-title {
    font-size: 18px;
  }

  .apeos-list li {
    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .apeos-section {
    padding: 3rem 0;
  }

  .apeos-swiper {
    cursor: grab;
  }
}

/* =========================================================
   Hardware intro — two-column image + copy block
   ========================================================= */
.hw-intro-section {
  padding: 5rem 0;
  background: var(--color-fuji-yellow);
}

.hw-intro-image {
  width: 100%;
  height: auto;
  display: block;
}

.hw-intro-heading {
  margin: 0 0 1.5rem;
  line-height: 1.15;
  max-width: 540px;
}

.hw-intro-body {
  margin: 0 0 2rem;
  color: var(--color-text);
  line-height: 1.6;
  max-width: 540px;
}

.hw-intro-body strong {
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .hw-intro-section {
    padding: 3rem 0;
  }

  .hw-intro-content-col {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hw-intro-heading {
    margin-bottom: 1rem;
  }

  .hw-intro-body {
    margin-bottom: 1.5rem;
  }
}

/* =========================================================
   Hardware intro — Printing grid
   ========================================================= */
.hardware .why-heading {
  text-align: center;
  color: #fff;
  margin: 0 0 3rem;
}

.hardware .why-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #097453 0%, #097453 100%);
}

.hardware .why-body {
  color: #fff;
  line-height: 1.55;
  margin: 0;
  max-width: 290px;
  margin-inline: auto;
}

@media (max-width: 767.98px) {
  .hardware .why-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .hardware .why-pagination .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.15);
  }

}

/* =========================================================
   Awards and Certifications — uniform-size logo slider
   ========================================================= */
.awards-section {
  padding: 4rem 0;
  background: #f4f4f4;
}

.awards-heading {
  margin: 0 0 2.5rem;
}

.awards-swiper {
  overflow: hidden;
}

.awards-slide {
  height: auto;
  display: flex;
}

.awards-card {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.awards-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.awards-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.awards-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(1, 145, 109, 0.3);
  opacity: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.awards-pagination .swiper-pagination-bullet-active {
  background: var(--color-fuji-green);
  transform: scale(1.2);
}

@media (max-width: 767.98px) {
  .awards-section {
    padding: 3rem 0;
  }

  .awards-heading {
    margin-bottom: 2rem;
  }

  .awards-card {
    padding: 1.5rem;
  }
}


/* =========================================================
   Section background — locked to iceberg waterline via JS
   ========================================================= */
.iceberg-section {
  position: relative;
  padding: 5rem 0 4rem;
  background: #1aa57a;
  color: #fff;
  overflow: hidden;
}

.iceberg-section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: var(--waterline-y, 50%);
  bottom: 0;
  background: #0d6e54;
  z-index: 0;
  pointer-events: none;
}

.iceberg-section .container {
  position: relative;
  z-index: 1;
}

.iceberg-intro {
  max-width: 720px;
  margin: 0 auto 4rem;
}

.iceberg-intro-heading {
  color: #fff;
  margin: 0 0 1.5rem;
}

.iceberg-intro-body {
  color: #fff;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.iceberg-intro-body strong {
  font-weight: 700;
}

.iceberg-heading {
  color: var(--color-fuji-yellow);
  margin: 0 0 -2rem;
  line-height: 1.05;
}


.iceberg-stage {
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1100 / 1000;
  --iceberg-waterline-pct: 0.345;
}

.iceberg-image {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: auto;
  max-width: 100%;
  transform: translateX(-50%);
  display: block;
}

.iceberg-item {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--y);
  height: 0;
  transition: opacity 0.3s ease;
}

.iceberg-dot {
  position: absolute;
  top: 0;
  left: var(--dot-x);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.15),
    0 0 16px 6px rgba(238, 245, 221, 0.45),
    0 0 32px 10px rgba(238, 245, 221, 0.2);
}

.iceberg-line {
  position: absolute;
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 1;
}

.iceberg-item--right .iceberg-line {
  left: var(--dot-x);
  /* from dot */
  right: 0;
  /* to stage's right edge = container edge */
}

.iceberg-item--left .iceberg-line {
  left: 0;
  /* from stage's left edge */
  right: calc(100% - var(--dot-x));
  /* to dot */
}

.iceberg-text {
  position: absolute;
  top: -1rem;
  transform: translateY(-100%);
  width: 500px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.iceberg-item--right .iceberg-text {
  right: 0;
  align-items: flex-end;
  text-align: right;
}

.iceberg-item--left .iceberg-text {
  left: 0;
  align-items: flex-start;
  text-align: left;
}

.iceberg-toggle {
  position: static;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #c8d96a;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

.iceberg-toggle:hover {
  transform: scale(1.1);
}

.iceberg-toggle-icon {
  position: relative;
  width: 12px;
  height: 12px;
}

.iceberg-toggle-icon::before,
.iceberg-toggle-icon::after {
  content: '';
  position: absolute;
  background: var(--color-text);
  border-radius: 1px;
}

.iceberg-toggle-icon::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.iceberg-toggle-icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  transition: opacity 0.25s ease;
}

.iceberg-item.is-open .iceberg-toggle-icon::after {
  opacity: 0;
}

.iceberg-item::before {
  display: none;
}

.iceberg-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.iceberg-body {
  height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
}

.iceberg-body p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 0.5rem;
}

.iceberg-body p:last-child {
  margin: 0;
}

.iceberg-note {
  font-size: 12px !important;
  opacity: 0.7;
  font-style: italic;
  margin-top: 0.5rem !important;
}


/* =========================================================
   Opacity gradient — items deeper underwater are dimmer
   ========================================================= */
.iceberg-item[data-iceberg-depth="0"] {
  opacity: 1;
}

.iceberg-item[data-iceberg-depth="1"] {
  opacity: 1;
}

.iceberg-item[data-iceberg-depth="2"] {
  opacity: 0.8;
}

.iceberg-item[data-iceberg-depth="3"] {
  opacity: 0.6;
}

.iceberg-item[data-iceberg-depth="4"] {
  opacity: 0.5;
}

.iceberg-item[data-iceberg-depth="5"] {
  opacity: 0.3;
}

.iceberg-item.is-open {
  opacity: 1 !important;
}

.iceberg-mobile-panel {
  display: none;
}

.iceberg-outro {
  max-width: 720px;
  margin: 4rem auto 0;
}

.iceberg-outro-heading {
  color: #fff;
  font-size: 28px;
  margin: 0 0 1rem;
}

.iceberg-outro-body {
  color: #fff;
  margin: 0 0 2rem;
  line-height: 1.6;
}

/* =========================================================
   Mobile (<768px) — dots only on iceberg
   ========================================================= */
@media (max-width: 767.98px) {
  .iceberg-section {
    padding: 3rem 0;
    background: #0d6e54;
  }

  .iceberg-intro {
    margin-bottom: 2.5rem;
  }

  .iceberg-heading {
    font-size: 32px;
    margin: 0 0 1rem;
  }

  .iceberg-stage {
    max-width: 400px;
    aspect-ratio: 1 / 1.4;
  }

  .iceberg-line {
    display: none;
  }

  .iceberg-dot {
    display: none;
  }

  .iceberg-title {
    display: none;
  }

  .iceberg-body {
    display: none;
  }

  .iceberg-item::before {
    display: none;
  }

  .iceberg-text {
    top: 0 !important;
    left: var(--dot-x) !important;
    right: auto !important;
    width: auto;
    transform: none;
    align-items: flex-start;
    gap: 0;
  }

  .iceberg-toggle {
    width: 20px;
    height: 20px;
    background: var(--color-fuji-yellow);
    transform: translate(-50%, -50%);
  }

  .iceberg-toggle:hover {
    transform: translate(-50%, -50%) scale(1.2);
  }

  .iceberg-toggle-icon {
    display: none;
  }

  .iceberg-item.is-open .iceberg-toggle {
    background: #fff;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
  }

  .iceberg-item[data-iceberg-depth] {
    opacity: 1;
  }

  .iceberg-mobile-panel {
    display: block;
    margin: 2rem auto 0;
    max-width: 100%;
    padding: 1.5rem;
    border-radius: 12px;
    min-height: 120px;
  }

  .iceberg-mobile-title {
    color: var(--color-fuji-yellow);
    font-size: 18px;
    margin: 0 0 0.75rem;
  }

  .iceberg-mobile-body p {
    color: #fff;
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 0.5rem;
  }

  .iceberg-mobile-body p:last-child {
    margin: 0;
  }

  .iceberg-mobile-body .iceberg-note {
    font-size: 12px;
    opacity: 0.7;
    font-style: italic;
  }
}

/* =========
   Smarter printing costs
   ========= */

.smarter-printing-heading {
  text-align: center;
  color: var(--color-fuji-green);
  margin: 0 0 2rem;
}

.smarter-printing-subheading {
  text-align: center;
  color: var(--color-text);
  margin: 0 0 3rem;
}

.elfsight-app-3e479190-d7ce-4fe4-9d63-d9c7cbde26f1 {
  font-family: 'ClarimoUDPE', system-ui, -apple-system, Segoe UI, Roboto, sans-serif !important;
}

.elfsight-app-3e479190-d7ce-4fe4-9d63-d9c7cbde26f1 * {
  font-family: 'ClarimoUDPE', system-ui, -apple-system, Segoe UI, Roboto, sans-serif !important;
}

/* =========
   Supplies page
   ========= */

/* =========================================================
   Supplies — Toner And Paper Supply
   ========================================================= */

.supplies-toner-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1aa57a 0%, #167a55 100%);
  color: #fff;
}

.supplies-toner-heading {
  color: #fff;
  margin: 0 0 1.5rem;
  line-height: 1.1;
}

.supplies-toner-body {
  color: #fff;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.supplies-toner-body:last-of-type {
  margin-bottom: 2rem;
}

.supplies-toner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
}

.supplies-toner-cell {
  text-align: center;
}

.supplies-toner-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.supplies-toner-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.supplies-toner-label {
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 260px;
}

@media (max-width: 991.98px) {
  .supplies-toner-section {
    padding: 3rem 0;
  }

  .supplies-toner-grid {
    gap: 2.5rem 1.5rem;
  }

  .supplies-toner-icon {
    width: 100px;
    height: 100px;
  }

  .supplies-toner-icon img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 575.98px) {
  .supplies-toner-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* =========================================================
   Supplies — Triage Pyramid
   ========================================================= */
.supplies-pyramid-section {
  padding: 5rem 0 0 0;
  background: #f4f4f4;
  overflow: hidden;
}

.pyramid-intro {
  max-width: 820px;
  margin: 0 auto 3rem;
}

.pyramid-heading {
  margin: 0 0 1.25rem;
  line-height: 1.15;
}

.pyramid-body {
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 2.5rem;
}

.pyramid-subheading {
  font-size: 20px;
  margin: 0;
}

/* =========================================================
   Pyramid stage and stacked layers
   ========================================================= */
.pyramid-stage {
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1400 / 900;
}

.pyramid-stack {
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pyramid-layer {
  display: flex;
  justify-content: center;
  width: 100%;
  transition: opacity 0.4s ease;
  opacity: 0.5;
  text-align: center;
  text-align: -webkit-center;
}

.pyramid-layer img {
  display: block;
  max-width: 100%;
  height: auto;
}

.pyramid-layer[data-pyramid-layer="top"] img {
  width: 100%;
}

.pyramid-layer[data-pyramid-layer="middle"] img {
  width: 100%;
}

.pyramid-layer[data-pyramid-layer="bottom"] img {
  width: 100%;
}

.layer-top {
  position: relative;
  z-index: 10;
  margin-bottom: -75px;
}

.layer-middle {
  position: relative;
  z-index: 5;
  margin-bottom: -165px;
}

.layer-bottom {
  position: relative;
  z-index: 1;
}

/* =========================================================
   Item labels — dot, line, text
   ========================================================= */
.pyramid-item {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--y);
  height: 0;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  pointer-events: auto;
  z-index: 20;
}


.pyramid-dot {
  position: absolute;
  top: 0;
  left: var(--dot-x);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #006149;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  box-shadow:
    0 0 0 4px rgba(1, 145, 109, 0.15),
    0 0 16px 4px rgba(1, 97, 73, 0.25);
}

.pyramid-line {
  position: absolute;
  top: 0;
  height: 1px;
  background: #006149;
  pointer-events: none;
  z-index: 1;
}

.pyramid-item--right .pyramid-line {
  left: var(--dot-x);
  right: 0;
}

.pyramid-item--left .pyramid-line {
  left: 0;
  right: calc(100% - var(--dot-x));
}

.pyramid-text {
  position: absolute;
  top: -0.75rem;
  transform: translateY(-100%);
  width: 320px;
  z-index: 2;
}

.pyramid-item--right .pyramid-text {
  right: 0;
  text-align: right;
}

.pyramid-item--left .pyramid-text {
  left: 0;
  text-align: left;
}

.pyramid-text-title {
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

.pyramid-text-body {
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* =========================================================
   Mobile — stack vertically with text below each layer
   ========================================================= */
@media (max-width: 1200px) {
  .supplies-pyramid-section {
    padding: 3rem 0;
  }

  .pyramid-intro {
    margin-bottom: 2.5rem;
  }

  .pyramid-stage {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pyramid-stack {
    display: contents;
  }

  .pyramid-layer,
  .pyramid-item {
    opacity: 1 !important;
  }

  [data-pyramid-layer="top"] {
    order: 1;
  }

  [data-pyramid-link="top"] {
    order: 2;
  }

  [data-pyramid-layer="middle"] {
    order: 3;
  }

  [data-pyramid-link="middle"] {
    order: 4;
  }

  [data-pyramid-layer="bottom"] {
    order: 5;
  }

  [data-pyramid-link="bottom"] {
    order: 6;
  }

  .pyramid-layer {
    width: auto;
    margin: 0 auto;
  }

  .pyramid-layer[data-pyramid-layer="top"] img,
  .pyramid-layer[data-pyramid-layer="middle"] img {
    width: auto;
    max-height: 330px;
  }

  .pyramid-layer[data-pyramid-layer="bottom"] img {
    width: auto;
    max-height: 430px;
  }

  .pyramid-dot,
  .pyramid-line {
    display: none;
  }

  .pyramid-item {
    position: static;
    height: auto;
    width: 100%;
    margin-bottom: 2rem;
  }

  .pyramid-text {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
    padding: 1rem 1rem 0;
  }

  .pyramid-item--right .pyramid-text,
  .pyramid-item--left .pyramid-text {
    text-align: center;
  }
}

@media (max-width: 575.98px) {

  .pyramid-layer[data-pyramid-layer="top"] img,
  .pyramid-layer[data-pyramid-layer="middle"] img {
    width: auto;
    max-height: 130px;
  }

  .pyramid-layer[data-pyramid-layer="bottom"] img {
    width: auto;
    max-height: 180px;
  }
}

/* =========================================================
   Supplies — Features grid with folder
   ========================================================= */
.supplies-features-section {
  padding: 5rem 0;
  background: var(--color-fuji-yellow);
}

.features-heading {
  margin: 0 auto 3.5rem;
  max-width: 900px;
  line-height: 1.2;
}

.features-stage {
  position: relative;
}

.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.25rem;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-label {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-text);
}

/* =========================================================
   Desktop — 3x2 grid + tilted cards over folder
   ========================================================= */
@media (min-width: 768px) {
  .supplies-features-section {
    padding-bottom: 8rem;
  }

  .features-stage {
    overflow: visible;
  }

  .features-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 3rem;
    transform: none !important;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
  }

  .feature-card {
    transition: transform 0.3s ease;
  }

  .feature-card--tilt {
    z-index: 2;
  }



  .features-folder {
    width: 360px;
    height: auto;
    z-index: 10;
    position: relative;
    pointer-events: none;
    display: block;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
  }

  .features-pagination {
    display: none;
  }
}

/* =========================================================
   Mobile — swiper, no tilts, no folder
   ========================================================= */
@media (max-width: 767.98px) {
  .supplies-features-section {
    padding: 3rem 0;
  }

  .features-heading {
    margin-bottom: 2rem;
  }

  .features-stage {
    overflow: hidden;
    padding-bottom: 2.5rem;
  }

  .feature-card {
    height: auto;
  }

  .feature-card--tilt {
    transform: none !important;
  }

  .features-folder {
    display: none;
  }

  .features-pagination {
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .features-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(1, 145, 109, 0.3);
    opacity: 1;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .features-pagination .swiper-pagination-bullet-active {
    background: var(--color-fuji-green);
    transform: scale(1.2);
  }
}


/* =========================================================
   Supplies — Remote Support, Real-World Expertise
   ========================================================= */
.supplies-remote-section {
  padding: 5rem 0;
  background: #f4f4f4;
}

.remote-heading {
  margin: 0 0 1.5rem;
}

.remote-body {
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 auto 4rem;
  max-width: 720px;
}

.remote-cell {
  text-align: center;
}

.remote-icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 1.5rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.remote-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.remote-label {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 300px;
}

.remote-label strong {
  font-weight: 700;
}

/* =========================================================
   Desktop — 3-column grid
   ========================================================= */
@media (min-width: 768px) {
  .remote-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    transform: none !important;
  }

  .remote-pagination {
    display: none;
  }
}

/* =========================================================
   Mobile — swiper
   ========================================================= */
@media (max-width: 767.98px) {
  .supplies-remote-section {
    padding: 3rem 0;
  }

  .remote-body {
    margin-bottom: 2.5rem;
  }

  .remote-stage {
    overflow: hidden;
    padding-bottom: 2.5rem;
  }

  .remote-icon {
    width: 110px;
    height: 110px;
  }

  .remote-icon img {
    width: 100%;
    height: 100%;
  }

  .remote-pagination {
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .remote-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(1, 145, 109, 0.3);
    opacity: 1;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .remote-pagination .swiper-pagination-bullet-active {
    background: var(--color-fuji-green);
    transform: scale(1.2);
  }
}

/* =========================================================
   Supplies — Detailed Price Comparison
   ========================================================= */
.supplies-comparison-section {
  padding: 5rem 0;
  background: #fff;
}

.comparison-heading {
  margin: 0 0 2rem;
}

/* =========================================================
   Mobile tier select + desktop collapse/expand controls
   ========================================================= */
.comparison-tier-select-wrap {
  display: none;
  position: relative;
  max-width: 320px;
  margin: 0 auto 2rem;
}

.comparison-tier-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding: 12px 44px 12px 18px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16'><path d='M6 9l6 6 6-6' stroke='%23333' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat right 14px center;
  font-family: inherit;
  font-size: 15px;
  color: var(--color-text);
  cursor: pointer;
}

.comparison-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #999;
  font-size: 14px;
}

.comparison-control {
  background: none;
  border: none;
  color: var(--color-fuji-green);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  padding: 4px 6px;
}

.comparison-control:hover {
  text-decoration: underline;
}

/* =========
   Pricing page
   ========= */

/* =========================================================
   Tier headers row
   ========================================================= */
.comparison-tier-headers {
  display: grid;
  grid-template-columns: 30% 1fr 1fr 1fr;
  align-items: end;
}
.comparison-tier-headers .price {
  margin: 0.35rem 0 0;
  font-size: 13px;
  color: var(--color-fuji-green);
  line-height: 1.5;
}
.comparison-tier-header {
  padding: 1rem 0rem;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.comparison-tier-header--standard {
  background: #f0f5d8;
  position: relative;
  padding-top: 0;
  border-radius: 20px 20px 0px 0px;
}

.comparison-tier-badge {
  display: block;
  background: #c8d96a;
  color: #4a5a1a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.45rem 0;
  margin-bottom: 0.5rem;
  border-radius: 20px 20px 0px 0px;
}

/* =========================================================
   Group (collapsible section)
   ========================================================= */
.comparison-group {
  margin-bottom: 0rem;
}

.comparison-group-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-fuji-green);
  color: #fff;
  border: none;
  padding: 0.85rem 1.25rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  border-radius: 4px;
}

.comparison-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.comparison-group.is-collapsed .comparison-chevron {
  transform: rotate(180deg);
}

.is-collapsed {
  margin-bottom: 1rem;
}

.comparison-group-body {
  overflow: hidden;
}

/* =========================================================
   Rows
   ========================================================= */
.comparison-row {
  display: grid;
  grid-template-columns: 30% 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid #C0C0C0;
}

.comparison-feature {
  padding: 1.25rem;
  font-size: 14px;
  color: var(--color-text);
}

.comparison-feature strong {
  font-weight: 700;
  display: block;
}

.comparison-feature p {
  margin: 0.35rem 0 0;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}
.comparison-cell {
  padding: 1.25rem;
  text-align: center;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-tier="standard"] {
  background: #f0f5d8;
  border-left: 1px solid #C0C0C0;
  border-right: 1px solid #C0C0C0;
}

/* =========================================================
   Check icon
   ========================================================= */
.comparison-check {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--color-fuji-green) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 12l4 4 8-9' stroke='white' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / 60%;
  border-radius: 50%;
}

/* =========================================================
   Mobile — dropdown, single tier visible
   ========================================================= */
@media (max-width: 991.98px) {
  .supplies-comparison-section {
    padding: 3rem 0;
  }

  .comparison-tier-select-wrap {
    display: block;
  }

  .comparison-controls {
    display: none;
  }

  .comparison-tier-headers {
    display: none;
  }

  .comparison-row {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-feature {
    padding: 1rem;
  }

  .comparison-cell {
    padding: 1rem;
  }

  [data-tier="standard"] {
    background: transparent;
  }

  .supplies-comparison-section:not([data-comparison-tier="lite"]) [data-tier="lite"],
  .supplies-comparison-section:not([data-comparison-tier="standard"]) [data-tier="standard"],
  .supplies-comparison-section:not([data-comparison-tier="pro"]) [data-tier="pro"] {
    display: none;
  }
}

.pc-intro-section {
  padding: 5rem 0;
  background: #fff;
}

.row-buttons {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 767.98px) {
  .row-buttons {
    flex-direction: column;
  }
}



/* =========
   Resources page
   ========= */

.resources-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  color: #fff;
}

.resources-section .container {
  position: relative;
  z-index: 1;
}

.resources-intro {
  text-align: center;
}

@media (max-width: 991.98px) {
  .more-section {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  .more-section {
    padding: 3rem 0;
  }
}

/* =========================================================
   Resources — Featured Video Slider
   ========================================================= */
.resources-featured-section {
  padding: 5rem 0;
  background: var(--color-fuji-yellow);
  overflow: hidden;
}

.resources-featured-stage {
  position: relative;
  overflow: visible;
  padding-bottom: 3rem;
}

.resources-featured-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 10;
}

.resources-featured-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.resources-featured-thumb:hover::after {
  background: rgba(0, 0, 0, 0.08);
}

.resources-featured-thumb:hover .video-play {
  transform: translate(-50%, -50%) scale(1.06);
}


.resources-featured-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.resources-featured-badge {
  display: inline-block;
  background: #c8d96a;
  color: #4a5a1a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.resources-featured-title {
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

.resources-featured-body {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 2rem;
}

.resources-featured-stage .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.resources-featured-stage .swiper-slide-active {
  opacity: 1;
}

/* =========================================================
   Pagination
   ========================================================= */
.resources-featured-pagination {
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.resources-featured-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(1, 145, 109, 0.3);
  opacity: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.resources-featured-pagination .swiper-pagination-bullet-active {
  background: var(--color-fuji-green);
  transform: scale(1.15);
}

/* =========================================================
   Mobile sizing
   ========================================================= */
@media (max-width: 991.98px) {
  .resources-featured-section {
    padding: 3rem 0;
  }

  .resources-featured-title {
    font-size: 28px;
  }

  .resources-featured-badge {
    margin-bottom: 1rem;
  }
}

/* =========================================================
   Modal
   ========================================================= */
.resources-video-modal .modal-content {
  background: transparent;
  border: none;
  position: relative;
}

.resources-video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.resources-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.resources-video-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  z-index: 5;
}

/* =========================================================
   Resources — reusable card slider
   ========================================================= */
.resources-downloads-section {
  padding: 4rem 0;
  background: #fff;
}

.resources-section-heading {
  color: var(--color-text);
  font-size: 28px;
  margin: 0 0 2rem;
}

.resources-cards-stage {
  overflow: hidden;
  padding-bottom: 3rem;
}

.resource-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.resource-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.resource-card-thumb img {
  transition: transform 0.5s ease;
}

a.resource-card:hover .resource-card-thumb img {
  transform: scale(1.06);
}
.resource-card-thumb .video-play--sm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--color-fuji-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.resource-card-thumb .video-play--sm img {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

a.resource-card:hover .video-play--sm {
  transform: translate(-50%, -50%) scale(1.08);
}

.resource-card-tag {
  position: absolute;
  top: 1rem;
  right: 0rem;
  background: #c8d96a;
  color: #4a5a1a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-radius: 6px 0px 0px 6px;
}

.resource-card-title {
  font-size: 20px;
  line-height: 1.25;
  margin: 1rem 0 1rem;
}

.resource-card-body {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.resources-cards-stage .swiper-wrapper {
  align-items: stretch;
}

.resources-cards-stage .swiper-slide {
  height: auto;
  display: flex;
}

.resource-card {
  flex: 1;
  width: 100%;
}

/* =========================================================
   Pagination 
   ========================================================= */
.resources-cards-pagination {
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.resources-cards-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(1, 145, 109, 0.3);
  opacity: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.resources-cards-pagination .swiper-pagination-bullet-active {
  background: var(--color-fuji-green);
  transform: scale(1.15);
}

@media (max-width: 767.98px) {
  .resources-downloads-section {
    padding: 3rem 0;
  }

  .resource-card-title {
    font-size: 18px;
  }
}

/* =========
   Case study page
   ========= */
/* =========================================================
   Case Study — Flexible Print Solutions
   ========================================================= */
.case-flexible-section {
  padding: 5rem 0;
  background: var(--color-fuji-yellow);
}

.case-flexible-intro {
  max-width: 820px;
  margin: 0 auto 4rem;
}

.case-flexible-heading {
  margin: 0 0 1.25rem;
  line-height: 1.15;
}

.case-flexible-body {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.case-flexible-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  height: 100%;
}

.case-flexible-icon {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.case-flexible-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-flexible-content {
  flex: 1;
  padding-top: 0.5rem;
}

.case-flexible-title {
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 1rem;
}

.case-flexible-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.case-flexible-list li {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.case-flexible-list li:last-child {
  margin-bottom: 0;
}

.case-flexible-cta-wrap {
  margin-top: 3.5rem;
}

/* =========================================================
   Desktop — 2x2 grid
   ========================================================= */
@media (min-width: 768px) {
  .case-flexible-stage .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    transform: none !important;
  }

  .case-flexible-pagination {
    display: none;
  }
}

/* =========================================================
   Mobile — swiper
   ========================================================= */
@media (max-width: 767.98px) {
  .case-flexible-section {
    padding: 3rem 0;
  }

  .case-flexible-intro {
    margin-bottom: 2.5rem;
  }

  .case-flexible-stage {
    overflow: hidden;
    padding-bottom: 2.5rem;
  }

  .case-flexible-stage .swiper-wrapper {
    align-items: stretch;
  }

  .case-flexible-stage .swiper-slide {
    height: auto;
    display: flex;
  }

  .case-flexible-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .case-flexible-icon {
    width: 90px;
    height: 90px;
  }

  .case-flexible-icon img {
    width: 100%;
    height: 100%;
  }

  .case-flexible-content {
    padding-top: 0;
  }

  .case-flexible-list {
    text-align: left;
    display: inline-block;
  }

  .case-flexible-cta-wrap {
    margin-top: 2rem;
  }

  .case-flexible-pagination {
    bottom: 0 !important;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }

  .case-flexible-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(1, 145, 109, 0.3);
    opacity: 1;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .case-flexible-pagination .swiper-pagination-bullet-active {
    background: var(--color-fuji-green);
    transform: scale(1.2);
  }
}


/* =========================================================
   Case Study — Industry Case Studies slider
   ========================================================= */
.case-studies-section {
  padding: 5rem 0;
  background: var(--color-fuji-green);
  background-image: url(img/more-background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.case-studies-heading {
  color: #fff;
  font-size: 38px;
  line-height: 1.15;
  margin: 0;
}

.case-studies-stage {
  overflow: visible;
  padding-bottom: 3rem;
}

.case-studies-stage .swiper-wrapper {
  align-items: stretch;
}

.case-studies-stage .swiper-slide {
  height: auto;
  display: flex;
}

/* =========================================================
   Card
   ========================================================= */
.case-study-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* ---- Top: icon + title + intro ---- */
.case-study-top {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 2rem 1.5rem;
}

.case-study-icon {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  background: var(--color-fuji-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-study-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.case-study-top-content {
  flex: 1;
  padding-top: 0.5rem;
}

.case-study-title {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}

.case-study-intro {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* =========================================================
   Bottom: helped (grey) + arrow + result (green gradient)
   ========================================================= */
.case-study-bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 2rem 2rem;
  border-radius: 10px;
  overflow: hidden;
}

.case-study-helped {
  background: #f4f4f4;
  padding: 1.5rem 1.75rem;
}

.case-study-result {
  background: linear-gradient(135deg, #1aa57a 0%, #c8d96a 100%);
  color: #fff;
  padding: 1.5rem 1.75rem;
}

.case-study-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.85rem;
}

.case-study-subtitle--result {
  color: #C1D772;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.case-study-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.case-study-list li {
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.case-study-list li:last-child {
  margin-bottom: 0;
}

.case-study-result p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 0.75rem;
}

.case-study-result p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   Arrow circle — sits on the boundary between halves
   ========================================================= */
.case-study-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #b8c750;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* =========================================================
   Pagination
   ========================================================= */
.case-studies-pagination {
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.case-studies-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.case-studies-pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.15);
}

/* =========================================================
   Mobile — heading centered, card stacks vertically
   ========================================================= */
@media (max-width: 991.98px) {
  .case-studies-section {
    padding: 3rem 0;
  }

  .case-studies-heading {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 30px;
  }

  .case-study-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem 1.5rem;
    gap: 1rem;
  }

  .case-study-icon {
    width: 80px;
    height: 80px;
  }

  .case-study-icon img {
    width: 100%;
    height: 100%;
  }

  .case-study-top-content {
    padding-top: 0;
  }

  .case-study-bottom {
    grid-template-columns: 1fr;
    margin: 0 1.5rem 1.5rem;
    grid-template-rows: 1fr 1fr
  }

  .case-study-helped {
    padding: 1.5rem 1.5rem 2.5rem;
  }

  .case-study-result {
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .case-study-arrow {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

.pc-intro-section {
  padding: 5rem 0;
  background: #fff;
}