/* language selector styles */
.topbar select#languageSelector {
  margin-left: auto;
  font-size: 14px;
  padding: 4px 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: white;
}

/* ── Skeleton / page-load placeholder ── */
@keyframes skelShimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.skel-line,
.skel-img,
.skel-photo,
.skel-step-dot,
.skel-step-line,
.skel-field-label,
.skel-field-input,
.skel-btn {
  background: linear-gradient(90deg, #e8ecf0 25%, #f4f6f8 50%, #e8ecf0 75%);
  background-size: 600px 100%;
  animation: skelShimmer 1.4s ease-in-out infinite;
  border-radius: 6px;
}

#pageSkeleton {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-top: 56px; /* same height as topbar */
  pointer-events: none;
}

/* Hero skeleton */
.skel-hero {
  padding: 32px 16px 140px;
  background: linear-gradient(135deg, #e9edff 0%, #f3e8ff 50%, #e0f2fe 100%);
  border-bottom-left-radius: 56px;
  border-bottom-right-radius: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.skel-title {
  width: 60%;
  max-width: 320px;
  height: 32px;
  border-radius: 8px;
}
.skel-subtitle {
  width: 80%;
  max-width: 400px;
  height: 18px;
}
.skel-images {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: center;
}
.skel-img {
  width: 90px;
  height: 127px; /* A4 ratio */
  border-radius: 8px;
  flex-shrink: 0;
}

/* Card skeleton */
.skel-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(15,23,42,0.08);
  border: 1px solid rgba(148,163,184,0.22);
  max-width: 1160px;
  margin: -120px auto 0;
  padding: 32px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Steps */
.skel-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.skel-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}
.skel-step-line {
  flex: 1;
  max-width: 80px;
  height: 4px;
  border-radius: 2px;
}

/* Body: photo + fields */
.skel-body {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.skel-photo {
  width: 140px;
  height: 190px;
  flex-shrink: 0;
  border-radius: 12px;
  align-self: center;
}
.skel-fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.skel-field-label {
  width: 40%;
  height: 12px;
}
.skel-field-input {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  margin-bottom: 4px;
}

/* Button */
.skel-btn {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(90deg, #fbd0b0 25%, #fde8d8 50%, #fbd0b0 75%);
  background-size: 600px 100%;
  animation: skelShimmer 1.4s ease-in-out infinite;
}

@media (max-width: 600px) {
  .skel-hero { padding-bottom: 100px; }
  .skel-card { margin-top: -80px; padding: 24px 14px 20px; }
  .skel-images { gap: 8px; }
  .skel-img { width: 72px; height: 102px; }
  .skel-body { flex-direction: column; align-items: center; }
  .skel-photo { width: 100%; max-width: 180px; height: 160px; }
}
/* ── End skeleton ── */

/* highlight span used in hero titles when requested through URL */
.hero-simple h1 .highlight {
  /* apply a vibrant gradient to the text itself */
  background: linear-gradient(90deg, #f97316 0%, #db2777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* keep a little horizontal padding so letters don’t touch the sides */
  padding: 0 2px;
}

/* Recovery banner */
.recovery-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #d1fae5;
  border-bottom: 1px solid #10b981;
  color: #065f46;
  font-size: 13px;
  line-height: 1.4;
}
.recovery-banner svg {
  flex-shrink: 0;
  color: #059669;
}

html, body {
  overflow-x: hidden; /* prevent horizontal scrolling of the entire page */
}

body {
  margin: 0;
  /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
  background: linear-gradient(
      135deg,
      #f8fafc 0%,
      #f5f7fb 45%,
      #eef2f7 100%
  );
  color: #111827; /* black text */
}

.topbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  /* backdrop-filter was removed because toggling it could crash the
     browser GPU process on some macOS/Chrome setups.  A plain translucent
     background is safer. */
  /* backdrop-filter: blur(6px); */
  border-bottom: 1px solid #eaeef6;
  padding: 10px 12px; /* reduced vertical padding to decrease header height */
  display: flex;
  z-index: 1000;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #111827;
}



.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f97316 0%, #db2777 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(219, 39, 119, 0.12); /* softened logo shadow */
}

.logo-text {
  line-height: 1;
}

.logo-text span {
  background: linear-gradient(90deg, #f97316 0%, #db2777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Image logo (replaces text on index) */
.logo-img {
  height: 24px; /* smaller visual size */
  width: auto;
padding: 4px 0px 4px 0px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
} 

.preview-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 0;
}

.preview-scroll img {
  width: 120px;
  aspect-ratio: 210 / 297; /* A4 */

  background: #ffffff; /* placeholder */

  /* border-radius: 6px; */
  object-fit: cover;

  /* no fade effect */
  transition: none;
  opacity: 1;
}

/* no opacity change when loaded */
.preview-scroll img:not(.loaded) { 
  opacity: 1;
}

.hero-simple {
  padding: 32px 0;
  padding-bottom: 140px;
  text-align: center;
  background: linear-gradient(
    135deg,
    #e9edff 0%,
    #f3e8ff 50%,
    #e0f2fe 100%
  );
  border-bottom-left-radius: 56px;
  border-bottom-right-radius: 56px;
}

.hero-container {
  max-width: 65%;
  margin: auto;
}

.hero-row {
  display: flex;
  align-items: flex-end; /* align image to bottom of row */
  justify-content: center;
  gap: 28px;
}

/* when heroDemo mode=2 on desktop we want text and scroll previews aligned at top
   and vertical centering of the images inside the scroll container. A class is toggled
   by renderHeroDemo() so we can target it here. Only apply for wider viewports. */
@media (min-width: 768px) {
  /* treat the desktop layout like mobile when in mode‑2: stack text above demo and
     centre everything, matching the @media(max-width) rules below */
  .hero-row.hero-demo-mode2 {
    flex-direction: column;
    text-align: center;
    gap: 0px;
    justify-content: flex-end; 
  }
  .hero-row.hero-demo-mode2 .hero-text {
    padding: 0;
    text-align: center;
    align-self: center;
  }
  /* layout for mode1: text should take remaining space on the left, demo sits right */
  .hero-row.hero-demo-mode1 {
    justify-content: space-between;
  }
  .hero-row.hero-demo-mode1 .hero-text {
    flex: 1 1 auto;
    text-align: left;
  }
  /* make the scrolling preview fill the full viewport, breaking out of the
     .hero-container that normally limits width. this ensures edge-to-edge images
     even though the parent has max-width:65%. */
  .hero-row.hero-demo-mode2 .hero-demo {
    /* breakout behaviour only for mode2; otherwise width:auto allows text to flex */
    width: 100vw; 
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 0px;
    padding-left: 0;
    padding-right: 0;
    overflow-x: auto;
    min-height: 150px; /* ensure visible area before images are inserted */
  }
  .hero-row.hero-demo-mode2 .preview-scroll {
    /* hide scrollbar visually but allow scroll */
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    max-width: none; /* prevent parent's max-width from clipping images */
    padding-left: 0;
    margin-bottom: 12px;
    padding-right: 0;
    justify-content: center; 
    overflow-x: auto;
    /* background-color: #ffffff;  */
  }
  .hero-row.hero-demo-mode2 .preview-scroll::-webkit-scrollbar {
    display: none;
  }

  /* ensure the horizontal preview area has visible height even when empty */
  .hero-row.hero-demo-mode2 .preview-scroll {
    min-height: 150px;
  }
}

.hero-text {
  flex: 1 1 0px;
  text-align: left;
  align-self: flex-end; /* keep text aligned to top so image sits lower */
}

/* make sure text remains flexible on desktop beyond default mode rules */
@media (min-width: 768px) {
  .hero-text {
    flex: 1 1 auto;
  }
}

.hero-demo {
  /* do not allow the demo area to flex; text should be the flexible item */
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0; /* allow form-card to overlap if needed */
  overflow-x: auto;      /* allow horizontal scrolling when content wider */
  width: auto; /* shrink to fit content so text can occupy remaining space */
  white-space: nowrap;    /* keep inline children on one line */
}

/* ensure the demo image itself never tries to grow/shrink */
.hero-demo img {
  flex: none;
}

.hero-demo img {
  display: block;
  width: 90%;
  max-width: 520px; /* desktop max */
  height: auto;
}

/* horizontal preview scroll container */
.preview-scroll {
  display: inline-flex;    /* shrink to content width so hero-demo can overflow */
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 16px; /* leave space between scroll and any following button */
  align-items: center; /* center images vertically */
  /* -webkit-overflow-scrolling: touch;  */
  /* touch-action: pan-x; */
  /* width:auto implied by inline-flex */
}


.preview-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.preview-scroll img {
  height: 150px;       /* desktop default height */
  width: auto;         /* preserve native aspect */
  flex: none;          /* don't shrink or grow inside flex container */
  object-fit: contain; /* ensure whole image visible, no cropping */
  min-width: 100px;    /* guarantee horizontal overflow when more than one image */
  min-height: 150px;
  background-color: #ffffff3d; /* white background while image is loading */
  opacity: 1;
  transition: none;
}
.preview-scroll img.loaded {
  opacity: 1;
}
/* show scrollbar on desktop */
/* .preview-scroll::-webkit-scrollbar {
  height: 8px;
} */
/* .preview-scroll::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
} */
/* .preview-scroll::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
} */
/* responsive adjustments */
/* @media (max-width: 768px) {
  .preview-scroll img {
    height: 250px; 
  }
  .preview-scroll::-webkit-scrollbar {
    display: none;
  }
} */

.highlight {
  /* Option 1 (active): Warm Yellow + Bridal Pink */
  /* background: linear-gradient(90deg, #f59e0b 0%, #ec4899 100%); */
  /* Option 2: Soft Gold + Rose */
  /* background: linear-gradient(90deg, #d4a017 0%, #be185d 100%); */
  /* Option 3: Saffron + Blush */
  /* background: linear-gradient(90deg, #eab308 0%, #f472b6 100%); */
  /* Option 4: Marigold + Rani Pink */
  background: linear-gradient(90deg, #f97316 0%, #db2777 100%);
  /* Option 5: Antique Gold + Deep Pink */
  /* background: linear-gradient(90deg, #ca8a04 0%, #9d174d 100%); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-simple h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111827;
}

.hero-simple p {
  font-size: 17px;
  color: #374151;
  margin-bottom: 30px;
}

.form-section-wrapper {
  margin-top: -152px;
  padding: 0 28px 60px;
}

.form-card {
  background: rgba(255, 255, 255, 1);
  border-radius: 24px; /* smoother */
  padding: 52px 22px 0px 72px;
  margin: 0 auto;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.22);
  max-width: 1160px;
  position: relative;
  z-index: 20; /* ensure form-card appears above hero image when overlapping */
}

/* Hide form content while JS renders fields. Revealed when JS adds `.is-ready`. */
.form-card.loading { visibility: hidden; opacity: 0; pointer-events: none; }
.form-card.is-ready { visibility: visible; opacity: 1; transition: opacity .18s ease; pointer-events: auto; }

/* Spinner overlay while the form is being rendered */
.form-card .form-loading {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 40;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2937;
}

.form-card.loading .form-loading {
  display: flex;
}

.form-loading__spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(0, 0, 0, 0.15);
  border-top-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.features {
  padding: 70px 20px 28px;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.features-container {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #fde7d7;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(219, 39, 119, 0.08);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffe7d0, #ffd6ec);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: #9d174d;
}

.feature-title {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #9f1239;
}

.feature-text {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
  color: #1f2937;
}

.footer {
  padding: 34px 20px 42px;
  text-align: center;
  font-size: 14px;
  color: #e5e7eb;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
}

.footer-title {
  margin: 0 0 10px;
  font-size: 24px;
  color: #ffffff;
}

.footer-subtitle {
  margin: 0 0 18px;
  color: #cbd5e1;
  font-size: 14px;
}

.footer-links a {
  margin: 0 4px;
  text-decoration: none;
  color: #f8fafc;
}

.footer-links a:hover {
  color: #f9a8d4;
}

.footer-copy {
  margin-top: 16px;
  color: #94a3b8;
  font-size: 13px;
}

.faq {
  padding: 30px 20px 72px;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq h2 {
  margin: 0 0 20px;
  font-size: 30px;
  color: #111827;
}

.faq-item {
  border: 1px solid #fde7d7;
  background: #fffaf5;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #9f1239;
}

.faq-item p {
  margin: 0;
  color: #374151;
  line-height: 1.55;
}

.seo-content {
  padding: 6px 20px 80px;
  background: #ffffff;
}

.seo-container {
  max-width: 900px;
  margin: auto;
}

.seo-content h2 {
  margin: 0 0 12px;
  font-size: 30px;
  color: #111827;
}

.seo-content h3 {
  margin: 20px 0 8px;
  font-size: 19px;
  color: #9f1239;
}

.seo-content p,
.seo-content li {
  color: #374151;
  line-height: 1.7;
  font-size: 16px;
}

.seo-content ul {
  margin: 10px 0 0;
  padding-left: 20px;
}


.preview-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

@media (max-width: 900px) {
  .features-container {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 10px 20px 30px 20px;
  }

  .hero-container {
  max-width: 100%;
  margin: auto;
  padding: 0px 0px 0px 0px;
}

.hero-simple {
  padding-bottom: 108px;
  text-align: center;
  background: linear-gradient(
    135deg,
    #e9edff 0%,
    #f3e8ff 50%,
    #e0f2fe 100%
  );
  border-bottom-left-radius: 56px;
  border-bottom-right-radius: 56px;
}

.hero-simple h1 {
  margin-top: 0px;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0px;
  color: #111827;
}

.hero-simple p {
  font-size: 16px;
  color: #374151;
  margin-top: 8px;
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 18px;
}


  .hero-row {
    flex-direction: column;
    text-align: center;
    gap: 0px;
    justify-content: flex-end; /* push items to bottom on mobile */
   
  }


  .hero-text {
    padding: 0px 0px 0px 0px;
    text-align: center;
    align-self: center; /* center text horizontally like the image */
  }

  .hero-image img {
    max-width: 90%;
  }

  .form-section-wrapper {
    margin-top: -126px;
    padding: 0 16px 22px;
  }

  .faq h2 {
    font-size: 24px;
  }

.hero-demo {
  display: flex;
  justify-content: center; /* center horizontally */
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.hero-demo img {
  /* ensure the hero image remains visible on narrow viewports
     previous rule set width:0% which hid the image when heroDemo mode1
     was active (single sample image). Using a percentage keeps it
     responsive while still respecting max-width. */
  width: 90%;
  height: auto;
}


  .preview-scroll {
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    width: max-content;             /* ✅ KEY FIX */
    padding-left: 16px;
    padding-right: 16px;
      scrollbar-width: none;
  -ms-overflow-style: none;
  }

  .preview-scroll img {
    height: 150px;
    width: auto;
    flex: none;
  }

  
.hero-demo::-webkit-scrollbar {
  display: none;               /* Chrome, Safari, iOS */
}


.preview-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}


  .seo-content h2 {
    font-size: 24px;
  }
}

/* @media (max-width: 1024px) and (min-width: 901px) {
  .form-section-wrapper {
    padding: 0 20px 64px;
  }
} */

/* @media (max-width: 768px) {
  .topbar {
    padding: 14px 18px;
  }

  .logo {
    font-size: 19px;
    gap: 8px;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .hero-simple {
    padding-bottom: 90px;
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
  }

  .hero-simple h1 {
    margin-bottom: 14px;
  }

  .hero-simple p {
    margin-bottom: 22px;
  }

  .form-section-wrapper {
    margin-top: -100px;
    padding: 0 16px 52px;
  }

  .form-card {
   
    border-radius: 32px;
    padding: 20px 22px 22px ;
  }
} */

/* ===========================
   HERO TRUST CHIPS
=========================== */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 20px;
}

.trust-chip {
  font-size: 12px;
  font-weight: 600;
  background: rgba(240, 253, 244, 0.92);
  border: 1px solid rgba(22, 163, 74, 0.28);
  color: #15803d;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.01em;
}

/* left-align when text side-by-side on desktop */
.hero-demo-mode1 .hero-trust {
  justify-content: flex-start;
}

/* =================================
   HERO DEMO SCROLL TOGGLE BUTTON
   (shown when scrollVisibleAtStart = false)
================================= */
.hero-scroll-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 32px;
  padding: 11px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(249, 115, 22, 0.4);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #f97316;
  cursor: pointer;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.14);
  -webkit-tap-highlight-color: transparent;
}
.hero-scroll-toggle:hover,
.hero-scroll-toggle:focus-visible {
  background: #fff7f0;
  box-shadow: 0 4px 18px rgba(249, 115, 22, 0.22);
  transform: translateY(-1px);
  outline: none;
}
.hero-scroll-toggle svg {
  flex-shrink: 0;
}

/* =================================
   FORM 3-STEP INTRO GUIDE
================================= */
.form-intro-guide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* bleed to card edges — negate desktop padding: 52px top / 72px left / 22px right */
  margin: -52px -22px 32px -72px;
  padding: 14px 28px;
  background: linear-gradient(90deg, #fff7f0 0%, #fdf4ff 100%);
  border-bottom: 1px solid #fde7d7;
  border-radius: 24px 24px 0 0;
}

.fig-step {
  display: flex;
  align-items: center;
  gap: 7px;
}

.fig-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fig-step--active .fig-num {
  background: linear-gradient(135deg, #593965 0%, #664862 100%);
  color: #fff;
  /* box-shadow: 0 2px 6px rgba(249,115,22,0.3); */
}

.fig-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  white-space: nowrap;
}

.fig-step--active .fig-label {
  color: #111827;
  font-weight: 700;
}

.fig-arrow {
  font-size: 20px;
  color: #d1d5db;
  line-height: 1;
  margin: 0 2px;
}

@media (max-width: 900px) {
  .form-intro-guide {
    /* match mobile card padding: 10px top / 20px sides */
    margin: -10px -20px 20px -20px;
    border-radius: 24px 24px 0 0;
    padding: 11px 14px;
    gap: 5px;
  }
  .fig-label { font-size: 11px; }
  .fig-num   { width: 20px; height: 20px; font-size: 10px; }
  .fig-arrow { font-size: 15px; margin: 0; }
}