@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #1c1c1c;
  color: #fff;
}

h1 span {
  color: #41866e;
}


html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* ======================================================================================================== */
/* ========================= */
/* HERO SECTION */
/* ========================= */
.about-hero {
  position: relative;
  height: 100vh;
  margin-top: 80px;

  background-image: url("/assets/images/banners/about-banner.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;      /* âœ… vertical center */
  justify-content: center;  /* âœ… horizontal center */

  overflow: hidden;
}

/* ========================= */
/* OVERLAY */
/* ========================= */
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.289);

  z-index: 1;
}

/* ========================= */
/* BREADCRUMB */
/* ========================= */
.breadcrumb {
  position: relative;
  z-index: 2; /* âœ… overlay à¤µà¤° */

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 22px;
  border-radius: 40px;

  /* ðŸ”¥ gradient */
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.85) 0%,
    rgba(20, 20, 20, 0.5) 40%,
    rgba(40, 40, 40, 0) 100%
  );

  color: #fff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;

  border: 1px solid rgba(255,255,255,0.08);

  /* âœ¨ glass effect */
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255,255,255,0.06);

  transition: all 0.3s ease;
  margin-bottom: 80px;
}

/* ========================= */
/* HOVER */
/* ========================= */
.breadcrumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(158, 255, 198, 0.088);
}

/* ========================= */
/* ICON */
/* ========================= */
.home-icon i {
  color: #9effc7;
  font-size: 14px;
  transition: 0.3s;
}

.breadcrumb:hover .home-icon i {
  transform: scale(1.2);
}

/* ========================= */
/* TEXT */
/* ========================= */
.breadcrumb-text {
  color: #bbb;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.breadcrumb-text:hover {
  color: #9effc7;
  cursor: pointer;
}

.breadcrumb-active {
  color: #fff;
  font-weight: 500;
}

.arrow {
  color: #777;
  font-size: 16px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 992px) {
  .about-hero {
    height: 80vh;
  }
}

@media (max-width: 768px) {

  .about-hero {
    height: 60vh;
    padding: 0 15px;
  }

  .breadcrumb {
    font-size: 12px;
    padding: 8px 14px;
    gap: 6px;
  }

  .arrow {
    font-size: 14px;
  }
}
/* ================================================================================================== */

/* ================= ABOUT SECTION (premium + scroll-driven) ================= */

.about-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: clamp(520px, 72vh, 880px);
  box-sizing: border-box;
  background: #030303;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 6vw, 72px) clamp(16px, 4vw, 32px);
  padding-left: max(clamp(16px, 4vw, 32px), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(16px, 4vw, 32px), env(safe-area-inset-right, 0px));
  overflow-x: hidden;
  isolation: isolate;
}

.about-section__ambient {
  position: absolute;
  inset: -20% -10% auto;
  height: min(70vh, 620px);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(65, 134, 110, 0.35), transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(100, 200, 255, 0.08), transparent 65%),
    radial-gradient(ellipse 45% 35% at 15% 40%, rgba(145, 231, 189, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
}

.about-section__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.12) 45%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}

.about-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 970px;
  text-align: center;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px) clamp(20px, 4.5vw, 48px);
  border-radius: clamp(18px, 2.4vw, 28px);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 42%, rgba(0, 0, 0, 0.35) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45) inset,
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 120px rgba(65, 134, 110, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.65s ease, border-color 0.5s ease;
  --about-mx: 50%;
  --about-my: 35%;
}

.about-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 90% 70% at var(--about-mx) var(--about-my),
    rgba(145, 231, 189, 0.14),
    transparent 58%
  );
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
}

.about-container > * {
  position: relative;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .about-container:hover {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.45) inset,
      0 32px 96px rgba(0, 0, 0, 0.62),
      0 0 140px rgba(65, 134, 110, 0.1);
    transform: translateY(-3px);
  }
}

.about-section__eyebrow {
  font-size: clamp(11px, 1.8vw, 13px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(145, 231, 189, 0.75);
  margin: 0 0 clamp(12px, 2vw, 18px);
  font-weight: 500;
}

.about-main-title {
  margin: 0 0 clamp(22px, 3.5vw, 36px);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.35rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: #f4f8f6;
}

.about-main-title__accent {
  background: linear-gradient(135deg, #b8f5d8, #60aa88 45%, #41866e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-main-title__plain {
  -webkit-text-fill-color: #f4f8f6;
  color: #f4f8f6;
}

.reveal-wrapper {
  text-align: center;
  max-width: 52rem;
  width: 100%;
  margin: 0 auto;
}

.reveal-wrapper p {
  font-size: clamp(15px, 1.35vw + 0.65rem, 17px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 clamp(16px, 2.5vw, 22px);

  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: pretty;
  max-width: 100%;
}

.reveal-wrapper p:last-child {
  margin-bottom: 0;
}

/* Must stay `inline` (not inline-block): per-letter inline-blocks get line-break
   opportunities between every character, which splits words like "solutions". */
.reveal-wrapper .about-char {
  display: inline;
  white-space: normal;
  opacity: 0.14;
  color: rgba(255, 255, 255, 0.92);
  will-change: opacity;
}

.reveal-wrapper .about-word {
  display: inline;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

@media (prefers-reduced-motion: reduce) {
  .about-container {
    transition: none;
  }

  .reveal-wrapper .about-char {
    opacity: 1 !important;
    will-change: auto;
  }
}

/* ================= ABOUT SECTION â€” responsive ================= */

@media (max-width: 768px) {
  .about-section {
    min-height: 0;
    padding-top: clamp(24px, 8vw, 40px);
    padding-bottom: clamp(32px, 10vw, 48px);
  }

  .about-section__ambient {
    height: min(50vh, 420px);
    opacity: 0.75;
  }

  .about-container {
    padding: clamp(18px, 5vw, 28px) clamp(16px, 4vw, 24px);
  }

  .about-main-title {
    line-height: 1.15;
  }

  .reveal-wrapper p {
    font-size: clamp(15px, 3.1vw, 17px);
    line-height: 1.75;
    text-align: center;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: pretty;
    white-space: normal;
    letter-spacing: normal;
    max-width: 100%;
  }

  .reveal-wrapper .about-char.about-word {
    display: inline;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (max-width: 480px) {
  .about-section__grid {
    background-size: 32px 32px;
  }

  .about-section__eyebrow {
    letter-spacing: 0.22em;
  }
}

@media (max-width: 360px) {
  .about-container {
    border-radius: 16px;
  }
}


/* ================================================================================================= */


.who-section {
  position: relative;
  min-height: 112vh;
  background: radial-gradient(circle at 20% -10%, rgba(77, 184, 146, 0.16), transparent 35%), #000;
  padding: clamp(10px, 2.2vw, 20px) 5% clamp(24px, 4vw, 36px);
  overflow: hidden;
  isolation: isolate;
}

@keyframes who-active-pulse {
  0%,
  100% {
    box-shadow:
      0 28px 82px rgba(0, 0, 0, 0.58),
      0 0 0 1px rgba(195, 244, 223, 0.12),
      0 0 32px rgba(65, 134, 110, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  50% {
    box-shadow:
      0 28px 82px rgba(0, 0, 0, 0.58),
      0 0 0 1px rgba(195, 244, 223, 0.18),
      0 0 48px rgba(65, 134, 110, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
}

/* STICKY CONTAINER */
.who-stack {
  position: sticky;
  top: 48%;
  transform: translateY(-50%);
  max-width: 1200px;
  height: clamp(340px, 52vh, 430px);
  margin: 0 auto;
  z-index: 2;
}

/* CARD */
.who-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 95% at 0% 0%, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(30px, 5vw, 80px);
  padding: 0;
  transform: translateY(120%) scale(0.95);
  box-shadow:
    0 24px 66px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: border-color 0.35s ease, filter 0.35s ease;
  will-change: transform, opacity;
  transform-style: preserve-3d;
}

.who-card__inner {
  display: flex;
  flex: 1 1 auto;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 60px);
  min-height: 0;
  width: 100%;
  height: 100%;
  padding: clamp(24px, 4vw, 60px);
  transform-style: preserve-3d;
}

.who-card:not(.is-active) {
  pointer-events: none;
}

.who-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.09) 50%, transparent 65%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.who-card.is-active {
  touch-action: pan-y;
  border-color: rgba(114, 217, 172, 0.45);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(195, 244, 223, 0.133),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  filter: saturate(1.05);
}

@media (prefers-reduced-motion: no-preference) {
  .who-card.is-active {
    animation: who-active-pulse 4s ease-in-out infinite;
  }
}

.who-card.is-active::after {
  opacity: 1;
}

/* TEXT */
.who-text h2 {
  font-size: clamp(20px, 2.4vw, 32px);
  color: #fff;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.55;
  transform: translateY(10px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.who-card.is-active .who-text h2 {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGE â€” contained inside card (never taller than frame) */
.who-text {
  flex: 0 1 46%;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
}

.who-image {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  max-width: 54%;
  border-radius: clamp(16px, 3vw, 40px);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 16px 40px rgba(0, 0, 0, 0.45);
}

.who-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.who-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transform: scale(1.06);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  will-change: transform;
}

.who-card.is-active .who-image img {
  transform: scale(1.08);
  filter: brightness(1.04) contrast(1.02);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .who-section {
    min-height: 112vh;
    padding: 8px 4.5% 18px;
  }

  .who-stack {
    top: 50%;
    transform: translateY(-46%);
    height: clamp(410px, 64vh, 560px);
  }

  .who-card__inner {
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
    align-items: stretch;
    padding: clamp(18px, 3.2vw, 34px);
    gap: 12px;
  }

  .who-text {
    flex: 0 0 auto;
    justify-content: center;
    max-width: 100%;
  }

  .who-text h2 {
    font-size: clamp(18px, 3.4vw, 24px);
    line-height: 1.38;
  }

  .who-image {
    flex: 1 1 auto;
    max-width: 100%;
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .who-section {
    min-height: 106vh;
    padding: 6px 4% 16px;
  }

  .who-stack {
    top: 51%;
    transform: translateY(-47%);
    height: clamp(360px, 58vh, 480px);
  }

  .who-card {
    border-radius: 24px;
  }

  .who-card__inner {
    padding: 16px;
    gap: 10px;
  }

  .who-text h2 {
    font-size: clamp(19px, 5vw, 25px);
    line-height: 1.4;
  }

  .who-image {
    margin-top: 45px;
  }
}

@media (max-width: 600px) {
  .who-section {
    min-height: 102vh;
    padding: 4px 3.5% 14px;
  }

  .who-stack {
    top: 52%;
    transform: translateY(-48%);
    height: clamp(325px, 54vh, 430px);
  }

  .who-card__inner {
    padding: 14px;
    gap: 9px;
  }

  .who-image {
    margin-top: 24px;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .who-section {
    min-height: 98vh;
    padding: 2px 3% 12px;
  }

  .who-stack {
    top: 53%;
    transform: translateY(-49%);
    height: clamp(300px, 52vh, 390px);
  }

  .who-card {
    border-radius: 20px;
  }

  .who-card__inner {
    padding: 12px;
    gap: 8px;
  }

  .who-text h2 {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.42;
  }

  .who-image {
    margin-top: 20px;
  }
}

@media (max-width: 380px) {
  .who-stack {
    height: clamp(280px, 48vh, 350px);
  }

  .who-card__inner {
    padding: 10px;
  }

  .who-text h2 {
    font-size: 17px;
    line-height: 1.4;
  }

  .who-image {
    margin-top: 16px;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .who-section {
    min-height: 130vh;
  }

  .who-stack {
    top: 50%;
    transform: translateY(-50%);
    height: clamp(250px, 68vh, 320px);
  }

  .who-card__inner {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }

  .who-text {
    flex: 0 1 44%;
    justify-content: center;
  }

  .who-image {
    max-width: 56%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .who-card.is-active {
    animation: none !important;
  }

  .who-text h2 {
    opacity: 1;
    transform: none;
    transition: none !important;
  }

  .who-card,
  .who-card::after,
  .who-image img {
    transition: none !important;
  }
}




/* ===================================================================================================== */

/* ================= FEATURE SECTION ================= */
.feature-section {
  position: relative;
  background: #000;
  padding: 72px 6% 88px;
  overflow: hidden;
}

.feature-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(5, 151, 71, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 60%, rgba(0, 170, 255, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #030303 0%, #000 45%, #050505 100%);
  pointer-events: none;
  z-index: 0;
}

.feature-section-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto 56px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.02em;
}

.section-title-accent {
  background:#41866e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.feature-card {
  position: relative;
  text-align: center;
  border-radius: 22px;
  padding: 14px 14px 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(65, 134, 110, 0.28);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  outline: none;
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.06) 50%, transparent 70%);
  transition: opacity 0.5s ease;
}

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(5, 151, 71, 0.5);
    box-shadow:
      0 28px 64px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(61, 214, 140, 0.12);
  }

  .feature-card:hover::after {
    opacity: 1;
  }
}

.feature-card:focus-visible {
  outline: 2px solid #3dd68c;
  outline-offset: 4px;
}

.feature-card.is-open {
  border-color: rgba(61, 214, 140, 0.55);
  box-shadow:
    0 28px 64px rgba(5, 151, 71, 0.12),
    0 0 0 1px rgba(61, 214, 140, 0.2);
}

.card-image {
  position: relative;
  height: 270px;
  border-radius: 16px;
  overflow: hidden;
  background: #0d0d0d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(5, 40, 28, 0.88) 45%,
    rgba(5, 151, 71, 0.42) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.card-overlay p {
  color: #eafff0;
  font-size: 15px;
  line-height: 1.65;
  max-width: 42ch;
  margin: 0 auto;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.feature-card:hover .card-overlay,
.feature-card:focus-within .card-overlay,
.feature-card.is-open .card-overlay {
  transform: translateY(0);
}

.feature-card:hover .card-image img,
.feature-card:focus-within .card-image img,
.feature-card.is-open .card-image img {
  transform: scale(1.06);
}

.feature-card h3 {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 18px;
  color: #f2fff9;
  font-weight: 600;
  letter-spacing: -0.01em;
}

@media (max-width: 1200px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .feature-section {
    padding: 56px 5% 72px;
  }
}

@media (max-width: 500px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .card-image {
    height: 220px;
  }

  .feature-card {
    padding: 12px 12px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .feature-card::after,
  .card-image img,
  .card-overlay {
    transition: none;
  }

  .feature-card:hover,
  .feature-card.is-open {
    transform: none;
  }

  .feature-card:hover .card-image img,
  .feature-card:focus-within .card-image img,
  .feature-card.is-open .card-image img {
    transform: none;
  }
}

/* ====================================================================================================== */

/* feature-section */
.quality {
  padding: 100px 6%;
  background: #050505;
  color: #fff;
  position: relative;
  z-index: 5;
}

.quality-container {
  max-width: 1200px;
  margin: auto;
}

.quality-container h2 {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 70px;
  color: #ffffff;
}

.quality-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.quality-card {
  background: linear-gradient(180deg, #111, #0b0b0b);
  border-radius: 18px;
  padding: 35px 28px;
  text-align: center;
  border: 1px solid rgba(59, 154, 116, 0.463);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.quality-card i {
  font-size: 46px;
  background: linear-gradient(135deg, #DFF5EA, #71c3a2, #367861);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  filter: drop-shadow(0 0 12px rgba(108, 207, 172, 0.385));
  margin-bottom: 20px;
  display: inline-block;
}

.quality-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.quality-card p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
}

.quality-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(89, 169, 134, 0.35);
  border-color: rgba(26, 135, 91, 0.263);
}

.quality-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(62, 137, 103, 0.386), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.quality-card:hover::after {
  opacity: 1;
}

@media (max-width: 992px) {
  .quality {
    padding: 80px 5% 84px;
  }

  .quality-container h2 {
    font-size: clamp(30px, 4.8vw, 36px);
    margin-bottom: 52px;
  }

  .quality-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .quality-card {
    padding: 30px 22px;
    border-radius: 16px;
  }
}

@media (max-width: 768px) {
  .quality {
    padding: 64px 4.5% 70px;
  }

  .quality-container h2 {
    font-size: clamp(27px, 7vw, 32px);
    margin-bottom: 40px;
  }

  .quality-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .quality-card {
    padding: 26px 18px;
    border-radius: 14px;
  }

  .quality-card i {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .quality-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .quality-card p {
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .quality {
    padding: 54px 4% 60px;
  }

  .quality-container h2 {
    font-size: clamp(24px, 8vw, 28px);
    margin-bottom: 30px;
  }

  .quality-cards {
    gap: 14px;
  }

  .quality-card {
    padding: 22px 14px;
    border-radius: 12px;
  }

  .quality-card i {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .quality-card h3 {
    font-size: 18px;
  }

  .quality-card p {
    font-size: 14px;
    line-height: 1.62;
  }
}

@media (max-width: 360px) {
  .quality {
    padding-inline: 3.5%;
  }

  .quality-card {
    padding: 20px 12px;
  }

  .quality-card h3 {
    font-size: 17px;
  }

  .quality-card p {
    font-size: 13.5px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .quality-card:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(59, 154, 116, 0.463);
  }

  .quality-card:hover::after {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quality-card,
  .quality-card::after {
    transition: none !important;
  }

  .quality-card:hover {
    transform: none;
  }
}

/* =============================================================================================================== */

/* ================= FOUNDERS SECTION ================= */

.founders-section {
  position: relative;
  background: #000;
  padding: 88px 6% 100px;
  overflow: hidden;
}

.founders-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 45% at 20% 20%, rgba(5, 151, 71, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 85% 75%, rgba(0, 170, 255, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #020202 0%, #000 40%, #050505 100%);
  pointer-events: none;
  z-index: 0;
}

.founders-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.founders-heading {
  text-align: center;
  margin-bottom: 72px;
}

.founders-heading h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.founders-title-accent {
  background:#41866e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founders-lead {
  max-width: 520px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(191, 232, 217, 0.88);
}

.founders-track {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.founder-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
}

.founder-row.reverse {
  flex-direction: row-reverse;
}

.founder-card {
  position: relative;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 28px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(65, 134, 110, 0.28);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
  transition:
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(5, 151, 71, 0.12) 0%, transparent 65%);
  transition: opacity 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
  .founder-card:hover {
    border-color: rgba(5, 151, 71, 0.48);
    box-shadow:
      0 32px 80px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(61, 214, 140, 0.12);
    transform: translateY(-4px);
  }

  .founder-card:hover::before {
    opacity: 1;
  }
}

.founder-visual {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-image {
  perspective: 1400px;
  width: 100%;
  max-width: 380px;
}

.founder-image-3d {
  position: relative;
  padding: 3px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(5, 151, 71, 0.55), rgba(255, 255, 255, 0.18), rgba(5, 151, 71, 0.35));
  transform-style: preserve-3d;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
  .founder-card:hover .founder-image-3d {
    box-shadow:
      0 36px 72px rgba(5, 151, 71, 0.15),
      0 0 0 1px rgba(61, 214, 140, 0.2);
  }
}

.founder-image-3d::after {
  content: "";
  position: absolute;
  inset: -20%;
  border-radius: 32px;
  background: radial-gradient(circle at 50% 40%, rgba(61, 214, 140, 0.25) 0%, transparent 65%);
  filter: blur(40px);
  z-index: -1;
  opacity: 0.85;
  pointer-events: none;
}

.founder-image-3d img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 21px;
  display: block;
  background: #0d0d0d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateZ(24px);
}

.founder-content {
  flex: 1;
  min-width: 0;
  max-width: 520px;
}

.founder-quote {
  margin: 0 0 28px;
  padding: 0;
  border: none;
  position: relative;
}

.founder-quote-mark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  line-height: 0.85;
  background: linear-gradient(180deg, #3dd68c, #059747);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.85;
  margin-bottom: 4px;
}

.founder-quote p {
  font-size: clamp(16px, 1.9vw, 18px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.founder-info {
  padding-top: 8px;
  border-top: 1px solid rgba(65, 134, 110, 0.35);
}

.founder-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f2fff9;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.founder-info span {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(125, 230, 190, 0.95);
  text-transform: uppercase;
}

.founder-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 200px;
  margin: 36px auto;
}

.founder-connector-line {
  flex: 1;
  height: 1px;
  max-width: 72px;
  background: linear-gradient(90deg, transparent, rgba(5, 151, 71, 0.65), transparent);
}

.founder-connector-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3dd68c, #059747);
  box-shadow: 0 0 20px rgba(5, 151, 71, 0.65);
  flex-shrink: 0;
}

@media (max-width: 992px) {

  .founder-row,
  .founder-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .founder-content {
    margin: 0 auto;
    max-width: 560px;
  }

  .founder-quote-mark {
    margin-left: auto;
    margin-right: auto;
  }

  .founder-info {
    text-align: center;
  }

  .founders-section {
    padding: 72px 5% 88px;
  }

  .founders-heading {
    margin-bottom: 56px;
  }
}

@media (max-width: 576px) {
  .founders-section {
    padding: 56px 5% 72px;
  }

  .founder-card {
    padding: 22px 18px;
  }

  .founder-image-3d img {
    max-width: 100%;
  }

  .founder-connector {
    margin: 28px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .founder-card,
  .founder-card::before,
  .founder-image-3d {
    transition: none;
  }

  .founder-card:hover {
    transform: none;
  }
}

/* ================================================================================================== */

/* ================= WHY CHOOSE US ================= */

.why-section {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: url("/assets/images/banners/why-choose-us-bg.jpg") center/cover no-repeat;
  padding: 100px 6% 0;
  overflow-x: hidden;
  overflow-y: visible;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(0, 0, 0, 0.93) 0%,
      rgba(0, 0, 0, 0.72) 42%,
      rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(ellipse 90% 70% at 70% 40%, rgba(5, 151, 71, 0.12) 0%, transparent 55%);
  z-index: 1;
}

.why-section-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 40% at 20% 80%, rgba(61, 214, 140, 0.08) 0%, transparent 60%);
  mix-blend-mode: screen;
}

.why-container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 0;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(100%, 420px);
  width: fit-content;
  max-width: 100%;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.45), rgba(5, 151, 71, 0.22));
  border: 1px solid rgba(65, 134, 110, 0.45);
  color: #c8f5dc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

.why-left {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.why-left h2 {
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.why-title-accent {
  background: linear-gradient(90deg, #41866e, #3dd68c, #7ee8c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-left-lead {
  max-width: 420px;
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(191, 232, 217, 0.88);
}

@media (hover: hover) and (pointer: fine) {
  .why-left-lead {
    margin-bottom: 36px;
  }
}

.why-person {
  margin-top: auto;
  padding-bottom: 0;
  line-height: 0;
}

.why-person img {
  max-width: 470px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6));
}

.why-right {
  align-self: stretch;
  min-width: 0;
  min-height: 0;
}

.why-right-wrap {
  position: relative;
  width: 100%;
}

.why-rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 44px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  justify-content: center;
}

.why-rail-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.why-rail-track {
  position: absolute;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  top: 0;
  height: 0;
  bottom: auto;
}

.why-rail-fill {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  transform: translateX(-50%);
  height: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #059747, #3dd68c, #7ee8c7);
  box-shadow: 0 0 24px rgba(5, 151, 71, 0.45);
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.why-rail-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-rail-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 12px;
  height: 12px;
  margin: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%);
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.why-rail-dot.is-lit {
  border-color: rgba(61, 214, 140, 0.9);
  background: linear-gradient(135deg, #3dd68c, #059747);
  box-shadow: 0 0 16px rgba(5, 151, 71, 0.65);
  transform: translate(-50%, -50%) scale(1.08);
}

.why-features-col {
  min-width: 0;
  padding-left: 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-feature {
  position: relative;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  padding: 22px 22px 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(65, 134, 110, 0.22);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.105) 0%, rgba(0, 0, 0, 0.25) 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  outline: none;
  transition:
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease;
}

.why-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  opacity: 0.95;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.why-feature:hover,
.why-feature:focus-within {
  border-color: rgba(5, 151, 71, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.why-feature.is-active {
  border-color: rgba(61, 214, 140, 0.55);
  background: linear-gradient(165deg, rgba(5, 151, 71, 0.14) 0%, rgba(0, 0, 0, 0.35) 100%);
  box-shadow:
    0 28px 64px rgba(5, 151, 71, 0.12),
    0 0 0 1px rgba(61, 214, 140, 0.15);
}

.why-feature.is-active::before {
  background: linear-gradient(180deg, #059747, #3dd68c);
  box-shadow: 0 0 14px rgba(61, 214, 140, 0.55);
}

.why-feature:focus-visible {
  outline: 2px solid #3dd68c;
  outline-offset: 3px;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 4px;
  color: #041a12;
  background: linear-gradient(120deg, #c4efd3, #67a879, #4fa878);
  box-shadow: 0 14px 32px rgba(5, 151, 71, 0.35);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.why-feature:hover .feature-icon,
.why-feature.is-active .feature-icon {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 18px 40px rgba(5, 151, 71, 0.45);
}

.why-feature-body {
  min-width: 0;
}

.why-feature h4 {
  font-size: 18px;
  font-weight: 700;
  color: #f2fff9;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.why-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 992px) {
  .why-section {
    min-height: unset;
    padding: 82px 5% 76px;
  }

  .why-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .why-left {
    align-items: center;
  }

  .why-badge {
    margin-left: auto;
    margin-right: auto;
    padding: 11px 20px;
    min-width: 0;
  }

  .why-left-lead {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-person {
    align-self: center;
  }

  .why-right {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }

  .why-right-wrap {
    position: static;
  }

  .why-rail {
    display: none;
  }

  .why-features-col {
    padding-left: 0;
    gap: 18px;
  }

  .why-feature {
    text-align: left;
    gap: 20px;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .why-left h2 {
    font-size: clamp(28px, 6vw, 36px);
  }
}

@media (max-width: 576px) {
  .why-section {
    padding: 64px 4.5% 72px;
    min-height: unset;
  }

  .why-container {
    gap: 26px;
  }

  .why-badge {
    width: 100%;
    max-width: 100%;
    font-size: 11px;
    letter-spacing: 0.04em;
    gap: 8px;
    padding: 10px 12px;
    margin-bottom: 18px;
  }

  .why-left h2 {
    font-size: clamp(23px, 7vw, 28px);
    line-height: 1.28;
    margin-bottom: 12px;
  }

  .why-left-lead {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .why-right {
    max-width: 100%;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .why-feature {
    gap: 14px;
    padding: 16px 12px;
    border-radius: 14px;
  }

  .why-feature h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .why-feature p {
    font-size: 13px;
    line-height: 1.62;
  }

  .why-person {
    display: none;
  }
}

@media (max-width: 420px) {
  .why-section {
    padding: 56px 4% 64px;
  }

  .why-container {
    gap: 22px;
  }

  .why-badge {
    font-size: 10.5px;
    padding: 9px 10px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 20px;
  }

  .why-feature {
    padding: 14px 10px;
    gap: 12px;
  }

  .why-feature h4 {
    font-size: 15px;
  }

  .why-feature p {
    font-size: 12.5px;
    line-height: 1.58;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-feature,
  .why-feature::before,
  .feature-icon,
  .why-rail-fill,
  .why-rail-dot {
    transition: none;
  }

  .why-feature:hover,
  .why-feature:focus-within,
  .why-feature.is-active {
    transform: none;
  }

  .why-feature:hover .feature-icon,
  .why-feature.is-active .feature-icon {
    transform: none;
  }
}


/* ====================================================================================================== */

/* 
.vision-section {
  position: relative;
  padding: 84px 6% 102px;
  background: #ffffff;
  overflow: hidden;
}

.vision-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 36% at 8% 14%, rgba(65, 134, 110, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 42% 32% at 92% 86%, rgba(61, 214, 140, 0.08) 0%, transparent 70%);
}

.vision-shell {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
}

.vision-header {
  text-align: center;
  margin-bottom: 44px;
}

.vision-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: #41866e;
}

.vision-title {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.2;
  font-weight: 700;
  color: #101714;
}

.vision-intro {
  max-width: 700px;
  margin: 12px auto 0;
  color: #4a5d55;
  font-size: 15px;
  line-height: 1.7;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.vision-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fcf9 100%);
  border: 1px solid rgba(65, 134, 110, 0.2);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.95) inset;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s ease,
    border-color 0.35s ease;
  outline: none;
}

.vision-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(65, 134, 110, 0.07), transparent 50%);
  opacity: 0.6;
}

.vision-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: left 0.7s ease;
}

.vision-item-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.vision-item-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.vision-item-body {
  padding: 20px 20px 22px;
}

.vision-item-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  color: #123125;
  font-weight: 700;
}

.vision-item-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: #42544d;
}

@media (hover: hover) and (pointer: fine) {
  .vision-item:hover {
    transform: translateY(-8px);
    border-color: rgba(61, 214, 140, 0.45);
    box-shadow:
      0 26px 56px rgba(65, 134, 110, 0.16),
      0 14px 32px rgba(0, 0, 0, 0.08);
  }

  .vision-item:hover::after {
    left: 140%;
  }

  .vision-item:hover .vision-item-media img {
    transform: scale(1.06);
    filter: saturate(1.06);
  }
}

.vision-item:focus-visible {
  outline: 2px solid #3dd68c;
  outline-offset: 3px;
  border-color: rgba(61, 214, 140, 0.5);
  transform: translateY(-4px);
}

@media (max-width: 1100px) {
  .vision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vision-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .vision-section {
    padding: 64px 5% 78px;
  }

  .vision-header {
    margin-bottom: 30px;
  }

  .vision-title {
    font-size: clamp(26px, 7vw, 34px);
  }

  .vision-intro {
    font-size: 14px;
    line-height: 1.65;
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vision-item:last-child {
    grid-column: auto;
  }

  .vision-item {
    border-radius: 18px;
  }

  .vision-item-body {
    padding: 16px 16px 18px;
  }

  .vision-item-body h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
}

@media (max-width: 420px) {
  .vision-section {
    padding: 56px 4% 66px;
  }

  .vision-kicker {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .vision-item-body h3 {
    font-size: 18px;
  }

  .vision-item-body p {
    font-size: 13px;
    line-height: 1.62;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vision-item,
  .vision-item::after,
  .vision-item-media img {
    transition: none !important;
  }

  .vision-item:hover,
  .vision-item:focus-visible {
    transform: none;
  }
} */


/* ======================================================================================================================================= */


.mv-section {
  background: #fff;
  padding: clamp(70px, 9vw, 110px) clamp(16px, 4vw, 64px);
  position: relative;
  overflow: hidden;
}

.mv-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 34% at 8% 16%, rgba(65, 134, 110, 0.12) 0%, transparent 72%),
    radial-gradient(ellipse 42% 30% at 92% 86%, rgba(61, 214, 140, 0.11) 0%, transparent 74%);
}

.mv-shell {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.mv-head {
  text-align: center;
  margin-bottom: 38px;
}

.mv-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: #41866e;
}

.mv-head h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.2;
  color: #101714;
  font-weight: 700;
}

.mv-lead {
  max-width: 700px;
  margin: 12px auto 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5f57;
}

.mv-scroll-layout {
  display: grid;
  grid-template-columns: minmax(380px, 1.08fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
}

.mv-preview {
  position: sticky;
  top: 108px;
  align-self: stretch;
}

.mv-preview-stack {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 28px 66px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(65, 134, 110, 0.2);
  background: #e8f2ed;
}

.mv-preview-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-preview-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.mv-preview-frame.is-active {
  opacity: 1;
  transform: scale(1);
}

.mv-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 6px;
  padding-left: 56px;
}

.mv-rail {
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 34px;
  pointer-events: none;
}

.mv-rail-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(65, 134, 110, 0.22);
}

.mv-rail-fill {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 0;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #059747, #3dd68c, #7ee8c7);
  box-shadow: 0 0 16px rgba(5, 151, 71, 0.4);
  transition: height 0.35s ease;
}

.mv-rail-dot {
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(65, 134, 110, 0.36);
  background: #fff;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.mv-rail-dot.is-lit {
  border-color: rgba(61, 214, 140, 0.95);
  background: linear-gradient(135deg, #3dd68c, #059747);
  box-shadow: 0 0 12px rgba(5, 151, 71, 0.5);
  transform: translate(-50%, -50%) scale(1.06);
}

.mv-step {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(65, 134, 110, 0.22);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 249, 0.95));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  padding: 20px 20px 18px;
  opacity: 0.58;
  transform: translateY(24px);
  transition:
    opacity 0.4s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
  outline: none;
}

.mv-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.mv-step.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(61, 214, 140, 0.5);
  box-shadow:
    0 22px 44px rgba(65, 134, 110, 0.16),
    0 0 0 1px rgba(61, 214, 140, 0.12) inset;
}

.mv-step.is-active::before {
  background: linear-gradient(180deg, #059747, #3dd68c);
  box-shadow: 0 0 14px rgba(61, 214, 140, 0.45);
}

.mv-step-index {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #41866e;
  margin-bottom: 10px;
}

.mv-step h3 {
  margin: 0 0 8px;
  font-size: 24px;
  color: #123326;
  line-height: 1.25;
}

.mv-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: #455851;
}

@media (hover: hover) and (pointer: fine) {
  .mv-step:hover {
    opacity: 1;
    transform: translateY(-3px);
    border-color: rgba(61, 214, 140, 0.42);
  }
}

.mv-step:focus-visible {
  outline: 2px solid #3dd68c;
  outline-offset: 3px;
}

@media (max-width: 992px) {
  .mv-scroll-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mv-preview {
    position: relative;
    top: auto;
    align-self: auto;
    height: clamp(300px, 48vw, 420px);
  }

  .mv-preview-stack {
    min-height: 0;
  }

  .mv-step {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .mv-section {
    padding: 58px 4.5% 72px;
  }

  .mv-head {
    margin-bottom: 28px;
  }

  .mv-head h2 {
    font-size: clamp(25px, 6.8vw, 34px);
  }

  .mv-lead {
    font-size: 14px;
    line-height: 1.65;
  }

  .mv-preview {
    height: clamp(230px, 56vw, 340px);
  }

  .mv-preview-stack {
    border-radius: 18px;
    min-height: 0;
  }

  .mv-step {
    border-radius: 16px;
    padding: 16px 14px;
  }

  .mv-steps {
    padding-left: 0;
  }

  .mv-rail {
    display: none;
  }

  .mv-step h3 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .mv-section {
    padding: 52px 4.2% 64px;
  }

  .mv-head {
    margin-bottom: 22px;
  }

  .mv-preview {
    height: clamp(210px, 60vw, 300px);
  }

  .mv-step {
    border-radius: 14px;
    padding: 14px 12px;
  }

  .mv-step-index {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .mv-step h3 {
    font-size: clamp(18px, 5.6vw, 21px);
    margin-bottom: 6px;
  }

  .mv-step p {
    font-size: 13px;
    line-height: 1.6;
  }
}

@media (max-width: 420px) {
  .mv-section {
    padding: 48px 4% 60px;
  }

  .mv-kicker {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .mv-step h3 {
    font-size: 18px;
  }

  .mv-step p {
    font-size: 13px;
    line-height: 1.62;
  }

  .mv-preview {
    height: clamp(190px, 64vw, 260px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-preview-frame,
  .mv-step,
  .mv-rail-fill,
  .mv-rail-dot {
    transition: none !important;
  }
}




* {
  scroll-behavior: smooth;
}

.showcase-item,
.product-step,
.feature-card,
.why-feature,
.vision-item,
.mv-step {
  will-change: transform, opacity;
}
