/*
 * Filamenter About Page v1.0.23
 * Scoped production styles for page-templates/about.php.
 */

.flmnt-home .flmnt-about {
  --flmnt-about-card: rgba(255, 255, 255, .94);
  --flmnt-about-line: rgba(229, 231, 235, .94);
  --flmnt-about-green-soft: rgba(107, 207, 63, .12);
  --flmnt-about-green-softer: rgba(107, 207, 63, .07);
  --flmnt-about-shadow: 0 18px 46px rgba(24, 27, 31, .055);
  --flmnt-about-shadow-lg: 0 26px 70px rgba(24, 27, 31, .075);
  position: relative;
  isolation: isolate;
  padding: 0 0 clamp(44px, 5vw, 76px);
  color: var(--flmnt-black);
  background:
    radial-gradient(circle at 86% 8%, rgba(107, 207, 63, .12), transparent 30%),
    radial-gradient(circle at 14% 18%, rgba(107, 207, 63, .08), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fff 54%, #fbfcfb 100%);
  overflow: clip;
}

.flmnt-home .flmnt-about::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: min(54vw, 640px);
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,0)),
    radial-gradient(circle at 8% 34%, rgba(107, 207, 63, .1), transparent 25%);
}

/* About hero: aligned with the parent homepage/shop hero system. */
.flmnt-home .flmnt-about__hero.flmnt-wrap {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.flmnt-home .flmnt-about__hero {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  align-items: stretch;
  gap: 0;
  min-height: 430px;
  padding: 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 48%, rgba(107, 207, 63, .12), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(63, 143, 47, .07), transparent 37%),
    linear-gradient(180deg, #fff 0%, #fff 70%, #fbfcfb 100%);
  border-bottom: 1px solid rgba(229, 231, 235, .35);
}

.flmnt-home .flmnt-about__hero-content {
  order: 1;
  width: min(100%, 640px);
  max-width: 640px;
  align-self: center;
  justify-self: center;
  padding-inline: 48px 32px;
}

.flmnt-home .flmnt-about__hero-visual {
  order: 2;
  position: relative;
  min-height: 430px;
  height: 430px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
}

.flmnt-home .flmnt-about__hero-visual::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 72%;
  inset-inline-start: 4%;
  top: 14%;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  background: rgba(107, 207, 63, .07);
  filter: blur(34px);
}

.flmnt-home .flmnt-about__hero-visual::after {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  width: clamp(160px, 18vw, 360px);
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, .66) 52%,
    #fff 100%
  );
}

.flmnt-home .flmnt-about__hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: 48% 52%;
  margin: 0;
  filter: none;
}

.flmnt-home .flmnt-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--flmnt-green-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.6;
}

.flmnt-home .flmnt-about__eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--flmnt-green);
  box-shadow: 0 0 0 7px rgba(107, 207, 63, .14);
}

.flmnt-home .flmnt-about h1,
.flmnt-home .flmnt-about h2,
.flmnt-home .flmnt-about h3,
.flmnt-home .flmnt-about strong {
  color: var(--flmnt-black);
  letter-spacing: -.045em;
}

.flmnt-home .flmnt-about__hero h1 {
  max-width: 620px;
  font-size: clamp(30px, 3.05vw, 46px);
  line-height: 1.28;
  font-weight: 850;
}

.flmnt-home .flmnt-about__hero-content > p {
  max-width: 610px;
  margin-top: 18px;
  color: var(--flmnt-muted);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 500;
  line-height: 2.05;
}

.flmnt-home .flmnt-about__actions,
.flmnt-home .flmnt-about__final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.flmnt-home .flmnt-about__btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.flmnt-home .flmnt-about__btn svg {
  width: 18px;
  height: 18px;
}

.flmnt-home .flmnt-about__btn--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--flmnt-green-dark), #2e7f24);
  border-color: rgba(63, 143, 47, .35);
  box-shadow: 0 16px 34px rgba(63, 143, 47, .22);
}

.flmnt-home .flmnt-about__btn--primary svg {
  fill: currentColor;
}

.flmnt-home .flmnt-about__btn--secondary {
  color: var(--flmnt-black);
  background: rgba(255,255,255,.92);
  border-color: var(--flmnt-about-line);
  box-shadow: 0 12px 26px rgba(24, 27, 31, .045);
}

.flmnt-home .flmnt-about__trust {
  margin-top: 30px;
  position: relative;
  z-index: 3;
}

.flmnt-home .flmnt-about__trust-grid,
.flmnt-home .flmnt-about__values-grid,
.flmnt-home .flmnt-about__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flmnt-home .flmnt-about__mini-card,
.flmnt-home .flmnt-about__value-card,
.flmnt-home .flmnt-about__stat-card,
.flmnt-home .flmnt-about__material-card,
.flmnt-home .flmnt-about__timeline-card,
.flmnt-home .flmnt-about__faq-item {
  position: relative;
  border: 1px solid var(--flmnt-about-line);
  background: var(--flmnt-about-card);
  box-shadow: var(--flmnt-about-shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.flmnt-home .flmnt-about__mini-card {
  min-height: 142px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 22px 18px;
  border-radius: 20px;
  text-align: center;
}

.flmnt-home .flmnt-about__icon,
.flmnt-home .flmnt-about__mini-card .flmnt-about__icon,
.flmnt-home .flmnt-about__value-card .flmnt-about__icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  color: var(--flmnt-green-dark);
  background: rgba(107, 207, 63, .1);
}

.flmnt-home .flmnt-about__icon svg,
.flmnt-home .flmnt-about__mini-card svg,
.flmnt-home .flmnt-about__value-card svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.flmnt-home .flmnt-about__mini-card strong {
  font-size: 14px;
  font-weight: 700;
}

.flmnt-home .flmnt-about__mini-card p,
.flmnt-home .flmnt-about__value-card p,
.flmnt-home .flmnt-about__timeline-card p,
.flmnt-home .flmnt-about__faq-item p {
  color: var(--flmnt-muted);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.9;
}

.flmnt-home .flmnt-about__story {
  display: grid;
  grid-template-columns: minmax(380px, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  padding-top: clamp(48px, 6vw, 92px);
}

.flmnt-home .flmnt-about__story-media {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--flmnt-about-line);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(246,250,244,.95)),
    radial-gradient(circle at 72% 20%, rgba(107,207,63,.16), transparent 36%);
  box-shadow: var(--flmnt-about-shadow-lg);
}

.flmnt-home .flmnt-about__story-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24,27,31,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,27,31,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .45;
}

.flmnt-home .flmnt-about__story-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  padding: clamp(28px, 4vw, 54px);
  filter: drop-shadow(0 20px 35px rgba(24,27,31,.09));
}

.flmnt-home .flmnt-about__story-content h2,
.flmnt-home .flmnt-about__section-head h2,
.flmnt-home .flmnt-about__quality h2,
.flmnt-home .flmnt-about__engineering h2,
.flmnt-home .flmnt-about__final-card h2 {
  font-size: clamp(22px, 2.35vw, 34px);
  line-height: 1.42;
  font-weight: 800;
}

.flmnt-home .flmnt-about__story-content > p,
.flmnt-home .flmnt-about__section-head p,
.flmnt-home .flmnt-about__quality-content > p,
.flmnt-home .flmnt-about__engineering-content > p,
.flmnt-home .flmnt-about__final-card p {
  margin-top: 12px;
  color: var(--flmnt-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.flmnt-home .flmnt-about__story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.flmnt-home .flmnt-about__story-points article {
  min-height: 132px;
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(229, 231, 235, .84);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, rgba(248, 250, 249, .84));
}

.flmnt-home .flmnt-about__story-points span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--flmnt-green-dark);
  background: rgba(107,207,63,.1);
}

.flmnt-home .flmnt-about__story-points svg {
  width: 19px;
  height: 19px;
}

.flmnt-home .flmnt-about__story-points strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.75;
}

.flmnt-home .flmnt-about__story-points small {
  display: block;
  margin-top: 4px;
  color: var(--flmnt-muted);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.8;
}

.flmnt-home .flmnt-about__values,
.flmnt-home .flmnt-about__materials,
.flmnt-home .flmnt-about__stats,
.flmnt-home .flmnt-about__process,
.flmnt-home .flmnt-about__quality,
.flmnt-home .flmnt-about__engineering,
.flmnt-home .flmnt-about__faq,
.flmnt-home .flmnt-about__final-cta {
  padding-top: clamp(44px, 5.6vw, 78px);
}

.flmnt-home .flmnt-about__section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.flmnt-home .flmnt-about__section-head--center {
  margin-inline: auto;
  text-align: center;
}

.flmnt-home .flmnt-about__section-head--center .flmnt-about__eyebrow {
  justify-content: center;
}

.flmnt-home .flmnt-about__value-card {
  min-height: 176px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border-radius: 22px;
}

.flmnt-home .flmnt-about__value-card h3 {
  font-size: 15px;
  font-weight: 700;
}

.flmnt-home .flmnt-about__materials-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.flmnt-home .flmnt-about__material-card {
  min-height: 164px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 14px 10px 16px;
  border-radius: 18px;
  text-align: center;
}

.flmnt-home .flmnt-about__material-card img {
  width: min(96px, 100%);
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(24,27,31,.08));
}

.flmnt-home .flmnt-about__material-card strong {
  font-size: 14px;
  font-weight: 700;
  direction: ltr;
}

.flmnt-home .flmnt-about__material-card span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--flmnt-green-dark);
  background: rgba(107, 207, 63, .12);
  font-size: 10.5px;
  font-weight: 650;
  line-height: 1.45;
}

.flmnt-home .flmnt-about__stats-grid {
  padding: 14px;
  border: 1px solid rgba(107, 207, 63, .13);
  border-radius: 26px;
  background: linear-gradient(90deg, rgba(107,207,63,.1), rgba(255,255,255,.94) 28%, rgba(107,207,63,.07));
}

.flmnt-home .flmnt-about__stat-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  padding: 18px;
  border-radius: 19px;
}

.flmnt-home .flmnt-about__stat-card > span {
  width: 42px;
  height: 42px;
  grid-row: span 2;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--flmnt-green-dark);
  background: rgba(107,207,63,.12);
}

.flmnt-home .flmnt-about__stat-card svg {
  width: 22px;
  height: 22px;
}

.flmnt-home .flmnt-about__stat-card strong {
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 650;
  line-height: 1.25;
}

.flmnt-home .flmnt-about__stat-card small {
  color: var(--flmnt-muted);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.6;
}

.flmnt-home .flmnt-about__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 18px;
}

.flmnt-home .flmnt-about__timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  right: 9%;
  left: 9%;
  height: 2px;
  border-top: 2px dashed rgba(63, 143, 47, .24);
}

.flmnt-home .flmnt-about__timeline-card {
  min-height: 188px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  padding: 28px 18px 20px;
  border-radius: 24px;
  text-align: center;
}

.flmnt-home .flmnt-about__timeline-number {
  position: absolute;
  top: -18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--flmnt-green-dark);
  box-shadow: 0 12px 28px rgba(63, 143, 47, .24);
  font-size: 14px;
  font-weight: 700;
}

.flmnt-home .flmnt-about__timeline-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--flmnt-black);
  background: #f8fafc;
}

.flmnt-home .flmnt-about__timeline-icon svg {
  width: 24px;
  height: 24px;
}

.flmnt-home .flmnt-about__timeline-card h3 {
  font-size: 14px;
  font-weight: 700;
}

.flmnt-home .flmnt-about__quality-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(107,207,63,.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 20%, rgba(107,207,63,.16), transparent 36%),
    linear-gradient(135deg, rgba(248,253,246,.95), #fff 70%);
  box-shadow: var(--flmnt-about-shadow-lg);
}

.flmnt-home .flmnt-about__check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.flmnt-home .flmnt-about__check-list li {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(229, 231, 235, .78);
  border-radius: 16px;
  background: rgba(255,255,255,.85);
  color: var(--flmnt-black);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.65;
}

.flmnt-home .flmnt-about__check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  background: rgba(107,207,63,.16);
}

.flmnt-home .flmnt-about__check-list li::after {
  content: "";
  position: absolute;
  right: 22px;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--flmnt-green-dark);
  border-bottom: 2px solid var(--flmnt-green-dark);
  transform: rotate(45deg);
  transform-origin: center;
  margin-top: -3px;
}

.flmnt-home .flmnt-about__quality-media {
  display: flex;
  justify-content: center;
}

.flmnt-home .flmnt-about__quality-media img {
  width: min(420px, 100%);
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(24,27,31,.11));
}

.flmnt-home .flmnt-about__engineering {
  display: grid;
  grid-template-columns: minmax(340px, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  padding-top: clamp(36px, 5vw, 70px);
}

.flmnt-home .flmnt-about__engineering-media,
.flmnt-home .flmnt-about__engineering-content {
  min-height: 270px;
}

.flmnt-home .flmnt-about__engineering-media {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--flmnt-about-line);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff, #f7faf8);
  box-shadow: var(--flmnt-about-shadow);
}

.flmnt-home .flmnt-about__engineering-media img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  object-position: center;
}

.flmnt-home .flmnt-about__engineering-content {
  display: grid;
  align-content: center;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(229, 231, 235, .88);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 26%, rgba(107,207,63,.14), transparent 38%),
    #fff;
  box-shadow: var(--flmnt-about-shadow);
}

.flmnt-home .flmnt-about__engineering-content .flmnt-about__btn {
  margin-top: 24px;
  justify-self: start;
}

.flmnt-home .flmnt-about__faq-list {
  max-width: 1100px;
  display: grid;
  gap: 10px;
  margin-inline: auto;
}

.flmnt-home .flmnt-about__faq-item {
  border-radius: 16px;
  overflow: hidden;
}

.flmnt-home .flmnt-about__faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 15px 20px 15px 58px;
  cursor: pointer;
  color: var(--flmnt-black);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.flmnt-home .flmnt-about__faq-item summary::-webkit-details-marker {
  display: none;
}

.flmnt-home .flmnt-about__faq-item summary::before,
.flmnt-home .flmnt-about__faq-item summary::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--flmnt-black);
  transition: transform 180ms ease, background-color 180ms ease;
}

.flmnt-home .flmnt-about__faq-item summary::after {
  transform: rotate(90deg);
}

.flmnt-home .flmnt-about__faq-item[open] summary::after {
  transform: rotate(0deg);
  background: var(--flmnt-green-dark);
}

.flmnt-home .flmnt-about__faq-item[open] summary::before {
  background: var(--flmnt-green-dark);
}

.flmnt-home .flmnt-about__faq-item p {
  padding: 0 20px 18px;
}

.flmnt-home .flmnt-about__final-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(107,207,63,.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 5% 16%, rgba(107,207,63,.22), transparent 28%),
    linear-gradient(135deg, #f7fcf4, #fff 72%);
  box-shadow: var(--flmnt-about-shadow-lg);
}

.flmnt-home .flmnt-about__final-leaf {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--flmnt-green-dark);
  background: rgba(107,207,63,.12);
}

.flmnt-home .flmnt-about__final-leaf svg {
  width: 34px;
  height: 34px;
}

.flmnt-home .flmnt-about__final-card h2 {
  font-size: clamp(22px, 2.5vw, 34px);
}

.flmnt-home .flmnt-about__final-card p {
  max-width: 660px;
}

.flmnt-home .flmnt-about__final-actions {
  margin-top: 0;
  justify-content: flex-end;
}

@media (hover: hover) and (pointer: fine) {
  .flmnt-home .flmnt-about__btn:hover,
  .flmnt-home .flmnt-about__mini-card:hover,
  .flmnt-home .flmnt-about__value-card:hover,
  .flmnt-home .flmnt-about__material-card:hover,
  .flmnt-home .flmnt-about__timeline-card:hover,
  .flmnt-home .flmnt-about__faq-item:hover {
    transform: translateY(-3px);
  }

  .flmnt-home .flmnt-about__btn--primary:hover {
    box-shadow: 0 20px 42px rgba(63, 143, 47, .28);
  }

  .flmnt-home .flmnt-about__btn--secondary:hover {
    border-color: rgba(63, 143, 47, .3);
    color: var(--flmnt-green-dark);
  }
}

@media (max-width: 1180px) {
  .flmnt-home .flmnt-about__hero {
    min-height: 405px;
    grid-template-columns: minmax(0, 49%) minmax(0, 51%);
  }

  .flmnt-home .flmnt-about__hero-visual {
    min-height: 405px;
    height: 405px;
  }

  .flmnt-home .flmnt-about__hero-content {
    padding-inline: 34px 24px;
  }

  .flmnt-home .flmnt-about__hero h1 {
    font-size: clamp(29px, 3.6vw, 42px);
  }

  .flmnt-home .flmnt-about__materials-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .flmnt-home .flmnt-about__trust {
    margin-top: 24px;
  }

  .flmnt-home .flmnt-about__trust-grid,
  .flmnt-home .flmnt-about__values-grid,
  .flmnt-home .flmnt-about__stats-grid,
  .flmnt-home .flmnt-about__timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flmnt-home .flmnt-about__timeline::before {
    display: none;
  }

  .flmnt-home .flmnt-about__final-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .flmnt-home .flmnt-about__final-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .flmnt-home .flmnt-about {
    padding-top: 0;
  }

  .flmnt-home .flmnt-about__hero,
  .flmnt-home .flmnt-about__story,
  .flmnt-home .flmnt-about__quality-card,
  .flmnt-home .flmnt-about__engineering {
    grid-template-columns: 1fr;
  }

  .flmnt-home .flmnt-about__hero-content,
  .flmnt-home .flmnt-about__hero-visual {
    justify-self: stretch;
  }

  .flmnt-home .flmnt-about__hero.flmnt-wrap {
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .flmnt-home .flmnt-about__hero-content {
    order: 1;
    width: 100%;
    max-width: none;
    padding-inline: 24px;
    text-align: center;
    margin-inline: auto;
  }

  .flmnt-home .flmnt-about__hero .flmnt-about__eyebrow,
  .flmnt-home .flmnt-about__hero .flmnt-about__actions {
    justify-content: center;
  }

  .flmnt-home .flmnt-about__hero-content > p {
    margin-inline: auto;
  }

  .flmnt-home .flmnt-about__hero-visual {
    order: 2;
    width: calc(100% + 48px);
    max-width: none;
    min-height: 320px;
    height: 320px;
    justify-content: center;
    margin: 22px -24px 0;
    overflow: hidden;
    border-radius: 0;
  }

  .flmnt-home .flmnt-about__hero-visual::after,
  .flmnt-home .flmnt-about__hero-visual::before {
    display: none;
  }

  .flmnt-home .flmnt-about__hero-visual img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
  }

  .flmnt-home .flmnt-about__story-media,
  .flmnt-home .flmnt-about__story-media img {
    min-height: 250px;
  }

  .flmnt-home .flmnt-about__story-points {
    grid-template-columns: 1fr;
  }

  .flmnt-home .flmnt-about__engineering-media,
  .flmnt-home .flmnt-about__engineering-content {
    min-height: auto;
  }

  .flmnt-home .flmnt-about__engineering-content .flmnt-about__btn {
    justify-self: stretch;
  }
}

@media (max-width: 768px) {
  .flmnt-home .flmnt-about .flmnt-wrap,
  .flmnt-home .flmnt-about.flmnt-wrap {
    padding-inline: 18px;
  }

  .flmnt-home .flmnt-about__hero {
    gap: 0;
    padding-top: 0;
    min-height: auto;
  }

  .flmnt-home .flmnt-about__hero h1 {
    font-size: clamp(25px, 6.6vw, 34px);
  }

  .flmnt-home .flmnt-about__hero-content > p,
  .flmnt-home .flmnt-about__story-content > p,
  .flmnt-home .flmnt-about__section-head p,
  .flmnt-home .flmnt-about__quality-content > p,
  .flmnt-home .flmnt-about__engineering-content > p,
  .flmnt-home .flmnt-about__final-card p {
    font-size: 13px;
    line-height: 2;
  }

  .flmnt-home .flmnt-about__actions,
  .flmnt-home .flmnt-about__final-actions {
    gap: 10px;
  }

  .flmnt-home .flmnt-about__btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 18px;
  }

  .flmnt-home .flmnt-about__trust {
    margin-top: 24px;
  }

  .flmnt-home .flmnt-about__trust-grid,
  .flmnt-home .flmnt-about__values-grid,
  .flmnt-home .flmnt-about__stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .flmnt-home .flmnt-about__mini-card {
    min-height: 134px;
    padding: 18px 10px;
  }

  .flmnt-home .flmnt-about__mini-card strong,
  .flmnt-home .flmnt-about__value-card h3 {
    font-size: 14px;
  }

  .flmnt-home .flmnt-about__mini-card p,
  .flmnt-home .flmnt-about__value-card p,
  .flmnt-home .flmnt-about__timeline-card p,
  .flmnt-home .flmnt-about__faq-item p {
    font-size: 12px;
    line-height: 1.85;
  }

  .flmnt-home .flmnt-about__value-card {
    min-height: 152px;
    padding: 18px 14px;
  }

  .flmnt-home .flmnt-about__materials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flmnt-home .flmnt-about__material-card {
    min-height: 145px;
  }

  .flmnt-home .flmnt-about__stats-grid {
    padding: 10px;
    border-radius: 22px;
  }

  .flmnt-home .flmnt-about__stat-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 7px;
    padding: 14px 10px;
  }

  .flmnt-home .flmnt-about__stat-card > span {
    grid-row: auto;
  }

  .flmnt-home .flmnt-about__stat-card strong {
    font-size: 14px;
    font-weight: 650;
  }

  .flmnt-home .flmnt-about__timeline {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-right: 16px;
  }

  .flmnt-home .flmnt-about__timeline::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 37px;
    bottom: 18px;
    width: 2px;
    border-right: 2px dashed rgba(63,143,47,.25);
  }

  .flmnt-home .flmnt-about__timeline-card {
    min-height: auto;
    justify-items: start;
    text-align: right;
    padding: 20px 68px 20px 18px;
  }

  .flmnt-home .flmnt-about__timeline-number {
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    z-index: 2;
  }

  .flmnt-home .flmnt-about__timeline-icon {
    display: none;
  }

  .flmnt-home .flmnt-about__check-list {
    grid-template-columns: 1fr;
  }

  .flmnt-home .flmnt-about__quality-card,
  .flmnt-home .flmnt-about__engineering-content,
  .flmnt-home .flmnt-about__final-card {
    border-radius: 22px;
    padding: 20px;
  }

  .flmnt-home .flmnt-about__quality-media img {
    max-height: 220px;
  }

  .flmnt-home .flmnt-about__engineering-media img {
    min-height: 170px;
  }

  .flmnt-home .flmnt-about__faq-item summary {
    min-height: 54px;
    padding: 13px 16px 13px 48px;
    font-size: 12.5px;
    line-height: 1.8;
  }

  .flmnt-home .flmnt-about__faq-item summary::before,
  .flmnt-home .flmnt-about__faq-item summary::after {
    left: 19px;
  }

  .flmnt-home .flmnt-about__final-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .flmnt-home .flmnt-about__final-actions {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .flmnt-home .flmnt-about .flmnt-wrap,
  .flmnt-home .flmnt-about.flmnt-wrap {
    padding-inline: 14px;
  }

  .flmnt-home .flmnt-about__hero-content {
    text-align: right;
  }

  .flmnt-home .flmnt-about__hero .flmnt-about__eyebrow,
  .flmnt-home .flmnt-about__hero .flmnt-about__actions {
    justify-content: flex-start;
  }

  .flmnt-home .flmnt-about__hero h1 {
    font-size: 24px;
    line-height: 1.38;
  }

  .flmnt-home .flmnt-about__hero-visual {
    width: calc(100% + 28px);
    min-height: 248px;
    height: 248px;
    margin-inline: -14px;
  }

  .flmnt-home .flmnt-about__hero-visual img {
    max-height: none;
  }

  .flmnt-home .flmnt-about__trust {
    margin-top: 24px;
  }

  .flmnt-home .flmnt-about__trust-grid,
  .flmnt-home .flmnt-about__values-grid,
  .flmnt-home .flmnt-about__stats-grid,
  .flmnt-home .flmnt-about__materials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flmnt-home .flmnt-about__mini-card,
  .flmnt-home .flmnt-about__value-card {
    padding-inline: 10px;
  }

  .flmnt-home .flmnt-about__story-media,
  .flmnt-home .flmnt-about__story-media img {
    min-height: 210px;
  }

  .flmnt-home .flmnt-about__story-media img {
    padding: 22px;
  }

  .flmnt-home .flmnt-about__story-content h2,
  .flmnt-home .flmnt-about__section-head h2,
  .flmnt-home .flmnt-about__quality h2,
  .flmnt-home .flmnt-about__engineering h2,
  .flmnt-home .flmnt-about__final-card h2 {
    font-size: 22px;
    line-height: 1.5;
  }
}


/* v1.0.23 refinements: calmer typography and corrected trust-card placement. */
.flmnt-home .flmnt-about__hero h1 {
  font-size: clamp(30px, 3.05vw, 46px);
  font-weight: 850;
}

.flmnt-home .flmnt-about__story-content h2,
.flmnt-home .flmnt-about__section-head h2,
.flmnt-home .flmnt-about__quality h2,
.flmnt-home .flmnt-about__engineering h2,
.flmnt-home .flmnt-about__final-card h2 {
  font-size: clamp(22px, 2.35vw, 34px);
  font-weight: 800;
}

.flmnt-home .flmnt-about__mini-card strong,
.flmnt-home .flmnt-about__value-card h3,
.flmnt-home .flmnt-about__timeline-card h3,
.flmnt-home .flmnt-about__faq-item summary {
  font-weight: 700;
}

.flmnt-home .flmnt-about__stat-card strong {
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 650;
  letter-spacing: -.025em;
}

@media (min-width: 901px) {
  .flmnt-home .flmnt-about__trust {
    margin-top: 34px;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .flmnt-home .flmnt-about__trust {
    margin-top: 28px;
  }
}

@media (max-width: 900px) {
  .flmnt-home .flmnt-about__hero h1 {
    font-size: clamp(27px, 6vw, 36px);
    font-weight: 850;
  }

  .flmnt-home .flmnt-about__trust {
    margin-top: -38px;
  }
}

@media (max-width: 768px) {
  .flmnt-home .flmnt-about__trust {
    margin-top: -42px;
  }

  .flmnt-home .flmnt-about__stat-card strong {
    font-size: 13px;
    font-weight: 650;
  }
}

@media (max-width: 480px) {
  .flmnt-home .flmnt-about__hero h1 {
    font-size: 24px;
    font-weight: 850;
  }

  .flmnt-home .flmnt-about__trust {
    margin-top: -46px;
  }
}
