/* ========================================================
   FOUNDER PAGE — Fresh Face Clinic
   Font  : Plus Jakarta Sans (sama dengan about.html)
   Warna : Putih · Abu-abu · #a4b697
======================================================== */

/* ---- VARIABLES (align dengan about.css) ---- */
:root {
  --ref-accent: #a4b697;
  --ref-accent-dk: #8a9e7e;
  --ref-accent-lt: #c8d8c2;
  --ref-bg-white: #ffffff;
  --ref-bg-light: #f7f9f9;
  --ref-text-dark: #333333;
  --ref-text-mid: #555555;
  --ref-text-light: #777777;
  --ref-divider: #e0e0e0;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --ease-ag: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ---- BASE ---- */
body {
  background-color: var(--ref-bg-white);
  color: var(--ref-text-dark);
  font-family: var(--font-sans);
  overflow-x: hidden;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.founder-page {
  position: relative;
}

.fn-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* =========================================
   1. HERO SECTION — Organic Split
   Kiri: teks mengalir. Kanan: foto bebas,
   tidak kotak — clip-path organik
========================================= */
.fn-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--ref-bg-white);
  margin-top: -120px;
  padding-top: 120px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* Curtain wipe */
.fn-curtain {
  position: absolute;
  inset: 0;
  z-index: 20;
  background-color: var(--ref-bg-light);
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 1.3s cubic-bezier(0.77, 0, 0.18, 1);
}

.fn-curtain.open {
  transform: scaleX(0);
}

/* Blob dekoratif — latar kiri */
.fn-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -8%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at 30% 40%, rgba(164, 182, 151, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Inner grid */
.fn-hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 60px 7% 60px 8%;
  gap: 40px;
}

/* ---- LEFT TEXT ---- */
.fn-hero-left {
  display: flex;
  flex-direction: column;
}

.fn-hero-top-line {
  width: 0;
  height: 1.5px;
  background: var(--ref-accent);
  margin-bottom: 20px;
  border-radius: 2px;
  transition: width 1.4s var(--ease-ag) 0.3s;
}

.fn-hero-top-line.visible {
  width: 48px;
}

.fn-hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ref-accent-dk);
  margin: 0 0 28px 0;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s var(--ease-ag) 0.5s;
}

.fn-hero-eyebrow.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Name — Plus Jakarta Sans, ringan */
.fn-hero-name-wrap {
  overflow: hidden;
  margin-bottom: 32px;
}

.fn-hero-name {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3.2vw, 46px);
  font-weight: 300;
  color: var(--ref-text-dark);
  line-height: 1.1;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.25em;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.fn-name-line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-ag), transform 1s var(--ease-ag);
}

.fn-name-line.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Second word — diberi warna accent saja */
.fn-name-italic {
  color: var(--ref-accent-dk);
  font-weight: 400;
  font-style: normal;
  transition-delay: 0.05s;
}

/* Meta info */
.fn-hero-meta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease 0.7s, transform 0.9s var(--ease-ag) 0.7s;
}

.fn-hero-meta.visible {
  opacity: 1;
  transform: translateY(0);
}

.fn-meta-vline {
  width: 2px;
  height: 44px;
  background: var(--ref-accent);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}

.fn-meta-role {
  font-size: 14px;
  font-weight: 500;
  color: var(--ref-text-mid);
  margin: 0 0 4px 0;
}

.fn-meta-clinic {
  font-size: 12px;
  font-weight: 400;
  color: var(--ref-text-light);
  margin: 0;
  letter-spacing: 0.3px;
}

/* Tags */
.fn-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 46px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease 0.9s, transform 0.8s var(--ease-ag) 0.9s;
}

.fn-hero-tags.visible {
  opacity: 1;
  transform: translateY(0);
}

.fn-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ref-accent-dk);
  border: 1px solid rgba(164, 182, 151, 0.5);
  border-radius: 20px;
  padding: 5px 13px;
  background: transparent;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.fn-tag:hover {
  background: var(--ref-accent);
  color: #fff;
  border-color: var(--ref-accent);
}

/* Scroll cue */
.fn-hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.8s ease 1.2s;
}

.fn-hero-scroll.visible {
  opacity: 1;
}

.fn-scroll-track {
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(164, 182, 151, 0.55);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.fn-scroll-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ref-accent);
  animation: fnDotBounce 1.8s ease infinite;
}

@keyframes fnDotBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  55% {
    transform: translateY(14px);
    opacity: 0.3;
  }
}

.fn-hero-scroll span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ref-text-light);
}

/* ---- RIGHT PHOTO — organik, bebas ---- */
.fn-hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Foto pakai clip-path organik — bukan kotak biasa */
.fn-photo-frame {
  position: relative;
  width: 90%;
  max-width: 460px;
  aspect-ratio: 2 / 3;
  /* Clip organik: sudut kiri atas lebih lancip, kanan bawah lebih bebas */
  clip-path: polygon(12% 0%, 100% 0%, 100% 88%, 88% 100%, 0% 100%, 0% 12%);
  overflow: hidden;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s var(--ease-ag) 0.4s, transform 1.1s var(--ease-ag) 0.4s;
}

.fn-photo-frame.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Curtain reveal dari atas */
.fn-photo-curtain {
  position: absolute;
  inset: 0;
  background: var(--ref-bg-light);
  z-index: 3;
  transform-origin: top;
  transition: transform 1.5s var(--ease-ag) 0.7s;
}

.fn-photo-curtain.revealed {
  transform: scaleY(0);
}

.fn-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Accent blob di pojok kanan bawah foto */
.fn-deco-ring {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164, 182, 151, 0.18) 0%, transparent 70%);
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease 1.2s;
}

.fn-deco-ring.visible {
  opacity: 1;
}

/* Year badge — organik, tidak kaku */
.fn-year-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  z-index: 4;
  background: var(--ref-bg-white);
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
  border-radius: 0 16px 16px 0;
  /* asimetris */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.9s ease 1.4s, transform 0.9s var(--ease-ag) 1.4s;
}

.fn-year-badge.visible {
  opacity: 1;
  transform: translateX(0);
}

.fn-year-num {
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 300;
  color: var(--ref-accent-dk);
  line-height: 1;
  display: block;
  letter-spacing: -1px;
}

.fn-year-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ref-text-light);
  display: block;
  margin-top: 3px;
}

/* Corner ornaments — sedikit organik */
.fn-corner-tl {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-top: 1.5px solid var(--ref-accent);
  border-right: 1.5px solid var(--ref-accent);
  border-radius: 0 6px 0 0;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease 1.6s;
}

.fn-corner-br {
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 32px;
  height: 32px;
  border-bottom: 1.5px solid var(--ref-accent);
  border-left: 1.5px solid var(--ref-accent);
  border-radius: 0 0 0 6px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease 1.6s;
}

.fn-corner-tl.visible,
.fn-corner-br.visible {
  opacity: 1;
}


/* =========================================
   SCROLL OVERLAP EFFECT
   Section bawah menutupi section atas
   saat di-scroll — seperti kertas ditimpa
========================================= */
.fn-hero {
  position: relative;
  z-index: 1;
}

.fn-quote-section,
.fn-profile-section,
.fn-creds-section,
.fn-cta-section {
  position: relative;
  z-index: 2;
  margin-top: -2px;
  /* mencegah gap tipis */
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.08);
}

.fn-profile-section {
  z-index: 3;
}

.fn-creds-section {
  z-index: 4;
}

.fn-cta-section {
  z-index: 5;
  border-radius: 20px 20px 0 0;
}

/* =========================================
   2. QUOTE SECTION
========================================= */
.fn-quote-section {
  background-color: var(--ref-bg-light);
  padding: 90px 0;
  overflow: hidden;
}

.fn-quote-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.fn-quote-icon {
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 0.6;
  color: var(--ref-accent);
  margin-bottom: 30px;
  opacity: 0.4;
  user-select: none;
}

.fn-quote-text {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  color: var(--ref-text-mid);
  line-height: 1.7;
  margin: 0 0 24px 0;
  border: none;
}

.fn-quote-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ref-accent-dk);
}


/* =========================================
   3. PROFILE SECTION
========================================= */
.fn-profile-section {
  background-color: var(--ref-bg-white);
  padding: 90px 0 110px;
}

.fn-profile-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

/* Image column */
.fn-profile-image-col {
  position: sticky;
  top: 120px;
}

.fn-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.fn-img-curtain {
  position: absolute;
  inset: 0;
  background-color: var(--ref-bg-light);
  z-index: 2;
  transform-origin: top;
  transition: transform 1.8s var(--ease-ag);
}

.fn-img-curtain.revealed {
  transform: scaleY(0);
}

.fn-profile-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Cert card */
.fn-cert-card {
  margin-top: 22px;
  background: var(--ref-bg-light);
  border-left: 2px solid var(--ref-accent);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.fn-cert-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ref-text-mid);
  line-height: 1.5;
}

.fn-cert-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background-color: var(--ref-accent);
  margin-top: 5px;
}

/* Text column */
.fn-profile-text-col {
  padding-top: 8px;
}

.fn-text-block {
  margin-bottom: 14px;
}

.fn-mt {
  margin-top: 56px;
}

.fn-block-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ref-accent-dk);
  margin: 0 0 10px 0;
}

.fn-block-title {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400;
  color: var(--ref-text-dark);
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.fn-divider {
  width: 0%;
  height: 1.5px;
  background: var(--ref-divider);
  margin-bottom: 26px;
  border-radius: 2px;
  transition: width 1.8s var(--ease-ag);
}

.fn-divider.is-visible {
  width: 100%;
}

.fn-block-body {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ref-text-light);
  margin: 0 0 16px 0;
}

.fn-block-body strong {
  font-weight: 600;
  color: var(--ref-text-mid);
}

/* Spec grid */
.fn-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}

.fn-spec-card {
  border: 1px solid var(--ref-divider);
  border-radius: 6px;
  padding: 22px 20px;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-ag), box-shadow 0.3s ease;
}

.fn-spec-card:hover {
  border-color: var(--ref-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(164, 182, 151, 0.14);
}

.fn-spec-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ref-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--ref-accent-dk);
}

.fn-spec-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ref-text-dark);
  margin: 0 0 6px 0;
}

.fn-spec-desc {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--ref-text-light);
  margin: 0;
  line-height: 1.6;
}


/* =========================================
   4. CREDENTIALS SECTION
========================================= */
.fn-creds-section {
  background-color: var(--ref-bg-light);
  padding: 90px 0;
}

.fn-creds-header {
  text-align: center;
  margin-bottom: 60px;
}

.fn-creds-title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--ref-text-dark);
  margin: 10px 0 18px 0;
  letter-spacing: -0.5px;
}

.fn-creds-underline {
  width: 48px;
  height: 2px;
  background: var(--ref-accent);
  margin: 0 auto;
  border-radius: 2px;
}

.fn-creds-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.fn-cred-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 40px;
  border: 1px solid var(--ref-divider);
  background: var(--ref-bg-white);
  transition: box-shadow 0.3s ease;
}

.fn-cred-item:hover {
  box-shadow: inset 2px 0 0 var(--ref-accent);
}

.fn-cred-number {
  font-family: var(--font-sans);
  font-size: 40px;
  font-weight: 200;
  color: var(--ref-accent-lt);
  line-height: 1;
  min-width: 50px;
  letter-spacing: -2px;
}

.fn-cred-content {
  padding-top: 4px;
}

.fn-cred-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ref-text-dark);
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.fn-cred-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--ref-text-light);
  margin: 0;
  line-height: 1.6;
}


/* =========================================
   5. CTA SECTION — Warna #a4b697 (accent)
========================================= */
.fn-cta-section {
  background-color: var(--ref-accent);
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}

/* Halus — satu lingkaran samar di pojok */
.fn-cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.fn-cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.fn-cta-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* Pemisah tipis */
.fn-cta-deco-left {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.2) 70%, transparent);
  pointer-events: none;
}

.fn-cta-deco-right {
  display: none;
}

/* LEFT */
.fn-cta-left {
  padding-right: 30px;
}

.fn-cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 18px 0;
}

.fn-cta-title {
  font-family: var(--font-sans);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.fn-cta-title em {
  font-style: normal;
  font-weight: 600;
}

.fn-cta-underline {
  width: 0;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  transition: width 1.6s var(--ease-ag);
}

.fn-cta-underline.is-visible {
  width: 80px;
}

/* RIGHT */
.fn-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.fn-cta-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin: 0;
  max-width: 380px;
}

/* Button: putih solid, teks accent */
.fn-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  border-radius: 50px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.fn-cta-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.fn-btn-text {
  display: block;
  padding: 15px 28px;
}

.fn-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease, transform 0.4s var(--ease-ag);
}

.fn-cta-btn:hover .fn-btn-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(3px);
}

.fn-btn-icon svg {
  color: #fff;
}

.fn-cta-note {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}


/* =========================================
   ANIMATIONS — Reuse dari about.css
========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-ag), transform 1.1s var(--ease-ag);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.26s;
}

.delay-3 {
  transition-delay: 0.42s;
}


/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .fn-hero {
    margin-top: -100px;
    padding-top: 100px;
  }

  .fn-hero-inner {
    grid-template-columns: 1fr;
    padding: 50px 6%;
    gap: 48px;
    min-height: auto;
  }

  .fn-hero-right {
    order: -1;
  }

  .fn-photo-frame {
    width: 65%;
    max-width: 340px;
    margin: 0 auto;
    clip-path: polygon(8% 0%, 100% 0%, 100% 92%, 92% 100%, 0% 100%, 0% 8%);
  }

  .fn-year-badge {
    left: 8%;
    bottom: -14px;
  }

  .fn-profile-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .fn-profile-image-col {
    position: relative;
    top: auto;
  }

  .fn-profile-img {
    height: 440px;
  }

  .fn-creds-list {
    grid-template-columns: 1fr;
  }

  .fn-cta-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .fn-cta-left {
    padding-right: 0;
  }

  .fn-cta-deco-left {
    display: none;
  }
}

@media (max-width: 700px) {
  .fn-hero {
    margin-top: -80px;
    padding-top: 80px;
  }

  .fn-hero-inner {
    padding: 36px 5%;
  }

  .fn-hero-name {
    font-size: clamp(20px, 6.5vw, 34px);
    white-space: normal;
    flex-wrap: wrap;
  }

  .fn-photo-frame {
    width: 78%;
    max-width: 280px;
    clip-path: polygon(6% 0%, 100% 0%, 100% 94%, 94% 100%, 0% 100%, 0% 6%);
  }

  .fn-spec-grid {
    grid-template-columns: 1fr;
  }

  .fn-creds-list {
    grid-template-columns: 1fr;
  }

  .fn-cred-item {
    padding: 26px 22px;
  }

  .fn-cta-section {
    padding: 70px 0 85px;
  }

  .fn-cta-title {
    font-size: clamp(28px, 8.5vw, 42px);
  }

  .fn-quote-section {
    padding: 65px 0;
  }
}