

.fk-cely {
  --primary: #2C4A3E;
  --primary-dark: #1B2F26;
  --primary-light: #DCE5DF;
  --primary-50: #F1F4F2;
  --accent: #9F8B5F;
  --accent-light: #D9CFB6;
  --ink: #1E2A24;
  --ink-2: #3F4A43;
  --muted: #6E756F;
  --line: #E6E8E5;
  --line-strong: #CBD0CC;
  --bg: #FFFFFF;
  --bg-soft: #F6F5F1;
  --bg-card: #FFFFFF;
  --warn: #B5470F;
  --success: #2E7D6B;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20,30,24,.05), 0 1px 3px rgba(20,30,24,.07);
  --shadow-md: 0 6px 18px -8px rgba(20,30,24,.16), 0 2px 6px rgba(20,30,24,.07);
  --shadow-lg: 0 24px 48px -16px rgba(20,30,24,.20), 0 4px 12px rgba(20,30,24,.09);
  --shadow-blue: 0 12px 32px -8px rgba(27,47,38,.32);

  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --container: 1200px;
  --section-pad: 96px;
  --gutter: 24px;
}

.fk-cely * { box-sizing: border-box; margin: 0; padding: 0; }

.fk-cely { scroll-behavior: smooth; }
.fk-cely, .fk-cely {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}


.fk-cely .scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 1000;
  pointer-events: none;
}
.fk-cely .scroll-progress::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 0 12px rgba(27,47,38,.5);
  transition: width .1s ease-out;
}

.fk-cely img { max-width: 100%; display: block; }
.fk-cely a { color: inherit; text-decoration: none; }
.fk-cely button { font-family: inherit; cursor: pointer; border: none; background: none; }

.fk-cely h1, .fk-cely h2, .fk-cely h3, .fk-cely h4 {
  font-family: var(--font-display);
  color: var(--ink);
  text-wrap: balance;
}

.fk-cely h1 { font-size: clamp(40px, 5vw, 64px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
.fk-cely h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.12; }
.fk-cely h3 { font-size: clamp(19px, 1.9vw, 24px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; }
.fk-cely h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.005em; line-height: 1.3; }

.fk-cely p { color: var(--ink-2); text-wrap: pretty; }
.fk-cely .muted { color: var(--muted); }

.fk-cely .container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.fk-cely .section { padding: var(--section-pad) 0; position: relative; }
.fk-cely .section--soft { background: var(--bg-soft); }
.fk-cely .section--ink { background: var(--ink); color: #fff; }
.fk-cely .section--ink h1, .fk-cely .section--ink h2, .fk-cely .section--ink h3, .fk-cely .section--ink h4 { color: #fff; }
.fk-cely .section--ink p { color: rgba(255,255,255,.78); }


.fk-cely .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary);
}
.fk-cely .eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--primary);
}


.fk-cely .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 32px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 2px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.fk-cely .btn--primary {
  background: var(--primary);
  color: var(--bg);
}
.fk-cely .btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.fk-cely .btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.fk-cely .btn--ghost:hover { background: var(--ink); color: var(--bg); }
.fk-cely .btn--lg { height: 64px; padding: 0 40px; font-size: 14px; }


.fk-cely .s-head {
  text-align: center; max-width: 760px; margin: 0 auto 64px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.fk-cely .s-head p { font-size: 18px; color: var(--muted); text-wrap: balance; }


.fk-cely .s-head--split {
  text-align: left; max-width: 1040px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: end;
}
.fk-cely .s-head--split h2 { text-align: left; }
.fk-cely .s-head--split p { text-align: left; max-width: none; }
@media (max-width: 880px) {
  .fk-cely .s-head--split { grid-template-columns: 1fr; gap: 18px; }
}


.fk-cely .card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.fk-cely .card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }


.fk-cely[data-density="compact"] { --section-pad: 64px; }
.fk-cely[data-density="comfy"] { --section-pad: 128px; }

.fk-cely[data-typo="modern"] {
  --font-display: 'DM Serif Display', Georgia, serif;
}
.fk-cely[data-typo="clean"] {
  --font-display: 'Manrope', system-ui, sans-serif;
}

@media (max-width: 768px) {
  .fk-cely { --section-pad: 64px; --gutter: 20px; }
  .fk-cely .s-head { margin-bottom: 40px; }
}



.fk-cely .reveal {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.fk-cely .reveal--fade-up { transform: translateY(32px); }
.fk-cely .reveal--fade-down { transform: translateY(-32px); }
.fk-cely .reveal--fade-left { transform: translateX(40px); }
.fk-cely .reveal--fade-right { transform: translateX(-40px); }
.fk-cely .reveal--scale-in { transform: scale(.94); }
.fk-cely .reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fk-cely .reveal { opacity: 1; transform: none; transition: none; }
}


@keyframes float-y_fk-cely {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float-orb_fk-cely {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -25px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(.95); }
}
@keyframes pulse-glow_fk-cely {
  0%, 100% { box-shadow: 0 0 0 0 rgba(27,47,38,.3); }
  50% { box-shadow: 0 0 0 12px rgba(27,47,38,0); }
}
@keyframes gradient-shift_fk-cely {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}




.fk-cely .nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,245,239,.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .25s ease, box-shadow .25s ease;
}
.fk-cely .nav.is-scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 4px 18px rgba(20,30,24,.08);
  border-bottom-color: var(--line);
}
.fk-cely .nav.is-scrolled .nav__toggle, .fk-cely .nav.is-scrolled .nav__brand, .fk-cely .nav.is-scrolled .nav__ig { color: var(--ink); }
.fk-cely .nav.is-scrolled .nav__burger span { background: var(--ink); }
.fk-cely .nav.is-scrolled .nav__toggle:hover .nav__burger span { background: var(--primary); }
.fk-cely .nav.is-scrolled .nav__ig:hover { color: var(--primary); }
.fk-cely .nav.is-scrolled .nav__cta { background: var(--primary); color: #fff; }
.fk-cely .nav.is-scrolled .nav__cta:hover { background: var(--primary-dark); }
.fk-cely .nav.is-hidden { transform: translateY(-100%); }
.fk-cely .nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; gap: 32px;
}
.fk-cely .nav { overflow: visible; }
.fk-cely .logo { position: relative; z-index: 2; }
.fk-cely .logo { display: flex; align-items: center; gap: 12px; }
.fk-cely .logo__img { height: 140px; width: auto; display: block; margin: -28px 0; }
@media (max-width: 768px) {
  .fk-cely .logo__img { height: 110px; margin: -25px 0; }
}
.fk-cely .logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.fk-cely .logo__name {
  font-family: var(--font-display); font-weight: 500; font-size: 22px;
  letter-spacing: -0.01em; color: var(--ink);
}
.fk-cely .logo__sub {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}
.fk-cely .nav__links { display: flex; gap: 32px; }
.fk-cely .nav__links a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  letter-spacing: 0.04em;
  transition: color .15s ease;
}
.fk-cely .nav__links a:hover { color: var(--primary); }
.fk-cely .nav__cta { height: 44px; padding: 0 22px; font-size: 12px; }


.fk-cely .hero {
  padding: 80px 0 120px; position: relative; overflow: hidden;
  --sx: 50%; --sy: 50%;
}
.fk-cely .hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle 500px at var(--sx) var(--sy), rgba(27,47,38,.12), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
}
.fk-cely .hero.has-spot::after { opacity: 1; }
.fk-cely .hero__inner {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 80px; align-items: center;
}
.fk-cely .hero__content { display: flex; flex-direction: column; gap: 24px; }
.fk-cely .hero h1 em {
  font-style: normal; color: var(--primary);
  font-weight: inherit;
}
.fk-cely .hero__lead { font-size: 19px; color: var(--muted); max-width: 520px; line-height: 1.55; }
.fk-cely .hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.fk-cely .hero__trust {
  display: flex; align-items: center; gap: 28px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.fk-cely .trust-stat { display: flex; flex-direction: column; gap: 4px; }
.fk-cely .trust-stat strong {
  font-family: var(--font-display); font-size: 28px; font-weight: 500; color: var(--primary);
  letter-spacing: -0.01em;
}
.fk-cely .trust-stat span { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.fk-cely .trust-stat__div { width: 1px; height: 40px; background: var(--line-strong); }

.fk-cely .hero__photo {
  position: relative; aspect-ratio: 4/5;
  border-radius: 4px; overflow: hidden;
  background: transparent;
}
.fk-cely .hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.fk-cely .hero__photo-placeholder, .fk-cely .about__photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: repeating-linear-gradient(135deg,
    rgba(27,47,38,.06) 0 18px,
    rgba(27,47,38,.10) 18px 36px);
  color: var(--primary-dark);
  font-family: ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.18em;
  text-align: center; padding: 24px;
}

.fk-cely .hero__badge {
  position: absolute;
  background: var(--bg-card);
  padding: 14px 18px;
  border-radius: 12px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line);
  z-index: 2;
  animation: float-y_fk-cely 5s ease-in-out infinite;
}
.fk-cely .hero__badge--br { animation-delay: 1.5s; }
.fk-cely .hero__badge--tl { top: 20px; left: 20px; }
.fk-cely .hero__badge--br { bottom: 20px; right: 20px; }
.fk-cely .hero__badge-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.fk-cely .hero__badge-strong {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1.1;
}
.fk-cely .hero__badge-sub {
  font-family: var(--font-body);
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .fk-cely .hero__badge { padding: 10px 12px; }
}
.fk-cely .hero__photo-placeholder .ph-sub, .fk-cely .about__photo-placeholder .ph-sub {
  font-size: 10px; opacity: .6; text-transform: none; letter-spacing: 0;
}


.fk-cely .about { padding: var(--section-pad) 0; }
.fk-cely .about__inner {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 80px; align-items: center;
}
.fk-cely .about__photo {
  position: relative; aspect-ratio: 4/5;
  border-radius: 4px; overflow: hidden;
  background: var(--bg-soft);
}
.fk-cely .about__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.fk-cely .about__content { display: flex; flex-direction: column; gap: 20px; }
.fk-cely .about__lead { font-size: 18px; color: var(--ink-2); line-height: 1.6; }
.fk-cely .about__quote {
  font-family: var(--font-display);
  font-size: 22px; font-style: italic; line-height: 1.4;
  color: var(--primary);
  border-left: 2px solid var(--primary);
  padding: 8px 0 8px 20px;
  margin: 8px 0;
}
.fk-cely .about__quote cite {
  display: block; margin-top: 12px;
  font-style: normal; font-size: 14px;
  font-family: var(--font-body); font-weight: 600;
  letter-spacing: 0.04em; color: var(--muted);
}
.fk-cely .about__creds {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 12px; padding-top: 24px; border-top: 1px solid var(--line);
}
.fk-cely .about__creds > div { display: flex; flex-direction: column; gap: 4px; }
.fk-cely .about__creds strong {
  font-family: var(--font-body); font-size: 18px; color: var(--ink);
  font-weight: 600;
}
.fk-cely .about__creds span { font-size: 13px; color: var(--muted); }


.fk-cely .proc { padding: var(--section-pad) 0; }
.fk-cely .proc__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.fk-cely .proc__card {
  background: var(--bg);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .2s ease;
}
.fk-cely .proc__card:hover { background: var(--bg-card); }
.fk-cely .proc__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 4px;
  transition: background .2s ease, color .2s ease;
}
.fk-cely .proc__card:hover .proc__icon {
  background: var(--primary); color: #fff;
}
.fk-cely .proc__num {
  font-family: var(--font-display);
  font-size: 14px; color: var(--primary);
  letter-spacing: 0.1em;
}
.fk-cely .proc__card h4 { font-family: var(--font-display); font-size: 26px; font-weight: 500; }
.fk-cely .proc__card p { color: var(--muted); font-size: 15px; }


.fk-cely .diff { padding: var(--section-pad) 0; background: var(--bg); }
.fk-cely .diff__head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px; margin-bottom: 56px; flex-wrap: wrap;
}
.fk-cely .diff__head h2 { max-width: 720px; }
.fk-cely .diff__head h2 em { font-style: normal; color: var(--primary); font-weight: inherit; }

.fk-cely .diff__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.fk-cely .diff__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s ease, transform .2s ease;
}
.fk-cely .diff__card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}
.fk-cely .diff__card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.fk-cely .diff__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: grid; place-items: center;
}
.fk-cely .diff__num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: .35;
}
.fk-cely .diff__card h4 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.01em;
}
.fk-cely .diff__card p { color: var(--ink-2); font-size: 15px; line-height: 1.55; }

@media (max-width: 1024px) {
  .fk-cely .diff__head { flex-direction: column; align-items: center; text-align: center; }
  .fk-cely .diff__head h2 { max-width: 100%; }
}
@media (max-width: 640px) {
  .fk-cely .diff__grid { grid-template-columns: 1fr; }
}


.fk-cely .process { padding: var(--section-pad) 0; }
.fk-cely .process .eyebrow--on-dark {
  color: var(--accent);
}
.fk-cely .process .eyebrow--on-dark::before { background: var(--accent); }
.fk-cely .process__list {
  list-style: none; max-width: 880px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.12);
}
.fk-cely .process__step {
  display: grid; grid-template-columns: 80px 1fr 40px;
  gap: 24px; align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.fk-cely .process__num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500; color: #fff;
  font-variant-numeric: tabular-nums;
}
.fk-cely .process__content h4 { color: white; font-size: 20px; margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; letter-spacing: -0.01em; text-wrap: balance; }
.fk-cely .process__content p { color: rgba(255,255,255,.7); font-size: 15px; text-wrap: balance; }
.fk-cely .process__ico { display: grid; place-items: center; color: #fff; }


.fk-cely .testi { padding: 0; overflow: hidden; }
.fk-cely .testi__wrap { padding: var(--section-pad) 0 0; }
.fk-cely .testi__wrap .s-head { margin-bottom: 32px; }
.fk-cely .testi__marquee {
  display: flex; flex-direction: column; gap: 24px;
  padding: 0 0 var(--section-pad);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.fk-cely .testi__track {
  display: flex; gap: 24px;
  width: max-content;
  will-change: transform;
}
.fk-cely .testi__track--ltr { animation: testi-ltr_fk-cely 80s linear infinite; }
.fk-cely .testi__track--rtl { animation: testi-rtl_fk-cely 80s linear infinite; }
.fk-cely .testi__track:hover { animation-play-state: paused; }
@keyframes testi-ltr_fk-cely {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes testi-rtl_fk-cely {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.fk-cely .testi__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  flex: 0 0 380px;
  width: 380px;
  transition: transform .2s ease;
}
.fk-cely .testi__card:hover { transform: translateY(-4px); }
.fk-cely .testi__quote-ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-light);
  display: grid; place-items: center;
}
.fk-cely .testi__card blockquote {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.5;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.fk-cely .testi__result {
  font-size: 14px; line-height: 1.55;
  color: var(--muted);
  margin-top: -4px;
}
.fk-cely .testi__rating { display: flex; gap: 2px; }
.fk-cely .testi__card figcaption {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--line);
  margin-top: auto;
}
.fk-cely .testi__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 500;
  flex-shrink: 0;
}
.fk-cely .testi__avatar span { color: #fff !important; font-size: 16px; font-weight: 600; }
.fk-cely .testi__card figcaption strong {
  display: block;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
}
.fk-cely .testi__card figcaption span {
  font-size: 13px; color: var(--muted);
}


.fk-cely .ba { padding: var(--section-pad) 0; background: var(--bg-soft); position: relative; }
.fk-cely .ba__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.fk-cely .ba__eyebrow {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 10px;
}
.fk-cely .ba__eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--primary);
}
.fk-cely .ba__head h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.fk-cely .ba__head p {
  font-size: 17px; line-height: 1.65;
  color: var(--ink-2);
  max-width: 560px;
}

.fk-cely .ba__head { position: relative; }
.fk-cely .ba__arrows {
  display: flex; gap: 10px;
  margin-top: 4px;
  justify-content: center;
}
.fk-cely .ba__arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong, rgba(0,0,0,.16));
  background: #fff;
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.fk-cely .ba__arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
}
.fk-cely .ba__viewport {
  overflow: hidden;
  margin: 32px calc(-1 * var(--gutter, 24px)) 0;
  padding: 0 var(--gutter, 24px);
}
.fk-cely .ba__track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}
.fk-cely .ba__case {
  flex-shrink: 0;
  width: clamp(280px, 30vw, 360px);
  display: flex; flex-direction: column; gap: 18px;
}
.fk-cely .ba__frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--line);
  border: 6px solid #fff;
  box-shadow: 0 2px 12px rgba(20,30,24, .08), 0 0 0 1px var(--line-strong);
  display: block; width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0; cursor: pointer;
  font: inherit; color: inherit;
}
.fk-cely .ba__frame .ba__pic {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.fk-cely .ba__zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.6);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  display: grid; place-items: center;
  opacity: 0;
  transition: opacity .25s ease, transform .25s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 8px 24px rgba(27,47,38,.2);
  pointer-events: none;
}
.fk-cely .ba__frame:hover .ba__zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.fk-cely .ba__pic {
  width: 100%; height: auto;
  display: block;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.fk-cely .ba__case:hover .ba__pic { transform: scale(1.03); }
.fk-cely .ba__chip {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,.95);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
}
.fk-cely .ba__caption {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 4px;
}
.fk-cely .ba__caption-label {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.fk-cely .ba__caption strong {
  font-family: var(--font-body);
  font-size: 18px; font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
@media (max-width: 768px) {
  .fk-cely .ba { padding: 56px 0; }
  .fk-cely .ba__head { margin-bottom: 24px; gap: 12px; }
  .fk-cely .ba__head p { font-size: 15px; }
  .fk-cely .ba__case { width: 78vw; }
  .fk-cely .ba__arrow { width: 40px; height: 40px; }
  .fk-cely .ba__chip { font-size: 9px; padding: 6px 10px; letter-spacing: 0.1em; }
  .fk-cely .ba__caption strong { font-size: 16px; }
}


.fk-cely .autentic {
  padding: var(--section-pad) 0;
  background: var(--primary-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.fk-cely .autentic::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 15% 20%, rgba(27,47,38,.35), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 80%, rgba(27,47,38,.22), transparent 60%);
  background-size: 200% 200%;
  animation: gradient-shift_fk-cely 20s ease-in-out infinite;
  pointer-events: none;
}
.fk-cely .autentic::after {
  content: ''; position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,47,38,.25), transparent 70%);
  top: 10%; left: -120px;
  filter: blur(40px);
  animation: float-orb_fk-cely 14s ease-in-out infinite;
  pointer-events: none;
}
.fk-cely .autentic__inner { position: relative; z-index: 1; }
.fk-cely .autentic__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.fk-cely .autentic__head h2 { color: #fff; font-size: clamp(30px, 3.6vw, 46px); }
.fk-cely .autentic__head h2 em {
  font-style: normal;
  color: var(--primary-light);
  font-weight: inherit;
}
.fk-cely .autentic__head p {
  color: rgba(255,255,255,.78);
  font-size: 18px; line-height: 1.6;
  max-width: 600px;
}
.fk-cely .autentic__cta {
  margin-top: 8px;
  background: #fff;
  color: var(--primary-dark);
  box-shadow: none;
}
.fk-cely .autentic__cta:hover {
  background: #fff;
  color: var(--primary-dark);
  transform: translateY(-1px);
}
.fk-cely .autentic__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.fk-cely .autentic__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.fk-cely .autentic__card:hover {
  background: rgba(255,255,255,.07);
  border-color: var(--primary);
  transform: translateY(-4px);
}
.fk-cely .autentic__num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.fk-cely .autentic__card h4 {
  font-family: var(--font-body);
  font-size: 19px; font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.fk-cely .autentic__card p {
  color: rgba(255,255,255,.72);
  font-size: 14px; line-height: 1.55;
}
@media (max-width: 1024px) {
  .fk-cely .autentic__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .fk-cely .autentic__grid { grid-template-columns: 1fr; gap: 14px; }
  .fk-cely .autentic__card { padding: 24px 22px; }
  .fk-cely .autentic__head { margin-bottom: 40px; }
}


.fk-cely .clinic { padding: 0; background: var(--primary); color: #fff; overflow: hidden; }
.fk-cely .clinic__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; min-height: 600px;
}
.fk-cely .clinic__text {
  padding: 96px 64px;
  display: flex; flex-direction: column; gap: 20px;
  justify-content: center;
  max-width: 640px;
}
.fk-cely .clinic__text h2 { color: #fff; letter-spacing: -0.01em; }
.fk-cely .clinic__text p { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.85); }
.fk-cely .clinic__cta { align-self: flex-start; margin-top: 12px; background: #fff; color: var(--primary); }
.fk-cely .clinic__cta:hover { background: var(--bg); color: var(--primary); }
.fk-cely .clinic__media { position: relative; min-height: 480px; overflow: hidden; }
.fk-cely .clinic__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .fk-cely .clinic__inner { grid-template-columns: 1fr; }
  .fk-cely .clinic__text { padding: 64px 24px; }
  .fk-cely .clinic__media { min-height: 400px; }
}


.fk-cely .faq { padding: 0; background: var(--bg-soft); overflow: visible; }
.fk-cely .faq__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}
.fk-cely .faq__head {
  display: flex; flex-direction: column; gap: 24px;
  align-self: start;
}
.fk-cely .faq__head h2 { line-height: 1.1; }
.fk-cely .faq__cta { align-self: flex-start; }
.fk-cely .faq__list { list-style: none; }
.fk-cely .faq__item { border-bottom: 1px solid var(--line-strong); }
.fk-cely .faq__item:first-child { border-top: 1px solid var(--line-strong); }
.fk-cely .faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 24px 0; text-align: left;
  font-family: var(--font-body); font-size: 18px; font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.fk-cely .faq__plus {
  flex-shrink: 0; width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--line-strong);
  font-size: 20px;
  display: grid; place-items: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.fk-cely .faq__item.is-open .faq__plus, .fk-cely .faq__item:hover .faq__plus {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.fk-cely .faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.fk-cely .faq__a > p { overflow: hidden; color: var(--muted); font-size: 16px; line-height: 1.6; }
.fk-cely .faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.fk-cely .faq__item.is-open .faq__a > p { padding-bottom: 24px; }
@media (max-width: 768px) {
  .fk-cely .faq__inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 20px; }
  .fk-cely .faq__head { position: static; }
}


.fk-cely .loc { background: var(--bg-card); padding: 80px 0; }
.fk-cely .loc__text {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.fk-cely .loc__sub {
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.fk-cely .loc__text h2 {
  font-family: var(--font-body);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}
.fk-cely .loc__wrap {
  max-width: 1021px;
  margin: 0 auto;
  padding: 0 24px;
}
.fk-cely .loc__map {
  height: 360px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.fk-cely .loc__map iframe { display: block; width: 100%; height: 100%; }
@media (max-width: 768px) {
  .fk-cely .loc { padding: 60px 0; }
  .fk-cely .loc__map { height: 280px; }
}


.fk-cely .section-cta {
  display: flex; justify-content: center;
  margin-top: 56px;
}
.fk-cely .section-cta--testi { margin-top: 16px; }
.fk-cely .about__cta { align-self: flex-start; margin-top: 12px; }


.fk-cely .cta-final {
  padding: 140px 0; background: var(--primary-dark); color: white;
  position: relative; overflow: hidden;
}
.fk-cely .cta-final::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 480px at 12% 15%, rgba(27,47,38,.45), transparent 60%),
    radial-gradient(ellipse 800px 560px at 90% 85%, rgba(27,47,38,.30), transparent 65%),
    radial-gradient(ellipse 400px 300px at 50% 50%, rgba(255,255,255,.04), transparent 70%);
  pointer-events: none;
}
.fk-cely .cta-final::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -25deg,
    transparent 0,
    transparent 38px,
    rgba(255,255,255,.07) 38px,
    rgba(255,255,255,.07) 39px
  );
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  pointer-events: none;
}
.fk-cely .cta-final__inner { position: relative; z-index: 1; }
.fk-cely .cta-final__inner { position: relative; z-index: 1; }
.fk-cely .cta-final__content {
  max-width: 720px; margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.fk-cely .cta-final h2 { color: white; }
.fk-cely .cta-final p { color: rgba(255,255,255,.78); font-size: 19px; max-width: 540px; }
.fk-cely .cta-final__buttons { margin-top: 16px; }
.fk-cely .eyebrow--on-dark { color: var(--accent); }
.fk-cely .eyebrow--on-dark::before { background: var(--accent); }
.fk-cely .btn--white { background: #fff; color: var(--ink); }
.fk-cely .btn--white:hover { background: #fff; color: var(--ink); transform: translateY(-1px); }


@keyframes hero-text-in_fk-cely {
  0% { opacity: 0; transform: translateY(20px); filter: blur(6px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.fk-cely .hero__headline {
  animation: hero-text-in_fk-cely .85s cubic-bezier(.2,.7,.2,1) both;
}
.fk-cely .hero__headline em { display: inline-block; }


.fk-cely .section-dots {
  position: fixed;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex; flex-direction: column; gap: 14px;
  padding: 14px 8px;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 999px;
}
.fk-cely .section-dots__item {
  position: relative;
  display: flex; align-items: center;
  width: 16px; height: 16px;
  justify-content: center;
}
.fk-cely .section-dots__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.fk-cely .section-dots__item:hover .section-dots__dot {
  background: var(--primary);
  transform: scale(1.3);
}
.fk-cely .section-dots__item.is-active .section-dots__dot {
  background: var(--primary);
  transform: scale(1.5);
  box-shadow: 0 0 0 4px rgba(27,47,38,.18);
}
.fk-cely .section-dots__label {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--ink);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0; pointer-events: none;
  transform: translateX(6px);
  transition: opacity .2s ease, transform .2s ease;
}
.fk-cely .section-dots__label::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--ink);
}
.fk-cely .section-dots__item:hover .section-dots__label {
  opacity: 1; transform: translateX(0);
}
@media (max-width: 768px) {
  .fk-cely .section-dots { display: none; }
}


.fk-cely .proc__card {
  width: 100%; text-align: left;
  border: 0; cursor: pointer;
  position: relative;
}
.fk-cely .proc__more {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
}
.fk-cely .proc-modal {
  position: fixed; inset: 0;
  background: rgba(16, 42, 64, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: lb-fade_fk-cely .3s ease both;
  overflow-y: auto;
}
.fk-cely .proc-modal__inner {
  position: relative;
  background: var(--bg-card);
  max-width: 560px; width: 100%;
  border-radius: 12px;
  padding: 48px 40px 40px;
  display: flex; flex-direction: column; gap: 16px;
  animation: lb-scale_fk-cely .35s cubic-bezier(.2,.7,.2,1) both;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.fk-cely .proc-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink);
  border: 0;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.fk-cely .proc-modal__close:hover { background: var(--primary-light); transform: rotate(90deg); }
.fk-cely .proc-modal__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: grid; place-items: center;
}
.fk-cely .proc-modal__inner h3 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.fk-cely .proc-modal__lead {
  color: var(--ink-2);
  font-size: 16px; line-height: 1.6;
}
.fk-cely .proc-modal__meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fk-cely .proc-modal__meta > div { display: flex; flex-direction: column; gap: 4px; }
.fk-cely .proc-modal__meta span {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.fk-cely .proc-modal__meta strong {
  font-family: var(--font-body);
  font-size: 17px; font-weight: 600;
  color: var(--ink);
}
.fk-cely .proc-modal__ind h5 {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.fk-cely .proc-modal__ind ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.fk-cely .proc-modal__ind li {
  position: relative;
  padding-left: 22px;
  font-size: 15px; color: var(--ink-2);
}
.fk-cely .proc-modal__ind li::before {
  content: ''; position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--primary);
}
.fk-cely .proc-modal__cta { align-self: stretch; margin-top: 8px; justify-content: center; }
@media (max-width: 640px) {
  .fk-cely .proc-modal { padding: 16px; }
  .fk-cely .proc-modal__inner { padding: 40px 24px 28px; }
  .fk-cely .proc-modal__inner h3 { font-size: 26px; }
}


.fk-cely .cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 998;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(27,47,38,.12);
  animation: cb-up_fk-cely .5s cubic-bezier(.2,.7,.2,1) both;
  max-width: 720px; margin: 0 auto;
}
@keyframes cb-up_fk-cely {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
.fk-cely .cookie-banner p {
  font-size: 13px; line-height: 1.5;
  color: var(--ink-2);
  flex: 1; min-width: 220px; margin: 0;
}
.fk-cely .cookie-banner__btn {
  background: var(--primary);
  color: #fff;
  border: 0;
  padding: 10px 18px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease;
}
.fk-cely .cookie-banner__btn:hover { background: var(--primary-dark); }


.fk-cely .back-top {
  position: fixed;
  bottom: 92px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: 0;
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px) scale(.8);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.7,.2,1), background .2s ease;
  box-shadow: 0 8px 24px rgba(27,47,38,.25);
}
.fk-cely .back-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fk-cely .back-top:hover { background: var(--primary); }
@media (max-width: 768px) {
  .fk-cely .back-top { bottom: 80px; right: 18px; width: 42px; height: 42px; }
}


.fk-cely .lightbox {
  position: fixed; inset: 0;
  background: rgba(10,26,40,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: lb-fade_fk-cely .3s ease both;
}
@keyframes lb-fade_fk-cely {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fk-cely .lightbox__close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: background .2s ease, transform .2s ease;
}
.fk-cely .lightbox__close:hover {
  background: rgba(255,255,255,.2);
  transform: rotate(90deg);
}
.fk-cely .lightbox__inner {
  max-width: 95vw; max-height: 90vh;
  display: flex; flex-direction: column; gap: 16px;
  align-items: center;
  animation: lb-scale_fk-cely .35s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes lb-scale_fk-cely {
  from { opacity: 0; transform: scale(.94); }
  to { opacity: 1; transform: scale(1); }
}
.fk-cely .lightbox__img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.fk-cely .lightbox__caption {
  display: flex; align-items: center; gap: 14px;
  color: #fff;
  font-family: var(--font-body);
}
.fk-cely .lightbox__case {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
}
.fk-cely .lightbox__caption strong {
  font-size: 17px; font-weight: 600;
}


.fk-cely .jf-ripple {
  position: fixed;
  width: 0; height: 0;
  border-radius: 50%;
  border: 2px solid var(--primary);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  animation: jf-ripple_fk-cely .7s cubic-bezier(.2,.7,.2,1) forwards;
}
.fk-cely .jf-ripple.is-light { border-color: #fff; }
@keyframes jf-ripple_fk-cely {
  0% { width: 0; height: 0; opacity: .8; }
  100% { width: 100px; height: 100px; opacity: 0; }
}


.fk-cely .jf-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.fk-cely .jf-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  animation: particle-float_fk-cely linear infinite;
  will-change: transform, opacity;
}
@keyframes particle-float_fk-cely {
  0%   { transform: translate(0, 0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(40px, -180px); opacity: 0; }
}
.fk-cely .hero__content, .fk-cely .hero__visual { position: relative; z-index: 1; }


.fk-cely .hero__scroll-hint {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  z-index: 2;
  animation: bounce-down_fk-cely 2.4s ease-in-out infinite;
}
.fk-cely .hero__scroll-hint:hover { color: var(--primary); }
@keyframes bounce-down_fk-cely {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}
@media (max-width: 768px) {
  .fk-cely .hero__scroll-hint { display: none; }
}


.fk-cely .ig { padding: var(--section-pad) 0; background: var(--bg); }
.fk-cely .ig__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.fk-cely .ig__handle {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 8px;
}
.fk-cely .ig__handle::before {
  content: ''; width: 24px; height: 1px; background: var(--primary);
}
.fk-cely .ig__head h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.02em;
}
.fk-cely .ig__head p { color: var(--ink-2); font-size: 16px; max-width: 480px; }
.fk-cely .ig__widget {
  max-width: 1100px; margin: 0 auto 40px;
}

.fk-cely .ig__widget [class*="HeaderContainer"], .fk-cely .ig__widget [class*="-HeaderContainer"], .fk-cely .ig__widget [class*="header-container"], .fk-cely .ig__widget [class*="ProfileHeader"], .fk-cely .ig__widget [class*="profile-header"], .fk-cely .ig__widget [class*="ProfileInfo"], .fk-cely .ig__widget [class*="profile-info"], .fk-cely .ig__widget [class*="UserInfo"], .fk-cely .ig__widget [class*="user-info"], .fk-cely .ig__widget [class*="-Title"], .fk-cely .ig__widget [class*="-Description"], .fk-cely .ig__widget [class*="FollowButton"], .fk-cely .ig__widget [class*="follow-button"], .fk-cely .ig__widget [class*="-FollowButton"], .fk-cely .ig__widget [class*="Branding"], .fk-cely .ig__widget [class*="branding"], .fk-cely .ig__widget [class*="-Powered"], .fk-cely .ig__widget [class*="powered"], .fk-cely .ig__widget [class*="EditorBanner"], .fk-cely .ig__widget [class*="editor-banner"], .fk-cely .ig__widget [class*="PromoBanner"], .fk-cely .ig__widget [class*="promo-banner"], .fk-cely .ig__widget a[href*="elfsight.com"], .fk-cely .ig__widget a[href*="appmarket"] {
  display: none !important;
}


.fk-cely .jf-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 0 solid transparent;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity .25s ease, width .25s cubic-bezier(.2,.7,.2,1), height .25s cubic-bezier(.2,.7,.2,1), background .25s ease, border-color .25s ease;
}
.fk-cely .jf-cursor.is-visible { opacity: .85; }
.fk-cely .jf-cursor.is-hover {
  width: 44px; height: 44px;
  background: rgba(27,47,38,.22);
  border: 1.5px solid var(--primary);
}


.fk-cely .jf-cursor.is-dark {
  background: #fff;
}
.fk-cely .jf-cursor.is-dark.is-hover {
  background: rgba(255,255,255,.22);
  border-color: #fff;
}

@media (hover: none) {
  .fk-cely .jf-cursor { display: none; }
}


.fk-cely .wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  display: grid; place-items: center;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(20,30,24,.4), 0 2px 8px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: float-y_fk-cely 3s ease-in-out infinite;
}
.fk-cely .wa-float::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: pulse-ring_fk-cely 2.5s ease-out infinite;
}
@keyframes pulse-ring_fk-cely {
  0% { transform: scale(.95); opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.fk-cely .wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(20,30,24,.5), 0 4px 12px rgba(0,0,0,.2);
}
.fk-cely .wa-float svg { display: block; }
@media (max-width: 768px) {
  .fk-cely .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}


.fk-cely .foot {
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.fk-cely .foot__bottom {
  display: flex; justify-content: center; align-items: center;
  padding: 32px 0;
  font-size: 12px; color: var(--ink);
  letter-spacing: 0.08em;
  text-align: center;
}


@media (max-width: 1024px) {
  .fk-cely .hero__inner, .fk-cely .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .fk-cely .hero__visual, .fk-cely .about__visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .fk-cely .proc__grid { grid-template-columns: repeat(2, 1fr); }
  .fk-cely .nav__links { display: none; }
  .fk-cely .about__creds { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 768px) {
  .fk-cely .nav__inner { height: 64px; gap: 12px; }
  .fk-cely .nav__cta { height: 38px; padding: 0 14px; font-size: 11px; }

  .fk-cely .hero { padding: 32px 0 48px; }
  .fk-cely .hero__inner { gap: 28px; }
  .fk-cely .hero__content { gap: 14px; align-items: center; text-align: center; }
  .fk-cely .hero h1 { font-size: 38px; line-height: 1.1; }
  .fk-cely .hero__lead { font-size: 15px; max-width: 100%; line-height: 1.55; }
  .fk-cely .hero__cta { justify-content: center; gap: 10px; flex-wrap: wrap; }
  .fk-cely .hero__photo { aspect-ratio: 3/4; max-height: 480px; }
  .fk-cely .hero__visual { max-width: 100%; }

  .fk-cely .hero__badge { padding: 8px 10px; gap: 8px; }
  .fk-cely .hero__badge-icon { width: 28px; height: 28px; border-radius: 8px; }
  .fk-cely .hero__badge-icon svg { width: 14px; height: 14px; }
  .fk-cely .hero__badge-strong { font-size: 12px; }
  .fk-cely .hero__badge-sub { font-size: 9px; }
  .fk-cely .hero__badge--tl { top: 12px; left: 12px; }
  .fk-cely .hero__badge--br { bottom: 12px; right: 12px; }

  .fk-cely .about { padding: 56px 0; }
  .fk-cely .about__inner { gap: 32px; }
  .fk-cely .about__visual { max-width: 360px; }
  .fk-cely .about__lead { font-size: 16px; }

  
  .fk-cely .s-head h2 { padding: 0 !important; font-size: 30px; line-height: 1.15; }
  .fk-cely .s-head p { padding: 0 16px !important; font-size: 15px; }

  .fk-cely .proc { padding: 56px 0; }
  .fk-cely .proc__grid { grid-template-columns: 1fr; gap: 1px; }
  .fk-cely .proc__card { padding: 28px 24px; }

  .fk-cely .diff { padding: 56px 0; }
  .fk-cely .diff__head { margin-bottom: 32px; gap: 20px; }
  .fk-cely .diff__head h2 { font-size: 28px; }
  .fk-cely .diff__grid { grid-template-columns: 1fr; gap: 14px; }
  .fk-cely .diff__card { padding: 26px 22px; gap: 10px; }
  .fk-cely .diff__card h4 { font-size: 20px; }

  .fk-cely .process { padding: 56px 0; }
  .fk-cely .process__list { max-width: 100%; }
  .fk-cely .process__step { grid-template-columns: 48px 1fr 28px; gap: 14px; padding: 20px 0; }
  .fk-cely .process__num { font-size: 22px; }
  .fk-cely .process__content h4 { font-size: 17px; }
  .fk-cely .process__content p { font-size: 13px; }
  .fk-cely .process__ico svg { width: 16px; height: 16px; }

  .fk-cely .testi__wrap { padding: 56px 0 0; }
  .fk-cely .testi__wrap .s-head { margin-bottom: 24px; padding: 0 16px; }
  .fk-cely .testi__card { flex: 0 0 300px; width: 300px; padding: 22px; }
  .fk-cely .testi__card blockquote { font-size: 16px; }
  .fk-cely .testi__result { font-size: 13px; }
  .fk-cely .testi__quote-ico { width: 40px; height: 40px; }

  .fk-cely .clinic__inner { grid-template-columns: 1fr; min-height: auto; }
  .fk-cely .clinic__text { padding: 48px 24px; max-width: 100%; }
  .fk-cely .clinic__text h2 { font-size: 28px; }
  .fk-cely .clinic__text p { font-size: 15px; }
  .fk-cely .clinic__media { min-height: 280px; }

  .fk-cely .faq__inner { grid-template-columns: 1fr; gap: 32px; padding: 56px 20px; max-width: 100%; }
  .fk-cely .faq__head h2 { font-size: 28px; }
  .fk-cely .faq__cta { width: auto; }
  .fk-cely .faq__q { font-size: 16px; padding: 20px 0; gap: 16px; }
  .fk-cely .faq__plus { width: 32px; height: 32px; font-size: 18px; }

  .fk-cely .cta-final { padding: 64px 0; }
  .fk-cely .cta-final h2 { font-size: 28px; }
  .fk-cely .cta-final p { font-size: 15px; }
  .fk-cely .cta-final__buttons .btn--lg { height: 52px; padding: 0 24px; font-size: 12px; }

  .fk-cely .loc { padding: 48px 0; }
  .fk-cely .loc__text { margin-bottom: 24px; }
  .fk-cely .loc__text h2 { font-size: 24px; }
  .fk-cely .loc__map { height: 260px; }
  .fk-cely .loc__wrap { padding: 0 16px; }

  .fk-cely .foot__bottom { font-size: 11px; padding: 20px 16px; }
}

@media (max-width: 480px) {
  .fk-cely h1 { font-size: 36px; }
  .fk-cely h2 { font-size: 28px; }
  .fk-cely .hero__cta .btn--lg, .fk-cely .clinic__cta { height: 52px; padding: 0 24px; font-size: 13px; }
  .fk-cely .hero__badge--tl, .fk-cely .hero__badge--br { display: none; }
  .fk-cely .testi__card { flex: 0 0 280px; width: 280px; }
  .fk-cely .faq__cta { font-size: 11px; padding: 0 16px; }
}




.fk-cely .logo--text { flex-direction: column; align-items: flex-start; gap: 2px; }
.fk-cely .logo__name {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  letter-spacing: -0.01em; color: var(--ink); line-height: 1.05;
}
.fk-cely .logo__role {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--primary); font-weight: 600;
}


.fk-cely .s-head__num {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--primary);
}
.fk-cely .s-head__num--light { color: var(--primary-light); }


.fk-cely .hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--primary);
}
.fk-cely .hero__eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--primary); }
.fk-cely .hero__creds {
  display: flex; gap: 36px; margin-top: 8px; list-style: none; flex-wrap: wrap;
}
.fk-cely .hero__creds li { display: flex; flex-direction: column; gap: 2px; }
.fk-cely .hero__creds strong {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.01em;
}
.fk-cely .hero__creds span { font-size: 13px; color: var(--muted); }
.fk-cely .hero__creds li + li { padding-left: 36px; border-left: 1px solid var(--line); }


.fk-cely .about__eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--primary);
}
.fk-cely .about__role { font-size: 15px; color: var(--primary); font-weight: 600; margin-top: -8px; }

.fk-cely .formacao { padding: var(--section-pad) 0; }
.fk-cely .formacao__head {
  text-align: center; max-width: 720px; margin: 0 auto 72px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.fk-cely .formacao__head h2 em { color: var(--primary); font-style: normal; }
.fk-cely .formacao__head p { font-size: 18px; color: var(--muted); }
.fk-cely .ftl { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.fk-cely .ftl__line {
  position: absolute; top: 23px; left: 0; right: 0; height: 2px; z-index: 0;
  background: repeating-linear-gradient(to right, var(--line-strong) 0 6px, transparent 6px 12px);
}
.fk-cely .ftl__step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 8px; padding-top: 64px;
}
.fk-cely .ftl__marker {
  position: absolute; top: 0; left: 0;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--bg);
  display: grid; place-items: center; color: var(--primary);
  box-shadow: 0 0 0 5px var(--bg-soft);
}
.fk-cely .ftl__step:last-child .ftl__marker { background: var(--primary); color: #fff; border-color: var(--primary); }
.fk-cely .ftl__ico { display: grid; place-items: center; line-height: 0; }
.fk-cely .ftl__year {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 38px); font-weight: 700;
  letter-spacing: -0.02em; color: var(--primary); line-height: 1;
}
.fk-cely .ftl__title { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.3; letter-spacing: -0.01em; }
.fk-cely .ftl__desc { font-size: 13.5px; line-height: 1.55; color: var(--muted); }
@media (max-width: 880px) {
  .fk-cely .formacao__head { margin-bottom: 44px; }
  .fk-cely .ftl { grid-template-columns: 1fr; gap: 0; }
  .fk-cely .ftl__line {
    top: 0; bottom: 0; left: 23px; right: auto; width: 2px; height: auto;
    background: repeating-linear-gradient(to bottom, var(--line-strong) 0 6px, transparent 6px 12px);
  }
  .fk-cely .ftl__step { padding-top: 0; padding-left: 68px; padding-bottom: 36px; }
  .fk-cely .ftl__step:last-child { padding-bottom: 0; }
  .fk-cely .ftl__marker { left: 0; top: 0; }
}


.fk-cely .proc-modal__tag {
  display: inline-block; align-self: flex-start;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); background: var(--primary-50);
  padding: 6px 12px; border-radius: var(--radius-pill); margin-bottom: 4px;
}


.fk-cely .autentic__eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--primary-light);
}
.fk-cely .autentic__grid--symptoms { grid-template-columns: repeat(5, 1fr); gap: 16px; }
.fk-cely .autentic__card--symptom {
  flex-direction: column; gap: 10px; padding: 22px 20px;
}
.fk-cely .autentic__card--symptom h4 {
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: #fff; line-height: 1.35; letter-spacing: 0;
}
.fk-cely .autentic__card--symptom .autentic__num { font-size: 22px; }
@media (max-width: 1024px) {
  .fk-cely .autentic__grid--symptoms { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .fk-cely .autentic__grid--symptoms { grid-template-columns: 1fr; }
}


.fk-cely .authority {
  padding: var(--section-pad) 0;
  background: var(--primary-dark);
  color: #fff; position: relative; overflow: hidden;
}
.fk-cely .authority::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 12% 18%, rgba(27,47,38,.45), transparent 60%),
    radial-gradient(ellipse 700px 500px at 88% 82%, rgba(27,47,38,.28), transparent 62%);
  pointer-events: none;
}
.fk-cely .authority__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
}
.fk-cely .authority__num {
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em; color: var(--primary-light);
}
.fk-cely .authority__intro h2 { color: #fff; margin: 14px 0 16px; }
.fk-cely .authority__intro p { color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.6; }
.fk-cely .authority__cta { margin-top: 24px; background: #fff; color: var(--primary-dark); }
.fk-cely .authority__cta:hover { background: var(--bg); color: var(--primary-dark); transform: translateY(-1px); }
.fk-cely .authority__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fk-cely .authority__block {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.fk-cely .authority__block h4 {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary-light);
  margin-bottom: 6px;
}
.fk-cely .authority__block ul { list-style: none; display: flex; flex-direction: column; }
.fk-cely .authority__block li {
  font-size: 14.5px; color: rgba(255,255,255,.88); line-height: 1.45;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.10);
}
.fk-cely .authority__block li:last-child { border-bottom: none; padding-bottom: 0; }
@media (max-width: 900px) {
  .fk-cely .authority__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .fk-cely .authority__cols { grid-template-columns: 1fr; gap: 16px; }
}


.fk-cely .loc__intro { font-size: 17px; color: var(--muted); max-width: 640px; line-height: 1.55; }
.fk-cely .loc__wrap { max-width: 1040px; }
.fk-cely .atend__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.fk-cely .atend {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  display: flex; flex-direction: column; gap: 28px;
}
.fk-cely .atend--featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.fk-cely .atend__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.fk-cely .atend h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(22px, 2vw, 28px); line-height: 1.1; letter-spacing: -0.01em;
}
.fk-cely .atend--featured h3 { color: #fff; }
.fk-cely .atend__city {
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--primary); margin-top: -16px;
}
.fk-cely .atend--featured .atend__city { color: var(--primary-light); }
.fk-cely .atend__badge {
  font-family: ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  padding: 5px 10px; background: rgba(255,255,255,.14); color: #fff; white-space: nowrap;
}
.fk-cely .atend__list {
  list-style: none; display: flex; flex-direction: column; gap: 16px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.fk-cely .atend--featured .atend__list { border-top-color: rgba(255,255,255,.14); }
.fk-cely .atend__list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; color: var(--ink-2); line-height: 1.5;
}
.fk-cely .atend--featured .atend__list li { color: rgba(255,255,255,.86); }
.fk-cely .atend__list li::before {
  content: ''; flex-shrink: 0; margin-top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
}
.fk-cely .atend--featured .atend__list li::before { background: var(--primary-light); }
.fk-cely .atend__terms {
  margin-top: auto; padding-top: 20px;
  border-top: 1px dashed rgba(20,39,44,.18);
  font-size: 13px; line-height: 1.55; color: var(--muted);
}
.fk-cely .atend--featured .atend__terms { border-top-color: rgba(255,255,255,.22); color: rgba(255,255,255,.7); }
.fk-cely .atend__terms > span:first-child {
  display: block; font-family: ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: var(--primary); margin-bottom: 8px;
}
.fk-cely .atend--featured .atend__terms > span:first-child { color: #fff; }
.fk-cely .atend .btn { align-self: flex-start; margin-top: auto; }
.fk-cely .atend--featured .btn--primary { background: #fff; color: var(--ink); }
.fk-cely .atend--featured .btn--primary:hover { background: var(--primary-light); color: var(--ink); }
@media (max-width: 880px) {
  .fk-cely .atend__grid { grid-template-columns: 1fr; }
  .fk-cely .atend { padding: 36px 28px; }
}


.fk-cely .cta-final__eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.7); display: block; margin-bottom: 18px;
}
.fk-cely .cta-final__sub {
  color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.6;
  max-width: 560px; margin: 22px auto 0; text-wrap: balance;
}
.fk-cely .cta-final__foot {
  margin-top: 26px; font-size: 13px; letter-spacing: 0.06em;
  color: rgba(255,255,255,.6); text-transform: uppercase;
}


.fk-cely .foot__bottom { border-top: 1px solid var(--line); }




.fk-cely .hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: stretch;
}
.fk-cely .hero .container { width: 100%; max-width: none; padding: 0; }
.fk-cely .hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: inherit;
  width: 100%;
}
.fk-cely .hero__content {
  display: flex; flex-direction: column; gap: 20px;
  justify-content: center;
  padding: 64px clamp(24px, 4vw, 64px) 96px max(24px, calc((100vw - 1200px) / 2 + 24px));
  max-width: 100%;
}
.fk-cely .hero__content h1 { max-width: 14ch; }
.fk-cely .hero__content .hero__lead { max-width: 50ch; }
.fk-cely .hero__content .hero__cta { max-width: 540px; }
.fk-cely .hero__visual { display: flex; align-items: stretch; align-self: stretch; }
.fk-cely .hero h1 { font-size: clamp(36px, 4.4vw, 56px); line-height: 1.05; }
.fk-cely .hero h1 em {
  font-style: normal; color: var(--primary);
  font-weight: 500;
}
.fk-cely .hero__lead {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 540px;
  line-height: 1.55;
}
.fk-cely .hero__cta { display: flex; gap: 14px; flex-wrap: nowrap; margin-top: 12px; }
.fk-cely .hero__cta .btn { padding: 0 28px; font-size: 13px; }
.fk-cely .hero__trust {
  display: flex; align-items: center; gap: 28px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.fk-cely .trust-stat { display: flex; flex-direction: column; gap: 4px; }
.fk-cely .trust-stat strong {
  font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--primary);
  letter-spacing: -0.01em; line-height: 1.1;
}
.fk-cely .trust-stat span {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.fk-cely .trust-stat__div { width: 1px; height: 40px; background: var(--line-strong); }

.fk-cely .hero__photo {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 560px;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-soft);
  border: 0;
}
.fk-cely .hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.fk-cely .hero__photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: repeating-linear-gradient(135deg,
    rgba(27,47,38,.06) 0 18px,
    rgba(27,47,38,.10) 18px 36px);
  color: var(--primary-dark);
  font-family: ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.18em;
  text-align: center; padding: 24px;
}
.fk-cely .hero__photo-placeholder .ph-sub {
  font-size: 10px; opacity: .6; text-transform: none; letter-spacing: 0;
}

.fk-cely .hero__badge {
  position: absolute;
  background: var(--bg-card);
  padding: 14px 18px;
  border-radius: 0;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line);
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.fk-cely .hero__badge--tl { top: 20px; left: 20px; }
.fk-cely .hero__badge--br { bottom: 20px; right: 20px; }
.fk-cely .hero__badge-icon {
  width: 40px; height: 40px;
  border-radius: 0;
  background: var(--primary-light);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.fk-cely .hero__badge-strong {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1.1;
}
.fk-cely .hero__badge-sub {
  font-family: var(--font-body);
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .fk-cely .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .fk-cely .hero__photo { max-width: 480px; margin: 0 auto; width: 100%; min-height: 320px; }
}
@media (max-width: 768px) {
  .fk-cely .hero { padding: 0; min-height: 0; }
  .fk-cely .hero__inner { gap: 20px; }
  .fk-cely .hero__content {
    gap: 16px;
    padding: 24px var(--gutter) 24px var(--gutter);
    align-items: center;
    text-align: center;
  }
  .fk-cely .hero__content h1, .fk-cely .hero__content .hero__lead, .fk-cely .hero__content .hero__cta { max-width: 100%; }
  .fk-cely .hero__lead { font-size: 16px; }
  .fk-cely .hero__cta {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    width: 100%;
  }
  .fk-cely .hero__cta .btn { width: 100%; }
  .fk-cely .hero__photo { min-height: 240px; max-width: 100%; }
}


.fk-cely .domiciliar {
  padding: var(--section-pad) 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.fk-cely .domiciliar::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 15% 20%, rgba(27,47,38,.32), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 80%, rgba(90,120,128,.18), transparent 60%);
  pointer-events: none;
}
.fk-cely .domiciliar__inner { position: relative; z-index: 1; }
.fk-cely .domiciliar .s-head h2 { color: #fff; }
.fk-cely .domiciliar .s-head h2 em { color: #fff; }
.fk-cely .domiciliar .s-head p { color: rgba(255,255,255,.78); }

.fk-cely .domiciliar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.fk-cely .domiciliar__card {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  padding: 44px 40px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .3s ease, border-color .3s ease;
  overflow: hidden;
}
.fk-cely .domiciliar__card:hover {
  background: rgba(143,194,203,.06);
}
.fk-cely .domiciliar__card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.fk-cely .domiciliar__icon {
  width: 44px; height: 44px;
  border-radius: 0;
  background: rgba(143,194,203,.10);
  color: var(--accent-light);
  display: grid; place-items: center;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.fk-cely .domiciliar__card:hover .domiciliar__icon {
  background: var(--accent-light);
  color: var(--ink);
  transform: scale(1.05);
}
.fk-cely .domiciliar__card:hover .domiciliar__num { opacity: 1; }
.fk-cely .domiciliar__num {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0;
  line-height: 1;
  opacity: .6;
  transition: opacity .3s ease;
}
.fk-cely .domiciliar__card h4 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.fk-cely .domiciliar__card p {
  color: rgba(255,255,255,.72);
  font-size: 15px; line-height: 1.6;
}

@media (max-width: 600px) {
  .fk-cely .domiciliar__grid { grid-template-columns: 1fr; }
  .fk-cely .domiciliar__card { padding: 28px 24px; }
}



.fk-cely .programas { padding: var(--section-pad) 0; background: var(--bg-soft); }
.fk-cely .programas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1040px;
  margin: 0 auto;
}
.fk-cely .programa {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  display: flex; flex-direction: column; gap: 32px;
}
.fk-cely .programa--featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.fk-cely .programa__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
}
.fk-cely .programa h3 {
  font-family: var(--font-body);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.fk-cely .programa--featured h3 { color: #fff; }
.fk-cely .programa__tag {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
}
.fk-cely .programa__list {
  list-style: none;
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.fk-cely .programa--featured .programa__list { border-top-color: rgba(255,255,255,.14); }
.fk-cely .programa__list li {
  display: flex; gap: 12px; align-items: center;
  font-size: 16px; color: var(--ink-2);
}
.fk-cely .programa--featured .programa__list li { color: rgba(255,255,255,.86); }
.fk-cely .programa__list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.fk-cely .programa--featured .programa__list li::before { background: var(--accent-light); }

.fk-cely .programa__terms {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed rgba(20,39,44,.18);
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.fk-cely .programa--featured .programa__terms {
  border-top-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.7);
}
.fk-cely .programa__terms > span:first-child {
  display: block;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.fk-cely .programa--featured .programa__terms > span:first-child { color: #fff; }


.fk-cely .programa__badge {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  background: rgba(255,255,255,.14);
  color: #fff;
  white-space: nowrap;
}
.fk-cely .programa__meta {
  font-size: 13.5px; color: var(--muted);
  margin-top: -12px;
}
.fk-cely .programa--featured .programa__meta { color: rgba(255,255,255,.6); }
.fk-cely .programa .btn { align-self: flex-start; }
.fk-cely .programa--featured .btn--primary { background: #fff; color: var(--ink); }
.fk-cely .programa--featured .btn--primary:hover { background: var(--primary-light); color: var(--ink); }

.fk-cely .programas__note {
  grid-column: 1 / -1;
  margin-top: 56px;
  font-size: 14px; color: var(--muted);
  max-width: 80ch;
  text-align: center;
  margin-left: auto; margin-right: auto;
  font-style: normal;
}

@media (max-width: 880px) {
  .fk-cely .programas__grid { grid-template-columns: 1fr; }
  .fk-cely .programa { padding: 36px 28px; }
}



.fk-cely .compare { padding: var(--section-pad) 0; }
.fk-cely .compare__head-row {
  max-width: 1080px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr auto;
  gap: 40px;
  align-items: end;
  text-align: left;
}
.fk-cely .compare__head-row h2 { text-align: left; max-width: 16ch; }
.fk-cely .compare__head-row p { text-align: left; max-width: 42ch; margin-bottom: 4px; }
.fk-cely .compare__head-cta {
  justify-self: end;
  white-space: nowrap;
  padding: 0 22px;
  height: 52px;
  font-size: 12px;
  margin-bottom: 4px;
}
@media (max-width: 980px) {
  .fk-cely .compare__head-row {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
    justify-items: center;
  }
  .fk-cely .compare__head-row h2, .fk-cely .compare__head-row p { text-align: center; max-width: 100%; }
  .fk-cely .compare__head-cta { justify-self: center; }
}
.fk-cely .compare__table {
  margin: 56px auto 0;
  max-width: 1200px;
  border: 1px solid rgba(20,39,44,.16);
  background: #fff;
}
.fk-cely .compare__head {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 0;
  padding: 28px 0;
  border-bottom: 1px solid rgba(20,39,44,.16);
}
.fk-cely .compare__head-cell { padding: 0 24px; }
.fk-cely .compare__head-cell--label { padding: 0 24px; }
.fk-cely .compare__head-cell h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 8px;
  line-height: 1.2;
}
.fk-cely .compare__head-cell--b h3 { color: var(--primary); }
.fk-cely .compare__tag {
  display: inline-block;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 8px;
  border: 1px dashed rgba(20,39,44,.25);
}
.fk-cely .compare__tag--b {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}
.fk-cely .compare__row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(20,39,44,.14);
  transition: background .25s ease;
}
.fk-cely .compare__row:last-child { border-bottom: 0; }
.fk-cely .compare__row:hover { background: rgba(20,39,44,.025); }
.fk-cely .compare__cell {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .fk-cely .compare__cell { white-space: normal; }
}
.fk-cely .compare__cell--label {
  padding: 0 24px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.fk-cely .compare__cell--a { color: var(--muted); }
.fk-cely .compare__cell--b {
  font-weight: 500;
  position: relative;
}
.fk-cely .compare__cell--b::before {
  content: '';
  position: absolute;
  left: 0; top: -20px; bottom: -20px;
  width: 1px;
  background: rgba(20,39,44,.16);
}
.fk-cely .compare__mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.fk-cely .compare__mark--minus {
  color: rgba(20,39,44,.4);
  font-weight: 700;
}
.fk-cely .compare__mark--check {
  color: var(--primary);
  background: rgba(20,39,44,.06);
  border-radius: 50%;
}
.fk-cely .compare__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media (max-width: 880px) {
  
  .fk-cely .compare__table { overflow: visible; }
  .fk-cely .compare__head, .fk-cely .compare__row {
    grid-template-columns: 1fr 1.4fr;
  }
  .fk-cely .compare__head-cell--a, .fk-cely .compare__cell--a { display: none; }
  .fk-cely .compare__head { padding: 20px 0; }
  .fk-cely .compare__row { padding: 16px 0; }
  .fk-cely .compare__cell { padding: 0 16px; font-size: 14px; }
  .fk-cely .compare__head-cell { padding: 0 16px; }
  .fk-cely .compare__head-cell--label { padding: 0 16px; }
}



.fk-cely .jornada {
  padding: 0;
  height: 400vh;
  position: relative;
  background: var(--bg-soft);
}
.fk-cely .jornada__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fk-cely .jornada__pin .container { width: 100%; }
.fk-cely .jornada__track {
  position: relative;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.fk-cely .jornada__line {
  position: absolute;
  top: 24px;
  left: 0; right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(20,39,44,.22) 0 6px,
    transparent 6px 12px
  );
  z-index: 0;
}
.fk-cely .jornada__line-fill {
  position: absolute;
  top: 24px;
  left: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(to right, var(--primary) 0%, var(--primary) 70%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  transition: width .15s linear;
}
.fk-cely .jornada__avatar {
  position: absolute;
  top: 24px;
  left: 0;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 4px 18px rgba(20,39,44,.25), 0 0 0 4px var(--bg-soft);
  transition: left .25s cubic-bezier(.2,.8,.2,1), top .25s cubic-bezier(.2,.8,.2,1);
}
.fk-cely .jornada__avatar svg { display: block; }
.fk-cely .jornada__step {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 70px;
}
.fk-cely .jornada__marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(20,39,44,.2);
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 5;
  color: rgba(20,39,44,.45);
  transition:
    color .35s ease,
    border-color .35s ease,
    background .35s ease,
    transform .35s cubic-bezier(.2,.8,.2,1);
}
.fk-cely .jornada__ico { display: grid; place-items: center; line-height: 0; }
.fk-cely .jornada__step.is-active .jornada__marker {
  color: var(--primary);
  border-color: var(--primary);
  background: #fff;
  transform: scale(1.06);
}
.fk-cely .jornada__step.is-active .jornada__num-big { color: var(--primary); }
.fk-cely .jornada__num-big { transition: color .35s ease; }
.fk-cely .jornada__num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  color: var(--primary);
  letter-spacing: -0.02em;
}
.fk-cely .jornada__num-big {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  line-height: 1;
}
.fk-cely .jornada__num-unit {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.fk-cely .jornada__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-top: 4px;
}
.fk-cely .jornada__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 42ch;
}
@media (max-width: 880px) {
  .fk-cely .jornada { height: auto; }
  .fk-cely .jornada__pin {
    position: relative;
    top: auto;
    height: auto;
    padding: var(--section-pad) 0;
  }
  .fk-cely .jornada__track { grid-template-columns: 1fr; gap: 40px; }
  .fk-cely .jornada__line {
    top: 0; bottom: 0;
    left: 23px; right: auto;
    width: 1px; height: auto;
    background: repeating-linear-gradient(
      to bottom,
      rgba(20,39,44,.22) 0 6px,
      transparent 6px 12px
    );
  }
  .fk-cely .jornada__line-fill {
    top: 0; left: 23px;
    width: 1px; height: 0;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--primary) 70%, transparent 100%);
  }
  .fk-cely .jornada__avatar { top: 0; left: 23px; }
  .fk-cely .jornada__marker { left: 0; top: 0; }
  .fk-cely .jornada__step { padding-left: 68px; padding-top: 0; min-height: 60px; }
}



.fk-cely .depo2 {
  padding: 0;
  background: var(--bg-soft);
  min-height: 760px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.fk-cely .depo2__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: clamp(28px, 3vw, 48px);
  align-items: stretch;
  width: 100%;
  min-height: 760px;
}
.fk-cely .depo2__left {
  display: flex; flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  justify-content: center;
  padding-right: 12px;
}
.fk-cely .depo2__left h2 {
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.05;
  margin: 4px 0 6px;
  text-wrap: balance;
}
.fk-cely .depo2__left h2 em {
  color: var(--primary);
  font-weight: 500;
}
.fk-cely .depo2__left p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 38ch;
  text-wrap: pretty;
}
.fk-cely .depo2__cta {
  margin-top: 12px;
  height: 52px;
  padding: 0 28px;
}

.fk-cely .depo2__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}
.fk-cely .depo2__col {
  overflow: hidden;
  position: relative;
  height: 760px;
  max-height: 100%;
  scrollbar-width: none;
}
.fk-cely .depo2__col::-webkit-scrollbar { display: none; }
.fk-cely .depo2__col-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fk-cely .depo2__card { min-height: 360px; }

.fk-cely .depo2__card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-shrink: 0;
}
.fk-cely .depo2__mark {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: .6;
  color: var(--primary);
  font-weight: 700;
  height: 22px;
}
.fk-cely .depo2__quote {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  font-weight: 500;
}
.fk-cely .depo2__foot {
  display: flex; flex-direction: column;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed rgba(0,0,0,.08);
}
.fk-cely .depo2__author {
  display: flex; flex-direction: column;
  gap: 3px;
}
.fk-cely .depo2__author strong {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.fk-cely .depo2__author span {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.fk-cely .depo2__tag {
  align-self: flex-start;
  padding: 6px 12px;
  background: rgba(168,116,68,.14);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .fk-cely .depo2 { min-height: 0; }
  .fk-cely .depo2__inner { grid-template-columns: 1fr; gap: 40px; min-height: 0; }
  .fk-cely .depo2__left { position: static; padding: 60px 0 20px; }
  .fk-cely .depo2__right { min-height: 0; }
  .fk-cely .depo2__col { height: 720px; min-height: 0; }
}
@media (max-width: 540px) {
  .fk-cely .depo2__right { grid-template-columns: 1fr; }
  .fk-cely .depo2__col { height: 600px; }
  .fk-cely .depo2__col:nth-child(2) { display: none; }
}


@media (max-width: 768px) {

  
  .fk-cely .depo2__left {
    align-items: center !important;
    text-align: center;
    padding: 40px 16px !important;
  }
  .fk-cely .depo2__left h2 { text-align: center; }
  .fk-cely .depo2__left p {
    text-align: center;
    max-width: 100%;
  }
  .fk-cely .depo2__cta { align-self: center; }
}

.fk-cely .domiciliar__grid--symptoms { grid-template-columns: repeat(2, 1fr); gap: 16px; }
.fk-cely .domiciliar__card--symptom { flex-direction: row; align-items: center; gap: 18px; padding: 22px 26px; }
.fk-cely .domiciliar__card--symptom h4 { margin: 0; font-size: 16px; }
.fk-cely .domiciliar__card--symptom .domiciliar__num { opacity: .9; }
@media (max-width: 640px) { .fk-cely .domiciliar__grid--symptoms { grid-template-columns: 1fr; } }


.fk-cely #formacao.jornada { height: 560vh; }
.fk-cely #formacao .jornada__track { grid-template-columns: repeat(5, 1fr); gap: 24px; }
.fk-cely #formacao .jornada__num-big { font-size: clamp(26px, 2.6vw, 40px); }
.fk-cely #formacao .jornada__desc { font-size: 14px; }
@media (max-width: 880px) {
  .fk-cely #formacao.jornada { height: auto; }
  .fk-cely #formacao .jornada__track { grid-template-columns: 1fr; gap: 0; }
}


.fk-cely .programa__head { flex-direction: column; align-items: flex-start; gap: 6px; }
.fk-cely .programa__loc {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--primary);
}
.fk-cely .programa--featured .programa__loc { color: var(--accent-light); }
.fk-cely .programa__badge { position: absolute; top: 40px; right: 40px; }
@media (max-width: 880px) { .fk-cely .programa__badge { top: 28px; right: 28px; } }


.fk-cely .authority__chips { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fk-cely .authority__chip {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 6px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.fk-cely .authority__chip:hover { background: rgba(255,255,255,.08); border-color: var(--accent-light); transform: translateY(-3px); }
.fk-cely .authority__chip-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-light); }
.fk-cely .authority__chip-name { font-size: 17px; font-weight: 600; color: #fff; letter-spacing: -0.01em; line-height: 1.25; }
@media (max-width: 560px) { .fk-cely .authority__chips { grid-template-columns: 1fr; } }


.fk-cely .faq { background: var(--bg); }


.fk-cely .team-h {
  padding: 0;
  height: 1200vh;
  position: relative;
}
.fk-cely .team-h__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 24px;
}
.fk-cely .team-h__pin > .container { width: 100%; max-width: 1320px; }
.fk-cely .team-h__head {
  margin-bottom: 40px;
  gap: 56px;
  grid-template-columns: 1.5fr 1fr;
  max-width: 100%;
  align-items: start;
}
.fk-cely .team-h__head h2 {
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.022em;
}
.fk-cely .team-h__head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.fk-cely .team-h__head-right p { margin: 0; font-size: 16px; line-height: 1.55; }
.fk-cely .team-h__head-cta { align-self: flex-start; }

.fk-cely .team-h__track-wrap {
  position: relative;
  overflow: hidden;
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
}
.fk-cely .team-h__track {
  display: flex;
  gap: 32px;
  padding: 12px var(--gutter);
  width: max-content;
}
.fk-cely .team-h__card {
  flex-shrink: 0;
  width: clamp(420px, 38vw, 580px);
  min-height: 320px;
  background: #fff;
  border: 1px solid rgba(20,39,44,.12);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .35s ease, background .35s ease;
}
.fk-cely .team-h__card.is-active {
  border-color: var(--primary, #1B2F26);
  background: #fafbfc;
}
.fk-cely .team-h__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(20,39,44,.18);
}
.fk-cely .team-h__card-num {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--primary, #1B2F26);
}
.fk-cely .team-h__card-total { color: rgba(20,39,44,.45); }
.fk-cely .team-h__card-tag {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(20,39,44,.45);
}
.fk-cely .team-h__card-role {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--primary, #1B2F26);
  margin: 0;
}
.fk-cely .team-h__card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(20,39,44,.65);
  margin: 0;
}

@media (max-width: 880px) {
  
  .fk-cely .team-h {
    height: auto !important;
    padding: var(--section-pad) 0 !important;
  }
  .fk-cely .team-h__pin {
    position: static !important;
    top: auto !important;
    height: auto !important;
    display: block !important;
    padding: 0 !important;
  }
  .fk-cely .team-h__pin > .container { padding: 0 var(--gutter); }
  .fk-cely .team-h__head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
    text-align: center;
    justify-items: center;
  }
  .fk-cely .team-h__head h2 {
    font-size: clamp(24px, 5.6vw, 34px);
    text-align: center;
  }
  .fk-cely .team-h__head-right {
    gap: 14px;
    align-items: center;
  }
  .fk-cely .team-h__head-right p { font-size: 14px; text-align: center; }
  .fk-cely .team-h__head-cta { align-self: center; }
  .fk-cely .team-h__track-wrap {
    overflow: visible;
    margin: 0;
  }
  .fk-cely .team-h__track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    width: 100% !important;
    transform: none !important;
  }
  .fk-cely .team-h__card {
    width: 100%;
    min-height: 0;
    padding: 24px;
  }
  .fk-cely .team-h__card-role { font-size: clamp(20px, 5vw, 26px); }
}


.fk-cely h1 em, .fk-cely h2 em, .fk-cely h3 em, .fk-cely h4 em { font-style: normal; color: var(--primary); font-weight: inherit; }
.fk-cely .section--ink em, .fk-cely .domiciliar em, .fk-cely .authority em { color: var(--accent-light); }



.fk-cely .clinic {
  padding: 0;
  background-color: var(--ink);
  background-image:
    radial-gradient(ellipse 600px 400px at 15% 20%, rgba(27,47,38,.28), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 80%, rgba(90,120,128,.16), transparent 60%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.fk-cely .clinic__inner { position: relative; z-index: 1; }
.fk-cely .clinic__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 620px;
}
.fk-cely .clinic__text {
  padding: 80px 56px;
  display: flex; flex-direction: column; gap: 20px;
  justify-content: center;
  max-width: 720px;
}
.fk-cely .clinic__text h2 {
  color: #fff;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.02em;
}
.fk-cely .clinic__text h2 em {
  font-style: normal;
  color: var(--accent-light);
  font-weight: 500;
}
.fk-cely .clinic__text p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  max-width: 56ch;
}
.fk-cely .clinic__pilares {
  list-style: none;
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 28px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.fk-cely .clinic__pilares li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.fk-cely .clinic__pilares-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--accent-light);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.fk-cely .clinic__pilares li > div { display: flex; flex-direction: column; gap: 3px; }
.fk-cely .clinic__pilares strong {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  color: #fff;
  letter-spacing: 0;
}
.fk-cely .clinic__pilares span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.7);
}
.fk-cely .clinic__cta {
  align-self: flex-start;
  margin-top: 12px;
  background: #fff;
  color: var(--ink);
}
.fk-cely .clinic__cta:hover { background: var(--accent-light); color: var(--ink); transform: translateY(-1px); }
.fk-cely .clinic__media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #fff;
}
.fk-cely .clinic__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 56px;
}
.fk-cely .clinic__img--placeholder {
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg,
      rgba(27,47,38,.06) 0 18px,
      rgba(27,47,38,.10) 18px 36px);
}
.fk-cely .clinic__img--placeholder span {
  font-family: ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--primary-dark);
  background: rgba(255,255,255,.92);
  padding: 10px 14px;
  border-radius: 0;
  border: 1px solid var(--line);
}


.fk-cely .clinic__registros {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.035);
  border-top: 1px dashed rgba(255,255,255,.16);
  padding: 44px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fk-cely .clinic__registros-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px 32px;
}
.fk-cely .clinic__registro {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,.18);
}
.fk-cely .clinic__registro strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.fk-cely .clinic__registro span {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,.55);
}

@media (max-width: 1024px) {
  .fk-cely .clinic__inner { grid-template-columns: 1fr; }
  .fk-cely .clinic__text { padding: 64px 24px; max-width: 100%; }
  .fk-cely .clinic__media { min-height: 360px; }
  .fk-cely .clinic__registros { padding: 32px 24px; }
}
@media (max-width: 880px) {
  
  .fk-cely .clinic__registros-list { grid-template-columns: 1fr; gap: 0; }
  .fk-cely .clinic__registro {
    padding: 16px 0;
    border-left: 0;
    border-bottom: 1px dashed rgba(255,255,255,.16);
    align-items: center;
    text-align: center;
    gap: 5px;
  }
  .fk-cely .clinic__registro:last-child { border-bottom: 0; }
  .fk-cely .clinic__registro strong { font-size: 16px; }
}
@media (max-width: 520px) {
  .fk-cely .clinic__creds { grid-template-columns: 1fr; gap: 20px; }
}


.fk-cely #autoridade .clinic__media { display: grid; place-items: center; padding: 48px; background: #fff; min-height: 520px; }
.fk-cely #autoridade .clinic__img { position: static; inset: auto; width: auto; height: auto; max-width: 78%; max-height: 420px; object-fit: contain; padding: 0; border-radius: var(--radius-lg); }
.fk-cely #autoridade .clinic__img--placeholder { width: 78%; max-width: 360px; height: 420px; }


.fk-cely #autoridade .clinic__text h2 { font-size: clamp(40px, 4.4vw, 60px); line-height: 1.04; }


.fk-cely .diff__head-right { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; max-width: 420px; }
.fk-cely .diff__head-right p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0; }
@media (max-width: 880px) { .fk-cely .diff__head-right { max-width: 100%; align-items: center; text-align: center; } }


.fk-cely .proc__card { position: relative; }
.fk-cely .proc__plus {
  position: absolute; top: 22px; right: 22px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--line-strong); color: var(--primary);
  display: grid; place-items: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.fk-cely .proc__card:hover .proc__plus { background: var(--primary); color: #fff; border-color: var(--primary); }


.fk-cely .hero { min-height: auto; }
.fk-cely .hero__lead { text-wrap: pretty; }
.fk-cely .hero__visual { align-items: center; justify-content: center; padding: 48px clamp(24px, 4vw, 56px); }
.fk-cely .hero__photo { width: 100%; max-width: 460px; min-height: 0; aspect-ratio: 4/5; border-radius: var(--radius-lg); margin: 0 auto; }


.fk-cely #autoridade .clinic__media { display: block; padding: 0; min-height: 560px; }
.fk-cely #autoridade .clinic__img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; max-height: none; object-fit: cover; padding: 0; border-radius: 0; }
.fk-cely #autoridade .clinic__img--placeholder { width: 100%; max-width: none; height: 100%; display: grid; place-items: center; }


.fk-cely .hero { min-height: auto; }
.fk-cely .hero__content { padding-top: 48px; padding-bottom: 64px; }
.fk-cely .hero__visual { align-items: stretch; justify-content: stretch; padding: 0; }
.fk-cely .hero__photo { width: 100%; max-width: none; min-height: 100%; aspect-ratio: auto; border-radius: 0; margin: 0; }
@media (max-width: 1024px) {
  .fk-cely .hero__visual { padding: 0 var(--gutter); }
  .fk-cely .hero__photo { min-height: 320px; aspect-ratio: 16/10; }
}


.fk-cely .diff__head { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: end; }
.fk-cely .diff__head-right { max-width: 100%; }
@media (max-width: 880px) { .fk-cely .diff__head { grid-template-columns: 1fr; gap: 20px; } }


.fk-cely .s-head--split p, .fk-cely .s-head p { text-wrap: pretty; }


.fk-cely .hero__lead { text-wrap: balance; }


.fk-cely .diff__head-right p, .fk-cely .clinic__text p { text-wrap: pretty; }


.fk-cely .hero h1 { text-wrap: balance; }


.fk-cely .proc .s-head p, .fk-cely .domiciliar .s-head p, .fk-cely .team-h__head-right p, .fk-cely .diff__head-right p { text-wrap: balance; }


.fk-cely .proc__card, .fk-cely .domiciliar__card, .fk-cely .team-h__card { border-radius: var(--radius-md); }
.fk-cely .compare__table { border-radius: var(--radius-md); overflow: hidden; }
.fk-cely .proc__icon, .fk-cely .domiciliar__icon { border-radius: 10px; }


.fk-cely .depo2__left h2 { text-wrap: balance; }
.fk-cely .depo2__left p { text-wrap: pretty; }


.fk-cely .nav__toggle {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em; color: var(--ink); background: none; cursor: pointer;
}
.fk-cely .nav__burger { display: inline-flex; flex-direction: column; gap: 5px; }
.fk-cely .nav__burger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: background .2s; }
.fk-cely .nav__toggle:hover .nav__burger span { background: var(--primary); }

.fk-cely .menuover {
  position: fixed; inset: 0; z-index: 300;
  display: grid; grid-template-columns: 1fr 1fr;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
}
.fk-cely .menuover.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.fk-cely .menuover__media { position: relative; background: var(--ink); overflow: hidden; cursor: pointer; }
.fk-cely .menuover__media-ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 18px, rgba(255,255,255,.08) 18px 36px);
  color: rgba(255,255,255,.5); font-family: ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.22em;
}
.fk-cely .menuover__panel {
  background: var(--bg); padding: clamp(32px, 4.5vw, 64px);
  display: flex; flex-direction: column;
}
.fk-cely .menuover__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: clamp(32px, 5vw, 56px); }
.fk-cely .menuover__title { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.fk-cely .menuover__close {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  cursor: pointer; transition: background .2s ease, transform .2s ease;
}
.fk-cely .menuover__close:hover { background: var(--primary); transform: rotate(90deg); }
.fk-cely .menuover__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; margin-bottom: auto; }
.fk-cely .menuover__list a {
  font-family: var(--font-display); font-size: clamp(20px, 2vw, 28px); font-weight: 600;
  color: var(--ink); letter-spacing: -0.015em; transition: color .2s ease, padding-left .2s ease;
}
.fk-cely .menuover__list a:hover { color: var(--primary); padding-left: 6px; }
.fk-cely .menuover__foot { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; margin-top: clamp(40px, 5vw, 64px); }
.fk-cely .menuover__contact { font-size: 14px; color: var(--muted); text-decoration: underline; }
.fk-cely .menuover__contact:hover { color: var(--primary); }
@media (max-width: 768px) {
  .fk-cely .menuover { grid-template-columns: 1fr; }
  .fk-cely .menuover__media { display: none; }
  .fk-cely .menuover__list { grid-template-columns: 1fr; gap: 14px; }
}


.fk-cely .depo2__left p { text-wrap: balance; }


.fk-cely #autoridade .clinic__registros { background: var(--primary-dark); border-top-color: rgba(255,255,255,.10); }


.fk-cely .compare__row { border-bottom: 1px solid rgba(20,39,44,.10); }
.fk-cely .compare__cell--b::before { top: -20px; bottom: -20px; background: rgba(20,39,44,.10); }


.fk-cely .menuover { z-index: 400; }
.fk-cely.menu-open .section-dots, .fk-cely.menu-open .wa-float, .fk-cely.menu-open .back-top, .fk-cely.menu-open .scroll-progress { opacity: 0 !important; pointer-events: none !important; visibility: hidden !important; }


.fk-cely .menuover__list { align-content: start; gap: 22px 40px; }
.fk-cely .menuover__list li { opacity: 0; transform: translateY(10px); transition: opacity .4s ease, transform .4s ease; }
.fk-cely .menuover.is-open .menuover__list li { opacity: 1; transform: none; }
.fk-cely .menuover.is-open .menuover__list li:nth-child(1) { transition-delay: .08s; }
.fk-cely .menuover.is-open .menuover__list li:nth-child(2) { transition-delay: .12s; }
.fk-cely .menuover.is-open .menuover__list li:nth-child(3) { transition-delay: .16s; }
.fk-cely .menuover.is-open .menuover__list li:nth-child(4) { transition-delay: .20s; }
.fk-cely .menuover.is-open .menuover__list li:nth-child(5) { transition-delay: .24s; }
.fk-cely .menuover.is-open .menuover__list li:nth-child(6) { transition-delay: .28s; }
.fk-cely .menuover.is-open .menuover__list li:nth-child(7) { transition-delay: .32s; }
.fk-cely .menuover.is-open .menuover__list li:nth-child(8) { transition-delay: .36s; }
.fk-cely .menuover.is-open .menuover__list li:nth-child(9) { transition-delay: .40s; }


.fk-cely .menuover__list a { font-size: clamp(16px, 1.3vw, 20px); font-weight: 600; }
.fk-cely .menuover__list { gap: 18px 40px; }


.fk-cely .hero h1 em, .fk-cely .diff__head h2 em, .fk-cely h1 em, .fk-cely h2 em, .fk-cely h3 em, .fk-cely h4 em { color: var(--accent); }
.fk-cely .section--ink em, .fk-cely .domiciliar em, .fk-cely .authority em, .fk-cely .clinic__text h2 em { color: var(--accent-light); }


.fk-cely .menuover__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }


.fk-cely .hero__photo { background: #E0DCD3; overflow: hidden; }
.fk-cely .hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.fk-cely #autoridade .clinic__media { background: #DDD2C3; overflow: hidden; }
.fk-cely #autoridade .clinic__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 20%;
}

.fk-cely .menuover__img {
  object-fit: cover;
  object-position: 62% 18%;
}


.fk-cely .hero__photo { background: var(--bg); }
.fk-cely #autoridade .clinic__media { background: var(--bg); }


.fk-cely #autoridade .clinic__registros { background: var(--bg); border-top: 1px solid var(--line); }
.fk-cely #autoridade .clinic__registro { border-left-color: var(--line-strong); border-bottom-color: var(--line); }
.fk-cely #autoridade .clinic__registro strong { color: var(--ink); }
.fk-cely #autoridade .clinic__registro span { color: var(--muted); }


.fk-cely .btn--white { background: #fff; color: var(--ink); }
.fk-cely .btn--white:hover { background: var(--accent-light); color: var(--ink); transform: translateY(-1px); }


.fk-cely .menuover__panel { background: var(--ink); color: #fff; }
.fk-cely .menuover__title { color: #fff; }
.fk-cely .menuover__list a { color: #fff; }
.fk-cely .menuover__list a:hover { color: var(--accent-light); }
.fk-cely .menuover__close { background: #fff; color: var(--ink); }
.fk-cely .menuover__close:hover { background: var(--accent-light); color: var(--ink); }
.fk-cely .menuover__cta { align-self: flex-start; }
.fk-cely .menuover__social { display: flex; gap: 12px; flex-wrap: wrap; }
.fk-cely .menuover__social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-pill); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.fk-cely .menuover__social-btn:hover { background: rgba(255,255,255,.10); border-color: var(--accent-light); color: var(--accent-light); }
.fk-cely .menuover__contact { color: rgba(255,255,255,.7); }
.fk-cely .menuover__contact:hover { color: var(--accent-light); }


.fk-cely .wa-float {
  width: 48px; height: 48px;
  background: var(--ink); color: #fff;
  bottom: 24px; right: 24px;
  box-shadow: 0 8px 24px rgba(27,47,38,.25);
  animation: none;
}
.fk-cely .wa-float::before { display: none; }
.fk-cely .wa-float:hover { background: var(--primary); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(27,47,38,.3); }
.fk-cely .wa-float svg { width: 26px; height: 26px; }
.fk-cely .back-top { bottom: 84px; }


.fk-cely.controls-on-dark .back-top, .fk-cely.controls-on-dark .wa-float { background: #fff; color: var(--ink); box-shadow: 0 8px 24px rgba(0,0,0,.28); }
.fk-cely.controls-on-dark .back-top:hover, .fk-cely.controls-on-dark .wa-float:hover { background: var(--accent-light); color: var(--ink); }
.fk-cely.controls-on-dark .section-dots__item.is-active .section-dots__dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.2); }

@media (max-width: 768px) {
  .fk-cely .wa-float { width: 42px; height: 42px; bottom: 18px; right: 18px; }
}


.fk-cely .nav { background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.08); }
.fk-cely .nav__inner { position: relative; }
.fk-cely .nav__toggle { color: #fff; }
.fk-cely .nav__burger span { background: #fff; }
.fk-cely .nav__toggle:hover .nav__burger span { background: var(--accent-light); }
.fk-cely .nav__brand {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em; color: #fff; white-space: nowrap;
}
@media (max-width: 720px) { .fk-cely .nav__brand { display: none; } }


.fk-cely .menuover__panel { background: var(--bg); color: var(--ink); }
.fk-cely .menuover__title { color: var(--ink); }
.fk-cely .menuover__list a { color: var(--ink); }
.fk-cely .menuover__list a:hover { color: var(--primary); }
.fk-cely .menuover__close { background: var(--ink); color: #fff; }
.fk-cely .menuover__close:hover { background: var(--primary); color: #fff; }
.fk-cely .menuover__social-btn { border-color: var(--line-strong); color: var(--ink); }
.fk-cely .menuover__social-btn:hover { background: var(--bg-soft); border-color: var(--primary); color: var(--primary); }
.fk-cely .menuover__contact { color: var(--muted); }
.fk-cely .menuover__contact:hover { color: var(--primary); }


.fk-cely .nav__right { display: flex; align-items: center; gap: 18px; }
.fk-cely .nav__ig { color: #fff; display: inline-flex; transition: color .2s ease; }
.fk-cely .nav__ig:hover { color: var(--accent-light); }
.fk-cely .hero { height: 700px; min-height: 0; }
@media (max-width: 1024px) { .fk-cely .hero { height: auto; } }


.fk-cely .menuover__top--end { justify-content: flex-end; }


@media (max-width: 768px) {
  
  .fk-cely .hero { height: auto; min-height: 0; }
  .fk-cely .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .fk-cely .hero__content { padding: 28px 20px 12px; align-items: center; text-align: center; max-width: 100%; }
  .fk-cely .hero__content h1, .fk-cely .hero__content .hero__lead, .fk-cely .hero__content .hero__cta { max-width: 100%; width: 100%; }
  .fk-cely .hero h1 { font-size: clamp(27px, 7.6vw, 36px); }
  .fk-cely .hero__lead { font-size: 15px; }
  .fk-cely .hero__cta { flex-direction: column; gap: 12px; width: 100%; }
  .fk-cely .hero__cta .btn { width: 100%; }
  .fk-cely .hero__visual { padding: 0; }
  .fk-cely .hero__photo { min-height: 420px; aspect-ratio: auto; }

  
  .fk-cely .nav__cta { display: none; }

  
  .fk-cely .s-head--split { text-align: center; justify-items: center; }
  .fk-cely .s-head--split h2, .fk-cely .s-head--split p { text-align: center; }
  .fk-cely .loc__text, .fk-cely .loc__intro, .fk-cely .loc__sub { text-align: center; }
}


@media (max-width: 880px) {
  .fk-cely .compare__cell--b::before { display: none; }
}

@media (max-width: 768px) {
  
  .fk-cely .programa__list li { font-size: 14px; }

  
  .fk-cely .faq__cta { display: none; }

  
  .fk-cely #cta { display: none; }

  
  .fk-cely .foot { background: var(--ink); }
  .fk-cely .foot__bottom { color: #fff; border-top-color: rgba(255,255,255,.12); }
  .fk-cely .foot__bottom span { color: #fff; }

  
  .fk-cely #autoridade .clinic__registros-list {
    display: flex; grid-template-columns: none; gap: 0;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .fk-cely #autoridade .clinic__registros-list::-webkit-scrollbar { display: none; }
  .fk-cely #autoridade .clinic__registro {
    flex: 0 0 auto; min-width: 62%; scroll-snap-align: start;
    border-left: 1px solid var(--line); border-bottom: 0;
    padding: 4px 22px; align-items: flex-start; text-align: left;
  }
}

@media (max-width: 768px) {
  
  .fk-cely .hero__cta { flex-direction: row; gap: 10px; }
  .fk-cely .hero__cta .btn { width: auto; flex: 1; min-width: 0; padding: 0 12px; font-size: 11.5px; letter-spacing: 0.02em; height: 52px; }
}

@media (max-width: 768px) {
  
  .fk-cely #atendimento .s-head p { display: none; }
}

@media (max-width: 768px) {
  
  .fk-cely .diff__head-right .btn { display: none; }
}

@keyframes registros-marquee_fk-cely { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes depo-marquee_fk-cely { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 768px) {
  
  .fk-cely .proc__grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .fk-cely .proc__card { padding: 18px 16px; min-height: 0; }
  .fk-cely .proc__card h4 { font-size: 17px; }
  .fk-cely .proc__card p { font-size: 13px; }
  .fk-cely .proc__icon { width: 40px; height: 40px; margin-bottom: 2px; }
  .fk-cely .proc__plus { top: 12px; right: 12px; width: 28px; height: 28px; }

  
  .fk-cely #autoridade .clinic__registros { overflow: hidden; }
  .fk-cely #autoridade .clinic__registros-list {
    display: flex; flex-wrap: nowrap; grid-template-columns: none;
    width: max-content; overflow: visible; gap: 0; scroll-snap-type: none;
    animation: registros-marquee_fk-cely 22s linear infinite;
  }
  .fk-cely #autoridade .clinic__registro--dup { display: flex; }
  .fk-cely #autoridade .clinic__registro {
    flex: 0 0 auto; width: 220px; min-width: 220px;
    border-left: 1px solid var(--line); border-bottom: 0;
    padding: 4px 22px; align-items: flex-start; text-align: left;
  }

  
  .fk-cely #depoimentos .depo2__right { display: block; overflow: hidden; grid-template-columns: none; }
  .fk-cely #depoimentos #depoColB { display: none; }
  .fk-cely #depoimentos #depoColA { display: block; overflow: hidden; height: auto; }
  .fk-cely #depoimentos #depoColA .depo2__col-track {
    flex-direction: row; gap: 16px; width: max-content;
    animation: depo-marquee_fk-cely 32s linear infinite;
  }
  .fk-cely #depoimentos .depo2__card { flex: 0 0 80vw; width: 80vw; min-height: 0; }
}

@media (max-width: 768px) {
  
  .fk-cely .hero__content { padding-bottom: 40px; }
}

@media (max-width: 768px) {
  
  .fk-cely .compare__table { max-width: 100%; }
  .fk-cely .compare__head { grid-template-columns: 1fr; padding: 18px 18px; }
  .fk-cely .compare__head-cell--label { display: none; }
  .fk-cely .compare__head-cell--b { padding: 0; }
  .fk-cely .compare__row { grid-template-columns: 1fr; gap: 7px; padding: 16px 18px; align-items: start; }
  .fk-cely .compare__cell--label { padding: 0; font-size: 10px; letter-spacing: 0.12em; }
  .fk-cely .compare__cell--b { padding: 0; font-size: 14px; }
}

@media (max-width: 768px) {
  
  .fk-cely #depoimentos { padding-bottom: 64px; }
  .fk-cely #depoimentos .depo2__right { margin-bottom: 8px; }
}

@media (max-width: 768px) {
  
  .fk-cely .compare__row { padding: 18px 20px; gap: 9px; }
  .fk-cely .compare__cell--label { font-size: 10px; letter-spacing: 0.14em; }
  .fk-cely .compare__cell--b { font-size: 13.5px; gap: 10px; }
  .fk-cely .compare__cell--b span:last-child { line-height: 1.3; }
  .fk-cely .compare__mark { width: 18px; height: 18px; }
}

@media (max-width: 768px) {
  
  .fk-cely #depoimentos .depo2__inner { gap: 14px; }
  .fk-cely #depoimentos .depo2__left { padding-bottom: 4px; }
}


@media (min-width: 769px) {
  .fk-cely #autoridade .clinic__registro--dup { display: none; }
}


.fk-cely .foot2 {
  background: #fff;
  color: var(--ink);
  padding: 80px 0 28px;
  position: relative;
  overflow: hidden;
}
.fk-cely .foot2 > .container { position: relative; z-index: 2; }
.fk-cely .foot2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(0,0,0,.07);
}
.fk-cely .foot2__col {
  padding: 40px 36px;
  display: flex; flex-direction: column;
  gap: 16px;
  border-right: 1px solid rgba(0,0,0,.07);
}
.fk-cely .foot2__col:last-child { border-right: 0; }
.fk-cely .foot2__col--last { padding-right: 36px; }
.fk-cely .foot2__h {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.fk-cely .foot2__addr {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0;
}
.fk-cely .foot2__btn {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  height: 44px; padding: 0 22px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 8px;
  transition: background .2s ease, transform .2s ease;
}
.fk-cely .foot2__btn:hover { background: var(--primary); transform: translateY(-1px); }
.fk-cely .foot2__btn svg { transition: transform .2s ease; }
.fk-cely .foot2__btn:hover svg { transform: translate(3px, -3px); }
.fk-cely .foot2__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 12px 0 0;
}
.fk-cely .foot2__phil {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
  max-width: 32ch;
}
.fk-cely .foot2__social {
  display: flex; gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}
.fk-cely .foot2__sicon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: #fff;
  color: var(--ink-2);
  border: 1px solid rgba(0,0,0,.07);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.fk-cely .foot2__sicon:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.fk-cely .foot2__sicon--accent {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.fk-cely .foot2__sicon--accent:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.fk-cely .foot2__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(60px, 7vw, 96px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin: 12px 0 6px;
}
.fk-cely .foot2__num sup {
  font-size: .45em;
  color: var(--primary);
  vertical-align: top;
}
.fk-cely .foot2__sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin: 0;
  max-width: 22ch;
}
.fk-cely .foot2__hours {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-top: auto;
  padding-top: 16px;
  font-weight: 500;
}

.fk-cely .foot2__nav {
  display: flex; justify-content: space-between;
  gap: 24px;
  padding: 36px 32px;
  margin-top: 0;
  border-left: 1px solid rgba(0,0,0,.07);
  border-right: 1px solid rgba(0,0,0,.07);
  border-bottom: 1px solid rgba(0,0,0,.07);
  flex-wrap: wrap;
}
.fk-cely .foot2__nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: color .2s ease;
}
.fk-cely .foot2__nav a:hover { color: var(--primary); }

.fk-cely .foot2__brand {
  position: absolute;
  left: 0; right: 0; bottom: -3vw;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(140px, 24vw, 360px);
  line-height: .8;
  letter-spacing: -0.05em;
  color: var(--ink);
  opacity: .045;
  text-align: center;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.fk-cely .foot2__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  padding: 28px 0 12px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
}
.fk-cely .foot2__links { display: flex; gap: 22px; }
.fk-cely .foot2__links a {
  color: var(--muted);
  font-size: 12px;
  transition: color .2s ease;
}
.fk-cely .foot2__links a:hover { color: var(--primary); }

@media (max-width: 880px) {
  .fk-cely .foot2__grid { grid-template-columns: 1fr; }
  .fk-cely .foot2__col {
    padding: 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.07);
  }
  .fk-cely .foot2__col:last-child { border-bottom: 0; }
  .fk-cely .foot2__col--last { padding-right: 28px; }
  .fk-cely .foot2__nav { gap: 14px 24px; padding: 28px; }
}

.fk-cely .foot2__bottom { justify-content: center; text-align: center; }
.fk-cely .foot2__bottom span { text-wrap: balance; }

.fk-cely .loc2 { padding: var(--section-pad) 0; }
.fk-cely .loc2__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px; align-items: stretch; margin-top: 8px; }
.fk-cely .loc2__info {
  display: flex; flex-direction: column; gap: 16px; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 40px;
}
.fk-cely .loc2__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.fk-cely .loc2__addr { font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.fk-cely .loc2__info .btn { align-self: flex-start; }
.fk-cely .loc2__map {
  position: relative; overflow: hidden; min-height: 360px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.fk-cely .loc2__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.05); }
.fk-cely .loc2__map::after { content: ''; position: absolute; inset: 0; background: var(--primary); opacity: .16; mix-blend-mode: multiply; pointer-events: none; }
@media (max-width: 880px) { .fk-cely .loc2__grid { grid-template-columns: 1fr; } .fk-cely .loc2__map { min-height: 300px; } }

.fk-cely #localizacao .s-head--split p, .fk-cely #localizacao .s-head--split h2 { text-wrap: balance; }


.fk-cely .nav__logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; color: #fff; transition: color .25s ease; }
.fk-cely .nav__logo svg { height: 38px; width: auto; display: block; }
.fk-cely .nav.is-scrolled .nav__logo { color: var(--primary); }
@media (max-width: 600px) { .fk-cely .nav__logo svg { height: 30px; } }

.fk-cely .nav__logo-img { height: 52px; width: auto; display: block; transition: opacity .25s ease; }
.fk-cely .nav__logo-img--dark { display: none; }
.fk-cely .nav.is-scrolled .nav__logo-img--light { display: none; }
.fk-cely .nav.is-scrolled .nav__logo-img--dark { display: block; }
@media (max-width: 600px) { .fk-cely .nav__logo-img { height: 42px; } }
