@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

.jf-root {
  --orange-700: #c9481d;
  --orange-600: #e6572a;
  --orange-500: #ef6b3f;
  --lime-600: #7cad2e;
  --lime-500: #93c93f;
  --lime-100: #eef7de;
  --ink-900: #201d15;
  --ink-700: #55503f;
  --muted: #8a8371;
  --cream-50: #fffdf8;
  --cream-100: #f7f2e7;
  --paper: #ffffff;
  --black-900: #17160f;
  --line: #ece4d2;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink-900);
  background: var(--cream-50);
  overflow-x: hidden;
}
.jf-root * { box-sizing: border-box; }
.jf-root h1, .jf-root h2, .jf-root h3, .jf-root h4 {
  font-family: 'Fredoka', 'Inter', sans-serif;
  color: var(--ink-900);
  margin: 0;
  line-height: 1.15;
}
.jf-root p { margin: 0; line-height: 1.65; color: var(--ink-700); }
.jf-root button { font-family: inherit; cursor: pointer; }
.jf-root a { color: inherit; text-decoration: none; }
.jf-root ul { margin: 0; padding: 0; list-style: none; }
.jf-root svg { display: block; }
.jf-root img { max-width: 100%; display: block; }

.jf-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.jf-section { padding: 76px 0; }
.jf-section-alt { background: var(--cream-100); }
.jf-h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 600; max-width: 640px; }
.jf-lede { font-size: 17.5px; color: var(--ink-700); max-width: 600px; }
.jf-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--orange-700); margin-bottom: 12px; }
.jf-eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--lime-500); display: inline-block; }
.jf-eyebrow-light { color: var(--lime-500); }
.jf-eyebrow-light::before { background: var(--orange-500); }

/* Header */
.jf-header { position: sticky; top: 0; z-index: 60; background: var(--paper); border-bottom: 1px solid var(--line); }
.jf-header-inner { max-width: 1180px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.jf-brand { display: flex; align-items: center; gap: 12px; background: none; border: none; padding: 0; }
.jf-logo { height: 54px; width: 54px; border-radius: 50%; object-fit: contain; }
.jf-brand-text { display: flex; flex-direction: column; text-align: left; }
.jf-brand-name { font-family: 'Fredoka', sans-serif; font-size: 21px; font-weight: 700; color: var(--ink-900); line-height: 1.1; }
.jf-brand-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: var(--orange-600); margin-top: 2px; }
.jf-nav-desktop { display: flex; align-items: center; gap: 2px; }
.jf-nav-link { background: none; border: none; color: var(--ink-700); font-size: 14.5px; font-weight: 600; padding: 9px 14px; border-radius: 999px; transition: all 0.18s; }
.jf-nav-link:hover { background: var(--cream-100); color: var(--ink-900); }
.jf-nav-link.is-active { background: var(--lime-100); color: var(--lime-600); }
.jf-nav-toggle { display: none; background: none; border: none; color: var(--ink-900); }
.jf-nav-mobile { display: none; }
.jf-header-cta { display: flex; align-items: center; gap: 10px; }

@media (max-width: 900px) {
  .jf-nav-desktop { display: none; }
  .jf-header-cta .jf-btn-ghost { display: none; }
  .jf-nav-toggle { display: flex; }
  .jf-nav-mobile { display: none; flex-direction: column; gap: 2px; padding: 10px 20px 18px; background: var(--paper); border-top: 1px solid var(--line); }
  .jf-nav-mobile.is-open { display: flex; }
  .jf-nav-mobile-link { text-align: left; background: none; border: none; color: var(--ink-700); font-size: 15px; padding: 10px 4px; border-bottom: 1px solid var(--line); font-weight: 600; }
  .jf-nav-mobile-link.is-active { color: var(--orange-600); }
  .jf-nav-mobile .jf-btn { margin-top: 10px; }
}

/* Buttons */
.jf-btn { display: inline-flex; align-items: center; gap: 8px; justify-content: center; padding: 13px 24px; border-radius: 999px; border: none; font-size: 14.5px; font-weight: 700; transition: transform 0.15s ease, box-shadow 0.15s ease; white-space: nowrap; }
.jf-btn:active { transform: scale(0.96); }
.jf-btn.jf-btn-orange { background: var(--orange-600); color: #fff; box-shadow: 0 8px 20px rgba(230,87,42,0.35); }
.jf-btn.jf-btn-orange:hover { background: var(--orange-700); transform: translateY(-1px); }
.jf-btn.jf-btn-lime { background: var(--lime-500); color: var(--black-900); box-shadow: 0 8px 20px rgba(147,201,63,0.35); }
.jf-btn.jf-btn-lime:hover { background: var(--lime-600); transform: translateY(-1px); }
.jf-btn.jf-btn-dark { background: var(--black-900); color: #fff; }
.jf-btn.jf-btn-dark:hover { background: #000; }
.jf-btn.jf-btn-ghost { background: transparent; color: var(--ink-900); border: 1.5px solid var(--ink-900); }
.jf-btn.jf-btn-ghost:hover { background: var(--cream-100); }
.jf-btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* Hero */
.jf-hero { position: relative; overflow: hidden; height: 448px; }
.jf-hero-slider { position: absolute; inset: 0; z-index: 0; }
.jf-hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center 40%; opacity: 0; transition: opacity 1.1s ease; }
.jf-hero-slide.is-active { opacity: 1; }
.jf-hero-slide-caption { position: absolute; left: 0; right: 0; top: 38%; transform: translateY(-50%); text-align: center; padding: 0 24px; z-index: 2; opacity: 0; transition: opacity 1.1s ease 0.15s, transform 1.1s ease 0.15s; }
.jf-hero-slide.is-active .jf-hero-slide-caption { opacity: 1; }
.jf-hero-slide-caption h1 { color: #fff; font-size: 40px; font-weight: 800; line-height: 1.15; margin: 0; text-shadow: 0 4px 24px rgba(0,0,0,0.45); }
.jf-hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(23,22,15,0.78) 0%, rgba(23,22,15,0.42) 45%, rgba(23,22,15,0.18) 70%, rgba(23,22,15,0.32) 100%); }
.jf-hero-inner { position: relative; z-index: 2; width: 100%; height: 100%; padding: 28px 0 32px; }
.jf-hero-badge { position: absolute; top: 28px; left: 24px; display: inline-flex; align-items: center; gap: 8px; background: rgba(23,22,15,0.55); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.22); color: var(--lime-500); font-size: 13px; font-weight: 700; padding: 7px 16px; border-radius: 999px; }
.jf-hero-actions { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; width: max-content; max-width: calc(100% - 48px); }
.jf-hero-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 2; }
.jf-hero-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: background 0.3s ease, transform 0.3s ease; }
.jf-hero-dots span.is-active { background: #fff; transform: scale(1.25); }
@media (max-width: 640px) {
  .jf-hero { height: 368px; }
  .jf-hero-badge { left: 16px; top: 20px; }
  .jf-hero-actions { bottom: 24px; }
  .jf-hero-slide-caption h1 { font-size: 26px; }
  .jf-hero-slide-caption { top: 34%; }
}

/* Welcome */
.jf-welcome-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.jf-welcome-photo { display: flex; align-items: center; justify-content: center; }
.jf-welcome-photo-img { width: 100%; max-width: 456px; height: auto; display: block; }
.jf-h2-lg { font-size: clamp(29px, 3.75vw, 44px); }
.jf-body-text-lg { font-size: 17.6px; }
@media (max-width: 860px) {
  .jf-welcome-grid { grid-template-columns: 1fr; gap: 32px; }
  .jf-welcome-photo-img { max-width: 320px; margin: 0 auto; }
}

/* Cards */
.jf-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
@media (max-width: 900px) { .jf-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .jf-card-grid { grid-template-columns: 1fr; } }
/* Wider container just for the photo-card sections, so cards get extra breadth */
.jf-container-wide { max-width: 1550px; }
.jf-why-card { background: var(--paper); border-radius: 20px; padding: 26px 24px; border: 1px solid var(--line); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.jf-why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(32,29,21,0.08); }
.jf-why-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: #fff; }
.jf-why-card:nth-child(odd) .jf-why-icon { background: var(--orange-600); }
.jf-why-card:nth-child(even) .jf-why-icon { background: var(--lime-600); }
.jf-why-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.jf-why-card p { font-size: 14.5px; }

/* Photo cards (Why JS Foods / Services) — image background, diagonal overlay slide-in on hover */
.jf-photo-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 21 / 20;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-color: var(--ink-900);
  isolation: isolate;
  box-shadow: 0 10px 24px rgba(32,29,21,0.10);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.jf-photo-card:hover,
.jf-photo-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 20px 36px rgba(32,29,21,0.20);
}
/* base scrim so text is always legible even before hover */
.jf-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(20,19,13,0.82) 0%, rgba(20,19,13,0.32) 48%, rgba(20,19,13,0.02) 72%);
  transition: opacity 0.35s ease;
}
.jf-photo-card:hover::after { opacity: 0; }
/* diagonal color overlay that slides in from top-left to bottom-right */
.jf-photo-card-overlay {
  position: absolute;
  inset: -45%;
  z-index: 2;
  background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-500) 45%, var(--lime-600) 100%);
  opacity: 0;
  transform: translate(-60%, -60%);
  transition: transform 0.55s cubic-bezier(0.45, 0, 0.2, 1), opacity 0.3s ease;
  pointer-events: none;
}
.jf-photo-card:hover .jf-photo-card-overlay,
.jf-photo-card:focus-visible .jf-photo-card-overlay {
  opacity: 0.92;
  transform: translate(0, 0);
}
.jf-photo-card-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--orange-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0) rotate(-35deg);
  opacity: 0;
  transition: transform 0.35s ease 0.08s, opacity 0.3s ease 0.08s;
}
.jf-photo-card:hover .jf-photo-card-arrow,
.jf-photo-card:focus-visible .jf-photo-card-arrow {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}
.jf-photo-card-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 3;
  color: #fff;
}
.jf-photo-card-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime-500);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.jf-photo-card:hover .jf-photo-card-tag { color: rgba(255,255,255,0.85); }
.jf-photo-card-content h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  transition: margin 0.3s ease;
}
.jf-photo-card-content p {
  color: rgba(255,255,255,0.92);
  font-size: 14.5px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.jf-photo-card:hover .jf-photo-card-content p,
.jf-photo-card:focus-visible .jf-photo-card-content p {
  max-height: 120px;
  opacity: 1;
  margin-top: 7px;
}
@media (max-width: 640px) {
  /* keep description + arrow visible on touch devices where hover isn't available */
  .jf-photo-card-content p { max-height: 120px; opacity: 1; margin-top: 7px; }
  .jf-photo-card-arrow { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* Meal plans band */
.jf-plans-band { background: var(--lime-500); padding: 76px 0; position: relative; overflow: hidden; }
.jf-plans-band::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.12); top: -220px; right: -160px; }
.jf-plans-band .jf-eyebrow { color: var(--black-900); }
.jf-plans-band .jf-eyebrow::before { background: var(--orange-600); }
.jf-plans-band .jf-h2 { color: var(--black-900); }
.jf-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; position: relative; z-index: 1; }
@media (max-width: 900px) { .jf-plan-grid { grid-template-columns: 1fr; } }
.jf-plan-card { background: var(--paper); border-radius: 22px; padding: 28px 26px; display: flex; flex-direction: column; box-shadow: 0 16px 34px rgba(23,22,15,0.14); overflow: hidden; }
.jf-plan-photo { margin: -28px -26px 20px; height: 170px; }
.jf-plan-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jf-plan-card.is-mid { transform: translateY(-14px); }
@media (max-width: 900px) { .jf-plan-card.is-mid { transform: none; } }
.jf-plan-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.jf-plan-tier { font-family: 'Fredoka', sans-serif; font-size: 20px; font-weight: 600; }
.jf-plan-price { font-size: 24px; font-weight: 700; color: var(--orange-600); }
.jf-plan-price small { font-size: 12px; font-weight: 500; color: var(--muted); margin-left: 2px; }
.jf-plan-idealfor { display: block; margin-top: 8px; font-size: 13px; color: var(--muted); font-style: italic; }
.jf-plan-list { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.jf-plan-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 14.5px; color: var(--ink-700); }
.jf-plan-list li svg { color: var(--lime-600); flex-shrink: 0; margin-top: 2px; }
.jf-plan-btn { margin-top: 20px; width: 100%; }
.jf-fineprint { margin-top: 22px; font-size: 12.5px; color: rgba(23,22,15,0.65); position: relative; z-index: 1; }

/* Coverage band */
.jf-coverage { background: var(--black-900); padding: 70px 0; }
.jf-coverage .jf-h2 { color: #fff; }
.jf-coverage .jf-lede { color: rgba(255,255,255,0.7); }
.jf-city-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.jf-city-chip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: 14px; font-weight: 600; padding: 10px 20px; border-radius: 999px; }

/* FAQ */
.jf-faq-item { border-bottom: 1px solid var(--line); }
.jf-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 4px; background: none; border: none; text-align: left; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 16px; color: var(--ink-900); cursor: pointer; }
.jf-faq-item.is-open .jf-faq-q { color: var(--orange-600); }
.jf-faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--ink-900); position: relative; }
.jf-faq-item.is-open .jf-faq-icon { border-color: var(--orange-600); }
.jf-faq-icon::before, .jf-faq-icon::after { content: ""; position: absolute; background: currentColor; top: 50%; left: 50%; }
.jf-faq-icon::before { width: 10px; height: 2px; transform: translate(-50%,-50%); }
.jf-faq-icon::after { width: 2px; height: 10px; transform: translate(-50%,-50%); transition: transform 0.2s; }
.jf-faq-item.is-open .jf-faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.jf-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.jf-faq-item.is-open .jf-faq-a { max-height: 240px; }
.jf-faq-a p { padding: 0 4px 20px; font-size: 15px; }

/* CTA band */
.jf-cta-band { background: var(--orange-600); padding: 56px 0; }
.jf-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.jf-cta-band h2 { color: #fff; font-size: 28px; }
.jf-cta-band p { color: rgba(255,255,255,0.85); margin-top: 6px; max-width: 480px; }
.jf-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.jf-cta-band .jf-btn-ghost { border-color: #fff; color: #fff; }
.jf-cta-band .jf-btn-ghost:hover { background: rgba(255,255,255,0.12); }
.jf-cta-band .jf-btn-lime { color: var(--black-900); }

/* Footer */
.jf-footer { background: var(--black-900); color: rgba(255,255,255,0.72); padding: 56px 0 28px; }
.jf-footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 800px) { .jf-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .jf-footer-grid { grid-template-columns: 1fr; } }
.jf-footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.jf-footer-brand img { height: 42px; width: 42px; border-radius: 50%; }
.jf-footer-brand span { font-family: 'Fredoka', sans-serif; font-size: 18px; font-weight: 700; color: #fff; }
.jf-footer h4 { color: #fff; font-size: 14px; margin-bottom: 14px; }
.jf-footer-links { display: flex; flex-direction: column; gap: 10px; }
.jf-footer-links a, .jf-footer-links span { font-size: 14px; color: rgba(255,255,255,0.65); }
.jf-footer-links a:hover { color: var(--orange-500); }
.jf-footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 12px; }
.jf-footer-contact-item svg { flex-shrink: 0; color: var(--orange-500); margin-top: 2px; }
.jf-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 22px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.45); }

/* Page header (inner pages) */
.jf-pageheader { background: var(--black-900); padding: 64px 0 46px; position: relative; overflow: hidden; }
.jf-pageheader::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, var(--orange-600), transparent 70%); top: -180px; right: -100px; opacity: 0.5; }
.jf-pageheader h1 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); position: relative; z-index: 1; max-width: 640px; }
.jf-breadcrumb { display: flex; gap: 8px; align-items: center; margin-top: 12px; font-size: 13.5px; color: rgba(255,255,255,0.55); position: relative; z-index: 1; }
.jf-breadcrumb button { background: none; border: none; color: var(--orange-500); font-size: 13.5px; font-weight: 600; }

/* Page header with photo background (e.g. About Us hero) */
.jf-pageheader-photo { background-size: cover; background-position: center 32%; padding: 96px 0 72px; }
.jf-pageheader-photo::before { display: none; }
.jf-pageheader-photo::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0;
  background: linear-gradient(100deg, rgba(23,22,15,0.92) 20%, rgba(23,22,15,0.62) 55%, rgba(23,22,15,0.42) 100%);
}
.jf-pageheader-photo .jf-container { position: relative; z-index: 1; }

/* About intro (text + supporting photo) */
.jf-about-intro-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; max-width: 1040px; }
.jf-about-intro-photo { border-radius: 24px; overflow: hidden; box-shadow: 0 16px 34px rgba(32,29,21,0.14); }
.jf-about-intro-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .jf-about-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .jf-about-intro-photo { order: -1; max-height: 280px; }
}

/* Mission/Values */
.jf-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }
@media (max-width: 700px) { .jf-mv-grid { grid-template-columns: 1fr; } }
.jf-mv-card { background: var(--paper); border-radius: 20px; padding: 28px; border: 1px solid var(--line); border-top: 4px solid var(--orange-600); }
.jf-mv-card:nth-child(2) { border-top-color: var(--lime-600); }
.jf-mv-tag { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 16px; color: var(--orange-600); }
.jf-mv-card:nth-child(2) .jf-mv-tag { color: var(--lime-600); }
.jf-mv-card p { margin-top: 10px; }

/* Management */
.jf-mgmt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 700px) { .jf-mgmt-grid { grid-template-columns: 1fr; } }
.jf-mgmt-card { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 22px; display: flex; align-items: center; gap: 16px; }
.jf-avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--orange-600); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 17px; flex-shrink: 0; }
.jf-mgmt-card:nth-child(2) .jf-avatar { background: var(--lime-600); }
.jf-mgmt-role { display: block; font-size: 13px; color: var(--orange-600); font-weight: 600; margin: 2px 0 4px; }
.jf-mgmt-card a { font-size: 13px; color: var(--ink-700); display: flex; align-items: center; gap: 6px; }

/* Testimonials */
.jf-sample-note { background: var(--lime-100); color: var(--lime-600); font-size: 13px; font-weight: 600; padding: 10px 16px; border-radius: 12px; display: inline-block; margin-bottom: 28px; }
.jf-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .jf-testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .jf-testi-grid { grid-template-columns: 1fr; } }
.jf-testi-card { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 24px; }
.jf-testi-quote { font-size: 14.5px; color: var(--ink-700); font-style: italic; }
.jf-testi-who { margin-top: 16px; display: flex; align-items: center; gap: 10px; }
.jf-testi-who .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--lime-100); color: var(--orange-600); display: flex; align-items: center; justify-content: center; font-family: 'Fredoka', sans-serif; font-weight: 700; flex-shrink: 0; }
.jf-testi-who strong { display: block; font-size: 14px; }
.jf-testi-who span { font-size: 12.5px; color: var(--muted); }

/* Contact */
.jf-contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; }
@media (max-width: 860px) { .jf-contact-grid { grid-template-columns: 1fr; } }
.jf-field { margin-bottom: 16px; }
.jf-field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.jf-field input, .jf-field select, .jf-field textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line); font-family: inherit; font-size: 14.5px; background: var(--paper); }
.jf-field input:focus, .jf-field select:focus, .jf-field textarea:focus { outline: none; border-color: var(--orange-500); }
.jf-contact-info-card { background: var(--black-900); border-radius: 22px; padding: 30px; color: #fff; }
.jf-contact-info-card h3 { color: #fff; font-size: 19px; margin-bottom: 18px; }
.jf-contact-info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.jf-contact-info-item svg { color: var(--orange-500); flex-shrink: 0; margin-top: 2px; }
.jf-contact-info-item strong { display: block; font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 600; margin-bottom: 2px; }
.jf-contact-info-item span, .jf-contact-info-item a { font-size: 15px; color: #fff; }
.jf-map-note { margin-top: 20px; padding: 16px; background: rgba(255,255,255,0.06); border-radius: 14px; font-size: 13px; color: rgba(255,255,255,0.65); }

/* Trial popup + launcher (kept from prior functionality, restyled) */
.jf-launcher { position: fixed; bottom: 22px; right: 22px; z-index: 90; background: var(--orange-600); color: #fff; border: none; border-radius: 999px; padding: 14px 22px; font-weight: 700; font-size: 14px; box-shadow: 0 14px 30px rgba(230,87,42,0.4); display: flex; align-items: center; gap: 8px; }
.jf-whatsapp-float { position: fixed; bottom: 92px; right: 22px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; overflow: hidden; box-shadow: 0 14px 30px rgba(23,22,15,0.3); display: flex; transition: transform 0.15s ease; }
.jf-whatsapp-float:hover { transform: translateY(-2px) scale(1.04); }
.jf-whatsapp-float img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 600px) { .jf-whatsapp-float { bottom: 82px; width: 50px; height: 50px; } }
.jf-overlay { position: fixed; inset: 0; background: rgba(23,22,15,0.6); z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.jf-modal { background: var(--paper); border-radius: 22px; max-width: 420px; width: 100%; padding: 28px; position: relative; }
.jf-modal-close { position: absolute; top: 16px; right: 16px; background: var(--cream-100); border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 16px; }
.jf-modal h3 { font-size: 20px; margin-bottom: 6px; }
.jf-modal p.sub { font-size: 14px; margin-bottom: 18px; }
.jf-modal-nav { display: flex; gap: 10px; margin-top: 18px; }
.jf-err { color: var(--orange-700); font-size: 12.5px; margin-top: 4px; }

.jf-visually-hidden[hidden] { display: none !important; }
.jf-root [hidden] { display: none !important; }
