/* ================================================================
   FRANCHISE PAGE — AUTO-DESK
   Design tokens: --accent #8FFF00, --dark #141414
   Typography: Unbounded (headings), Onest (body)
   UI/UX Pro Max: dark premium, 48px+ sections, 4.5:1 contrast,
   touch 44px+, 150-300ms transitions, reduced-motion safe
   ================================================================ */

/* ===== HERO SECTION ===== */

.fr-hero {
  background: var(--dark, #141414);
  padding: 140px 0 90px;
  position: relative;
  overflow: clip;
}

/* Ambient glows */
.fr-hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.5;
}

.fr-hero__glow--left {
  background: rgba(143, 255, 0, 0.08);
  top: -200px;
  left: -250px;
}

.fr-hero__glow--right {
  background: rgba(143, 255, 0, 0.05);
  bottom: -300px;
  right: -200px;
}

/* Container — override global .container flex */
.fr-hero .fr-hero__container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
  flex-direction: unset;
}

/* ---- Left: content column ---- */

.fr-hero__content {
  min-width: 0;
}

/* Label pill */
.fr-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent, #8FFF00);
  background: rgba(143, 255, 0, 0.08);
  border: 1px solid rgba(143, 255, 0, 0.15);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

/* Title */
.fr-hero__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 125%;
  color: #fff;
  margin-bottom: 20px;
  max-width: 620px;
}

/* Subtitle */
.fr-hero__subtitle {
  font-size: 16px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
  max-width: 540px;
}

.fr-hero__subtitle strong {
  color: #fff;
  font-weight: 600;
}

/* ===== STAT CARDS ===== */

.fr-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.fr-stats__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.fr-stats__card:hover {
  border-color: rgba(143, 255, 0, 0.2);
  background: rgba(143, 255, 0, 0.03);
}

.fr-stats__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(143, 255, 0, 0.08);
  border-radius: 12px;
}

.fr-stats__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fr-stats__value {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent, #8FFF00);
  line-height: 120%;
  font-variant-numeric: tabular-nums;
}

.fr-stats__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 140%;
}

/* ===== TARIFF TABS ===== */

.fr-tariffs {
  margin-bottom: 36px;
}

/* Tab row */
.fr-tariffs__header {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px 14px 0 0;
  padding: 5px;
}

.fr-tariffs__tab {
  flex: 1;
  min-height: 44px;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Onest', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 11px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

.fr-tariffs__tab:hover {
  color: rgba(255, 255, 255, 0.75);
}

.fr-tariffs__tab:focus-visible {
  outline: 2px solid var(--accent, #8FFF00);
  outline-offset: 2px;
}

.fr-tariffs__tab--active {
  background: var(--accent, #8FFF00);
  color: #000;
  font-weight: 600;
}

.fr-tariffs__tab--active:hover {
  color: #000;
}

/* "хит" badge on recommended tab */
.fr-tariffs__badge {
  position: absolute;
  top: -9px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000;
  background: var(--accent, #8FFF00);
  padding: 2px 8px;
  border-radius: 6px;
  line-height: 16px;
}

.fr-tariffs__tab--active .fr-tariffs__badge {
  background: #000;
  color: var(--accent, #8FFF00);
}

/* Panel */
.fr-tariffs__body {
  position: relative;
  display: grid;
}

.fr-tariffs__panel {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: none;
  border-radius: 0 0 18px 18px;
  padding: 28px;
  gap: 20px;
  align-items: flex-start;
  transition: opacity 0.25s ease;
}

.fr-tariffs__panel--active {
  visibility: visible;
  opacity: 1;
}

@keyframes frSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .fr-tariffs__panel--active {
    animation: none;
  }
}

.fr-tariffs__panel-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(143, 255, 0, 0.06);
  border: 1px solid rgba(143, 255, 0, 0.12);
  border-radius: 16px;
}

.fr-tariffs__panel-content {
  flex: 1;
}

.fr-tariffs__panel-title {
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  line-height: 140%;
}

.fr-tariffs__panel-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 155%;
  margin-bottom: 14px;
}

.fr-tariffs__panel-tag {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent, #8FFF00);
  background: rgba(143, 255, 0, 0.08);
  border: 1px solid rgba(143, 255, 0, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
}

/* ===== SOCIAL PROOF STRIP ===== */

.fr-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.fr-proof__avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.fr-proof__ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--dark, #141414);
  margin-left: -12px;
}

.fr-proof__ava:first-child {
  margin-left: 0;
}

.fr-proof__more {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12px;
  background: rgba(143, 255, 0, 0.12);
  border: 3px solid var(--dark, #141414);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent, #8FFF00);
}

.fr-proof__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 155%;
}

.fr-proof__text strong {
  color: #fff;
  font-weight: 600;
}

/* ===== CTA ===== */

.fr-hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fr-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 40px;
  background: var(--accent, #8FFF00);
  color: #000;
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.fr-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.fr-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(143, 255, 0, 0.25);
}

.fr-cta:hover::before {
  opacity: 1;
}

.fr-cta:focus-visible {
  outline: 3px solid rgba(143, 255, 0, 0.5);
  outline-offset: 3px;
}

.fr-cta:active {
  transform: translateY(0) scale(0.98);
}

.fr-cta__hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== RIGHT: VISUAL COLUMN ===== */

.fr-hero__visual {
  width: 100%;
  position: sticky;
  top: 100px;
}

.fr-hero__photo-wrap {
  position: relative;
}

.fr-hero__photo {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.04);
  display: block;
}

/* Floating badges */
.fr-hero__float {
  position: absolute;
  background: rgba(16, 16, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: transform 0.3s ease;
}

.fr-hero__float:hover {
  transform: translateY(-4px);
}

.fr-hero__float--top {
  top: 32px;
  right: -36px;
}

.fr-hero__float--bottom {
  bottom: 48px;
  left: -36px;
}

.fr-hero__float-value {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent, #8FFF00);
  font-variant-numeric: tabular-nums;
}

.fr-hero__float-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* ================================================================
   BLOCK 2: MARKET & COMPANY
   ================================================================ */

.fr-market {
  background: #0a0a0a;
  padding: 96px 0;
  position: relative;
}

.fr-market .fr-market__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  flex-direction: unset;
}

/* Title */
.fr-market__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  color: #fff;
  margin-bottom: 12px;
}

.fr-market__accent {
  color: var(--accent, #8FFF00);
}

.fr-market__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 155%;
  margin-bottom: 32px;
}

/* Google search snippet */
.fr-search {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}

.fr-search__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid #e8e8e8;
}

.fr-search__query {
  font-size: 15px;
  color: #202124;
  font-family: 'Onest', sans-serif;
}

.fr-search__result {
  padding: 18px 20px 14px;
}

.fr-search__result-url {
  font-size: 12px;
  color: #70757a;
  margin-bottom: 4px;
}

.fr-search__result-title {
  font-size: 18px;
  color: #1a0dab;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 130%;
}

.fr-search__result-text {
  font-size: 13px;
  color: #4d5156;
  line-height: 155%;
}

.fr-search__result-text strong {
  color: #202124;
  font-weight: 700;
}

/* Mini bar chart */
.fr-search__chart {
  padding: 16px 20px 20px;
  border-top: 1px solid #e8e8e8;
}

.fr-search__chart-label {
  font-size: 11px;
  color: #70757a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.fr-search__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.fr-search__bar-item {
  flex: 1;
  height: 0;
  background: #e8eaed;
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fr-search__bars--animated .fr-search__bar-item {
  height: var(--h);
}

/* Stagger each bar */
.fr-search__bar-item:nth-child(1) { transition-delay: 0s; }
.fr-search__bar-item:nth-child(2) { transition-delay: 0.08s; }
.fr-search__bar-item:nth-child(3) { transition-delay: 0.16s; }
.fr-search__bar-item:nth-child(4) { transition-delay: 0.24s; }
.fr-search__bar-item:nth-child(5) { transition-delay: 0.32s; }
.fr-search__bar-item:nth-child(6) { transition-delay: 0.4s; }

.fr-search__bar-item span {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: #70757a;
  white-space: nowrap;
}

.fr-search__bar-item--accent {
  background: var(--accent, #8FFF00);
}

/* Company side */
.fr-market__company-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 40px;
}

.fr-market__company-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 165%;
  margin-bottom: 32px;
}

.fr-market__company-text strong {
  color: #fff;
  font-weight: 600;
}

/* Counters grid */
.fr-market__counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.fr-market__counter {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fr-market__counter-value {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent, #8FFF00);
  font-variant-numeric: tabular-nums;
}

.fr-market__counter-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Secondary CTA */
.fr-cta--secondary {
  background: transparent;
  color: var(--accent, #8FFF00);
  border: 2px solid var(--accent, #8FFF00);
  width: 100%;
}

.fr-cta--secondary:hover {
  background: rgba(143, 255, 0, 0.08);
  box-shadow: 0 8px 30px rgba(143, 255, 0, 0.15);
}

/* ================================================================
   BLOCK 3: COMPANY IN NUMBERS
   ================================================================ */

.fr-numbers {
  background: var(--dark, #141414);
  padding: 96px 0;
  position: relative;
}

.fr-numbers__container {
  text-align: center;
}

.fr-numbers__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 135%;
  color: #fff;
  margin-bottom: 56px;
}

/* Grid: 5 items, 3+2 layout */
.fr-numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.fr-numbers__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.fr-numbers__item:hover {
  border-color: rgba(143, 255, 0, 0.2);
  transform: translateY(-4px);
}

/* Last two items center in second row */
.fr-numbers__item:nth-child(4) {
  grid-column: 1 / 2;
}

.fr-numbers__item:nth-child(5) {
  grid-column: 3 / 4;
}

/* Wide card spans center */
.fr-numbers__item--wide {
  background: rgba(143, 255, 0, 0.04);
  border-color: rgba(143, 255, 0, 0.15);
}

.fr-numbers__value {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent, #8FFF00);
  line-height: 120%;
  font-variant-numeric: tabular-nums;
}

.fr-numbers__label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 145%;
}

.fr-numbers__footnote {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 160%;
  max-width: 640px;
  margin: 0 auto;
}

/* ================================================================
   BLOCK 4: NAPKIN BUSINESS PLAN
   ================================================================ */

.fr-napkin {
  background: #0a0a0a;
  padding: 96px 0;
}

.fr-napkin__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 56px;
  line-height: 135%;
}

.fr-napkin__title-sub {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Onest', sans-serif;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

.fr-napkin .fr-napkin__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  flex-direction: unset;
}

/* ---- Napkin card (left) — real napkin ---- */

.fr-napkin__card {
  background: #f5f0e8;
  border: none;
  padding: 48px 40px 48px 80px;
  position: relative;
  overflow: visible;
  transform: rotate(-1.5deg);
  box-shadow:
    0 1px 4px rgba(0, 0, 0, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  z-index: 1;
  /* Torn top + cut corner bottom-right */
  clip-path: polygon(
    /* torn top edge */
    0% 2.5%, 3% 0.5%, 6% 2%, 9% 0%, 12% 1.8%, 15% 0.3%,
    18% 2.2%, 21% 0.6%, 24% 1.5%, 27% 0.2%, 30% 2%,
    33% 0.4%, 36% 1.8%, 39% 0.1%, 42% 2.3%, 45% 0.5%,
    48% 1.6%, 51% 0.3%, 54% 2.1%, 57% 0.6%, 60% 1.4%,
    63% 0.2%, 66% 2.4%, 69% 0.4%, 72% 1.7%, 75% 0.1%,
    78% 2%, 81% 0.5%, 84% 1.9%, 87% 0.3%, 90% 2.2%,
    93% 0.6%, 96% 1.5%, 100% 0.8%,
    /* right side down to corner cut */
    100% 92%,
    /* corner cut */
    92% 100%,
    /* bottom and left */
    0% 100%
  );
}

.fr-napkin__card:hover {
  transform: rotate(-0.3deg) translateY(-6px);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.1),
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 40px 80px rgba(0, 0, 0, 0.1);
}

/* Lined paper */
.fr-napkin__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 31px,
    rgba(100, 140, 180, 0.13) 31px,
    rgba(100, 140, 180, 0.13) 32px
  );
  pointer-events: none;
  z-index: 0;
}

/* Red margin line */
.fr-napkin__card::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 62px;
  width: 2px;
  background: rgba(200, 60, 60, 0.3);
  pointer-events: none;
  z-index: 0;
}

/* Wrapper — positions fold outside clip-path */
.fr-napkin__card-wrap {
  position: relative;
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fr-napkin__card-wrap:hover {
  transform: rotate(-0.3deg) translateY(-6px);
}

/* Remove transform from card itself — wrapper handles it */
.fr-napkin__card {
  transform: none;
}
.fr-napkin__card:hover {
  transform: none;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.1),
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 40px 80px rgba(0, 0, 0, 0.1);
}

/* Folded corner — outside clip-path, on wrapper */
.fr-napkin__fold {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8%;
  height: 8%;
  background: linear-gradient(
    315deg,
    #0a0a0a 48%,
    #c8c0b4 48%,
    #d8d0c4 60%,
    #e8e0d4 100%
  );
  pointer-events: none;
  z-index: 4;
}

/* Z-index for content */
.fr-napkin__card > * {
  position: relative;
  z-index: 1;
}

/* Header — centered, large, handwritten */
.fr-napkin__card-header {
  font-family: 'Neucha', cursive;
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: none;
  display: block;
  text-align: center;
  padding-right: 40px;
}

.fr-napkin__card-header svg { display: none; }

/* Steps — handwritten */
.fr-napkin__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fr-napkin__step {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.fr-napkin__step-num {
  width: auto;
  height: auto;
  min-width: auto;
  display: inline;
  background: transparent;
  border: none;
  border-radius: 0;
  font-family: 'Neucha', cursive;
  font-size: 24px;
  color: #c44;
}

.fr-napkin__step-num::after { content: '.'; }

.fr-napkin__step-text {
  font-family: 'Neucha', cursive;
  font-size: 24px;
  color: #333;
  line-height: 140%;
}

.fr-napkin__minus {
  color: #222 !important;
  text-decoration-color: rgba(143, 200, 0, 0.5) !important;
}

.fr-napkin__step-text strong {
  color: #111;
  text-decoration: underline;
  text-decoration-color: rgba(143, 200, 0, 0.5);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.fr-napkin__step-note {
  display: inline;
  font-family: 'Neucha', cursive;
  font-size: 17px;
  color: #999;
  margin-left: 4px;
}

.fr-napkin__step--highlight {
  background: rgba(255, 255, 100, 0.25);
  border: none;
  border-radius: 4px;
  padding: 6px 10px;
  margin-left: -10px;
}

/* Calculations — handwritten */
.fr-napkin__calc {
  border-top: none;
  margin-top: 10px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fr-napkin__calc-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Neucha', cursive;
  font-size: 22px;
  color: #555;
}

.fr-napkin__calc-line { display: none; }

.fr-napkin__calc-val {
  font-family: 'Neucha', cursive;
  font-size: 24px;
  color: #222;
  white-space: nowrap;
}

.fr-napkin__calc-val strong { color: #111; font-size: inherit; }
.fr-napkin__calc-val--minus { color: #222; }

.fr-napkin__calc-val--accent {
  font-family: 'Neucha', cursive;
  font-size: 28px;
  color: #1a6b00;
  background: linear-gradient(180deg, transparent 55%, rgba(143, 255, 0, 0.3) 55%);
  padding: 0 6px;
}

.fr-napkin__calc-row--total {
  padding-top: 10px;
  border-top: 2px solid rgba(0, 0, 0, 0.12);
  margin-top: 6px;
}

/* Line-by-line fade-up animation */
.fr-napkin__card-header,
.fr-napkin__step,
.fr-napkin__calc-row {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fr-napkin--visible .fr-napkin__card-header,
.fr-napkin--visible .fr-napkin__step,
.fr-napkin--visible .fr-napkin__calc-row {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.fr-napkin--visible .fr-napkin__card-header { transition-delay: 0.05s; }
.fr-napkin--visible .fr-napkin__step:nth-child(1) { transition-delay: 0.15s; }
.fr-napkin--visible .fr-napkin__step:nth-child(2) { transition-delay: 0.25s; }
.fr-napkin--visible .fr-napkin__step:nth-child(3) { transition-delay: 0.35s; }
.fr-napkin--visible .fr-napkin__step:nth-child(4) { transition-delay: 0.45s; }
.fr-napkin--visible .fr-napkin__step:nth-child(5) { transition-delay: 0.55s; }
.fr-napkin--visible .fr-napkin__step:nth-child(6) { transition-delay: 0.65s; }
.fr-napkin--visible .fr-napkin__step:nth-child(7) { transition-delay: 0.75s; }
.fr-napkin--visible .fr-napkin__step:nth-child(8) { transition-delay: 0.85s; }
.fr-napkin--visible .fr-napkin__calc-row:nth-child(1) { transition-delay: 0.95s; }
.fr-napkin--visible .fr-napkin__calc-row:nth-child(2) { transition-delay: 1.05s; }
.fr-napkin--visible .fr-napkin__calc-row:nth-child(3) { transition-delay: 1.15s; }

@media (prefers-reduced-motion: reduce) {
  .fr-napkin__card-header,
  .fr-napkin__step,
  .fr-napkin__calc-row {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- Right: summary ---- */

.fr-napkin__summary {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.fr-napkin__result {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fr-napkin__result-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.25s ease;
}

.fr-napkin__result-item:hover {
  border-color: rgba(143, 255, 0, 0.2);
}

.fr-napkin__result-value {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent, #8FFF00);
  font-variant-numeric: tabular-nums;
}

.fr-napkin__result-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Breakdown tags */
.fr-napkin__breakdown {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
}

.fr-napkin__breakdown-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.fr-napkin__breakdown-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fr-napkin__breakdown-tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: 100px;
}

.fr-napkin .fr-cta__hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== RESPONSIVE ===== */

/* 1200 */
@media screen and (max-width: 1200px) {
  .fr-hero .fr-hero__container {
    grid-template-columns: 1fr 320px;
    gap: 36px;
  }

  .fr-hero__title {
    font-size: 32px;
  }

  .fr-stats__value {
    font-size: 17px;
  }

  .fr-hero__float--top {
    right: -20px;
  }

  .fr-hero__float--bottom {
    left: -20px;
  }
}

/* 1024 — stack to single column */
@media screen and (max-width: 1024px) {
  .fr-market .fr-market__container {
    grid-template-columns: 1fr;
  }

  .fr-market__title {
    font-size: 28px;
  }

  .fr-numbers__title {
    font-size: 26px;
  }

  .fr-napkin .fr-napkin__layout {
    grid-template-columns: 1fr;
  }

  .fr-napkin__title {
    font-size: 26px;
  }

  .fr-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fr-numbers__item:nth-child(4),
  .fr-numbers__item:nth-child(5) {
    grid-column: auto;
  }

  .fr-numbers__item--wide {
    grid-column: 1 / -1;
  }

  .fr-numbers__value {
    font-size: 28px;
  }

  .fr-hero {
    padding: 130px 0 70px;
  }

  .fr-hero .fr-hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fr-hero__visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .fr-hero__title {
    font-size: 30px;
    max-width: none;
  }

  .fr-hero__float--top {
    right: -8px;
  }

  .fr-hero__float--bottom {
    left: -8px;
  }
}

/* 767 — mobile */
@media screen and (max-width: 767px) {
  .fr-napkin {
    padding: 64px 0;
  }

  .fr-napkin__title {
    font-size: 20px;
  }

  .fr-napkin__card {
    padding: 32px 20px 28px 44px;
    transform: rotate(-0.8deg);
  }

  .fr-napkin__card-header {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .fr-napkin__steps {
    gap: 8px;
    margin-bottom: 16px;
  }

  .fr-napkin__step {
    gap: 8px;
  }

  .fr-napkin__step-num,
  .fr-napkin__step-text {
    font-size: 17px;
    line-height: 135%;
  }

  .fr-napkin__step-note {
    font-size: 13px;
  }

  .fr-napkin__step--highlight {
    padding: 4px 8px;
    margin-left: -8px;
  }

  .fr-napkin__calc {
    padding-top: 12px;
    gap: 6px;
  }

  .fr-napkin__calc-row {
    font-size: 15px;
  }

  .fr-napkin__result-value {
    font-size: 22px;
  }

  .fr-napkin__calc-val--accent {
    font-size: 16px;
  }

  .fr-numbers {
    padding: 64px 0;
  }

  .fr-numbers__title {
    font-size: 20px;
  }

  .fr-numbers__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fr-numbers__item {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .fr-numbers__item--wide {
    grid-column: auto;
  }

  .fr-numbers__value {
    font-size: 24px;
  }

  .fr-market {
    padding: 64px 0;
  }

  .fr-market__title {
    font-size: 22px;
  }

  .fr-market__company-inner {
    padding: 24px;
  }

  .fr-market__counter-value {
    font-size: 22px;
  }

  .fr-market__counters {
    gap: 12px;
  }

  .fr-hero {
    padding: 115px 0 48px;
  }

  .fr-hero__container {
    gap: 36px;
  }

  .fr-hero__title {
    font-size: 24px;
  }

  .fr-hero__subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  /* Stats: vertical stack */
  .fr-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 32px;
  }

  .fr-stats__card {
    padding: 16px 18px;
    border-radius: 14px;
  }

  .fr-stats__value {
    font-size: 18px;
  }

  /* Tariff tabs vertical */
  .fr-tariffs__header {
    flex-direction: column;
    border-radius: 14px 14px 0 0;
  }

  .fr-tariffs__tab {
    min-height: 48px;
  }

  .fr-tariffs__badge {
    position: static;
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
  }

  .fr-tariffs__panel {
    flex-direction: column;
    gap: 14px;
    padding: 22px 20px;
  }

  /* Proof strip */
  .fr-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  /* CTA full width */
  .fr-hero__actions {
    flex-direction: column;
    gap: 10px;
  }

  .fr-cta {
    width: 100%;
    padding: 18px 24px;
    border-radius: 12px;
  }

  .fr-cta__hint {
    text-align: center;
  }

  /* Visual */
  .fr-hero__visual {
    max-width: 100%;
  }

  .fr-hero__photo {
    border-radius: 20px;
  }

  .fr-hero__float {
    padding: 12px 16px;
    border-radius: 12px;
  }

  .fr-hero__float-value {
    font-size: 16px;
  }

  .fr-hero__float--top {
    right: 8px;
    top: 16px;
  }

  .fr-hero__float--bottom {
    left: 8px;
    bottom: 24px;
  }
}

/* ================================================================
   BLOCK 5: FRANCHISE QUIZ
   ================================================================ */

.fr-quiz {
  background: var(--dark, #141414);
  padding: 96px 0;
  position: relative;
  overflow: clip;
}

.fr-quiz__header {
  text-align: center;
  margin-bottom: 48px;
}

.fr-quiz__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 135%;
  color: #fff;
  margin-bottom: 12px;
}

.fr-quiz__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 155%;
}

/* Quiz card — elevated dark surface */
.fr-quiz__card {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 40px 48px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Progress bar */
.fr-quiz__progress {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.fr-quiz__progress-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.fr-quiz__progress-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--progress, 20%);
  background: linear-gradient(90deg, #8FFF00 0%, #6fd400 100%);
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.fr-quiz__progress-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.fr-quiz__step-current {
  color: var(--accent, #8FFF00);
}

/* Steps — fixed height area so page doesn't jump */
.fr-quiz__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.fr-quiz__step {
  display: none;
  flex-direction: column;
}

.fr-quiz__step--active {
  display: flex;
  animation: frQuizFadeIn 0.35s ease;
}

@keyframes frQuizFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .fr-quiz__step--active {
    animation: none;
  }
}

.fr-quiz__question {
  font-family: 'Unbounded', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 135%;
  margin-bottom: 32px;
}

/* Option buttons — grid layout, dark text on light */
.fr-quiz__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* For 2-option steps: 2 columns on wide screens */
.fr-quiz__step[data-step="3"] .fr-quiz__options,
.fr-quiz__step[data-step="4"] .fr-quiz__options,
.fr-quiz__step[data-step="5"] .fr-quiz__options {
  grid-template-columns: repeat(2, 1fr);
}

.fr-quiz__option {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 84px;
  padding: 20px 24px;
  background: linear-gradient(180deg, #2e2e2e 0%, #242424 100%);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: #fff;
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.fr-quiz__option:hover {
  border-color: rgba(143, 255, 0, 0.5);
  background: #2e2e2e;
  box-shadow: 0 6px 24px rgba(143, 255, 0, 0.12);
  transform: translateY(-2px);
}

.fr-quiz__option:active {
  transform: translateY(0) scale(0.98);
}

.fr-quiz__option:focus-visible {
  outline: 3px solid rgba(143, 255, 0, 0.5);
  outline-offset: 2px;
}

.fr-quiz__option--selected {
  border-color: var(--accent, #8FFF00);
  background: rgba(143, 255, 0, 0.08);
  color: #fff;
  box-shadow: 0 6px 24px rgba(143, 255, 0, 0.18);
}

.fr-quiz__option-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(143, 255, 0, 0.15);
  border: 1.5px solid rgba(143, 255, 0, 0.35);
  border-radius: 14px;
  color: var(--accent, #8FFF00);
  box-shadow: 0 0 16px rgba(143, 255, 0, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fr-quiz__option:hover .fr-quiz__option-icon {
  transform: scale(1.05);
}

.fr-quiz__option:hover .fr-quiz__option-icon,
.fr-quiz__option--selected .fr-quiz__option-icon {
  background: var(--accent, #8FFF00);
  border-color: var(--accent, #8FFF00);
  color: #0a0a0a;
}

.fr-quiz__option-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
}

/* Form step */
.fr-quiz__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fr-quiz__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fr-quiz__form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: end;
}

.fr-quiz__form .fr-quiz__submit,
.fr-quiz__form .fr-quiz__privacy {
  grid-column: 1 / -1;
}

.fr-quiz__label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.fr-quiz__input {
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  background: #262626;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #fff;
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.fr-quiz__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.fr-quiz__input:focus {
  outline: none;
  border-color: var(--accent, #8FFF00);
  background: #2e2e2e;
  box-shadow: 0 0 0 4px rgba(143, 255, 0, 0.15);
}

.fr-quiz__input--error {
  border-color: #ff4444;
}

.fr-quiz__field-error {
  font-size: 12px;
  color: #ff4444;
  margin-top: 2px;
}

.fr-quiz__submit {
  margin-top: 4px;
  width: 100%;
}

.fr-quiz__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.fr-quiz__privacy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  line-height: 150%;
  margin-top: 4px;
}

/* Back button */
.fr-quiz__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Onest', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 18px;
  margin-top: 24px;
  border-radius: 100px;
  align-self: flex-start;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.fr-quiz__back:hover {
  color: var(--accent, #8FFF00);
  background: rgba(143, 255, 0, 0.08);
  border-color: rgba(143, 255, 0, 0.3);
}

.fr-quiz__back:focus-visible {
  outline: 3px solid rgba(143, 255, 0, 0.5);
  outline-offset: 2px;
}

.fr-quiz__back[hidden] {
  display: inline-flex;
  visibility: hidden;
  pointer-events: none;
}

/* Success state */
.fr-quiz__success {
  text-align: center;
  padding: 60px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fr-quiz__success[hidden] {
  display: none;
}

.fr-quiz__success-icon {
  width: 80px;
  height: 80px;
  background: rgba(143, 255, 0, 0.12);
  border: 1.5px solid rgba(143, 255, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.fr-quiz__success-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.fr-quiz__success-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 160%;
  max-width: 460px;
  margin: 0 auto;
}

/* Responsive: 1024 */
@media screen and (max-width: 1024px) {
  .fr-quiz__title {
    font-size: 26px;
  }

  .fr-quiz__card {
    padding: 40px 36px;
    min-height: 480px;
    height: auto;
  }

  .fr-quiz__question {
    font-size: 22px;
  }

  .fr-quiz__options {
    grid-template-columns: 1fr;
  }

  .fr-quiz__step[data-step="3"] .fr-quiz__options,
  .fr-quiz__step[data-step="4"] .fr-quiz__options,
  .fr-quiz__step[data-step="5"] .fr-quiz__options {
    grid-template-columns: 1fr;
  }

  .fr-quiz__form {
    grid-template-columns: 1fr;
  }
}

/* Responsive: 767 mobile */
@media screen and (max-width: 767px) {
  .fr-quiz {
    padding: 64px 0;
  }

  .fr-quiz__title {
    font-size: 20px;
  }

  .fr-quiz__card {
    padding: 28px 20px;
    border-radius: 20px;
    height: auto;
    min-height: 620px;
  }

  .fr-quiz__question {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .fr-quiz__option {
    padding: 16px 18px;
    min-height: 64px;
    border-radius: 14px;
  }

  .fr-quiz__option-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .fr-quiz__success-title {
    font-size: 20px;
  }
}

/* ================================================================
   BLOCK 5: PARTNER CASES
   ================================================================ */

.fr-cases {
  background: #0a0a0a;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.fr-cases::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(143, 255, 0, 0.06), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.fr-cases .fr-cases__container {
  position: relative;
  z-index: 1;
  flex-direction: unset;
  display: block;
}

.fr-cases__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.fr-cases__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent, #8FFF00);
  background: rgba(143, 255, 0, 0.08);
  border: 1px solid rgba(143, 255, 0, 0.15);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.fr-cases__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  color: #fff;
  margin-bottom: 16px;
}

.fr-cases__subtitle {
  font-size: 17px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.fr-cases__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
}

.fr-cases__meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent, #8FFF00);
  box-shadow: 0 0 10px rgba(143, 255, 0, 0.7);
  animation: fr-pulse 2.2s ease-in-out infinite;
}

@keyframes fr-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  .fr-cases__meta-dot { animation: none; }
}

.fr-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- Card --- */
.fr-case {
  background: linear-gradient(180deg, #1c1c1c 0%, #151515 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.fr-case:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 255, 0, 0.22);
  box-shadow: 0 24px 60px -20px rgba(143, 255, 0, 0.18);
}

/* Media + play */
.fr-case__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: #111;
  text-decoration: none;
}

.fr-case__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.05) contrast(1.03);
  transition: transform 400ms ease;
}

.fr-case__media:hover .fr-case__photo {
  transform: scale(1.04);
}

.fr-case__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0) 55%, rgba(20,20,20,0.85) 100%);
  pointer-events: none;
}

.fr-case__play {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent, #8FFF00);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(143, 255, 0, 0.35), 0 0 0 6px rgba(143, 255, 0, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
  z-index: 2;
}

.fr-case__media:hover .fr-case__play {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(143, 255, 0, 0.5), 0 0 0 9px rgba(143, 255, 0, 0.16);
}

.fr-case__play svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.fr-case__duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 8px;
  z-index: 2;
  letter-spacing: 0.3px;
}

/* Body */
.fr-case__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.fr-case__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fr-case__name {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 130%;
  margin: 0;
}

html body .fr-cases .fr-case .fr-case__city,
html body .fr-cases .fr-case .fr-case__city > * {
  color: #d8d8d8 !important;
}

html body .fr-cases .fr-case .fr-case__city {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
}

html body .fr-cases .fr-case .fr-case__city svg {
  color: var(--accent, #8FFF00) !important;
  flex-shrink: 0;
}

html body .fr-cases .fr-case .fr-case__city svg * {
  color: var(--accent, #8FFF00) !important;
}

html body .fr-cases .fr-case .fr-case__pop {
  color: #a0a0a0 !important;
  font-size: 13px;
  font-weight: 400;
}

/* Chart */
.fr-case__chart {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 14px 8px;
}

.fr-case__chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.fr-case__chart-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.fr-case__chart-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent, #8FFF00);
  background: rgba(143, 255, 0, 0.1);
  border: 1px solid rgba(143, 255, 0, 0.18);
  padding: 3px 8px;
  border-radius: 100px;
}

.fr-case__chart-trend::before {
  content: '▲';
  font-size: 9px;
}

.fr-case__bars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  align-items: end;
  height: 86px;
}

.fr-case__bar {
  position: relative;
  height: calc(var(--h) * 1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border-radius: 8px 8px 4px 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 8px;
  min-height: 46px;
  transition: height 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fr-case__bar--accent {
  background: linear-gradient(180deg, var(--accent, #8FFF00), rgba(143, 255, 0, 0.35));
  box-shadow: 0 6px 18px -4px rgba(143, 255, 0, 0.5);
}

.fr-case__bar-val {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  font-variant-numeric: tabular-nums;
}

.fr-case__bar--accent .fr-case__bar-val {
  color: #0a0a0a;
}

.fr-case__bar-m {
  position: absolute;
  bottom: -20px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 600;
}

.fr-case__bars {
  margin-bottom: 24px;
}

/* Quote */
.fr-case__quote {
  font-size: 15.5px;
  line-height: 165%;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  padding-left: 14px;
  border-left: 2px solid rgba(143, 255, 0, 0.35);
}


.fr-case__quote strong {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, transparent 60%, rgba(143, 255, 0, 0.22) 60%);
  padding: 0 2px;
}

/* Footer CTA */
.fr-cases__footer {
  margin-top: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .fr-cases { padding: 80px 0; }
  .fr-cases__title { font-size: 30px; }
  .fr-cases__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media screen and (max-width: 767px) {
  .fr-cases { padding: 64px 0; }
  .fr-cases__title { font-size: 24px; }
  .fr-cases__subtitle { font-size: 15px; }
  .fr-cases__header { margin-bottom: 36px; }
  .fr-cases__grid { grid-template-columns: 1fr; gap: 16px; }
  .fr-case__body { padding: 20px; gap: 16px; }
  .fr-case__name { font-size: 17px; }
  .fr-cases__footer { margin-top: 36px; }
}

/* ================================================================
   BLOCK 6: WHAT HQ GIVES
   ================================================================ */

.fr-gives {
  background: #0a0a0a;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.fr-gives::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(143, 255, 0, 0.05), transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}

.fr-gives .fr-gives__container {
  position: relative;
  z-index: 1;
  flex-direction: unset;
  display: block;
}

.fr-gives__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.fr-gives__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent, #8FFF00);
  background: rgba(143, 255, 0, 0.08);
  border: 1px solid rgba(143, 255, 0, 0.15);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.fr-gives__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 125%;
  color: #fff;
  margin-bottom: 16px;
}

.fr-gives__subtitle {
  font-size: 17px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.6);
}

/* Grid: row1 = featured 2-col + tech 1-col; row2 = 3 equal */
.fr-gives__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --- Card --- */
.fr-give {
  background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 220ms ease, transform 220ms ease;
  position: relative;
  overflow: hidden;
}

.fr-give:hover {
  border-color: rgba(143, 255, 0, 0.22);
  transform: translateY(-3px);
}

.fr-give--featured {
  grid-column: span 2;
  background: linear-gradient(140deg, rgba(143, 255, 0, 0.07) 0%, #1a1a1a 45%);
  border-color: rgba(143, 255, 0, 0.18);
}

.fr-give--featured::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(143, 255, 0, 0.12), transparent 70%);
  pointer-events: none;
}

.fr-give__head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.fr-give__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: rgba(143, 255, 0, 0.1);
  border: 1px solid rgba(143, 255, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fr-give__head-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.fr-give__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(143, 255, 0, 0.75);
}

.fr-give__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 130%;
  margin: 0;
}

.fr-give--featured .fr-give__title {
  font-size: 22px;
}

/* Featured stats */
.fr-give__featured-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  position: relative;
  z-index: 1;
}

.fr-give__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fr-give__stat-value {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent, #8FFF00);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.fr-give__stat-label {
  font-size: 12.5px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.6);
}

/* List */
.fr-give__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.fr-give__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 155%;
  color: rgba(255, 255, 255, 0.75);
}

.fr-give__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 2px;
  background: var(--accent, #8FFF00);
  border-radius: 2px;
}

.fr-give__list li strong {
  color: #fff;
  font-weight: 600;
}

/* Footer */
.fr-gives__footer {
  margin-top: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .fr-gives { padding: 80px 0; }
  .fr-gives__title { font-size: 30px; }
  .fr-gives__grid { grid-template-columns: repeat(2, 1fr); }
  .fr-give--featured { grid-column: span 2; }
}

@media screen and (max-width: 767px) {
  .fr-gives { padding: 64px 0; }
  .fr-gives__title { font-size: 22px; line-height: 130%; }
  .fr-gives__subtitle { font-size: 15px; }
  .fr-gives__header { margin-bottom: 36px; }
  .fr-gives__grid { grid-template-columns: 1fr; gap: 16px; }
  .fr-give--featured { grid-column: span 1; }
  .fr-give { padding: 22px 20px; }
  .fr-give__title { font-size: 16px; }
  .fr-give--featured .fr-give__title { font-size: 18px; }
  .fr-give__featured-stats { grid-template-columns: 1fr; gap: 12px; padding: 14px; }
  .fr-give__stat-value { font-size: 24px; }
  .fr-give__icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; }
  .fr-give__icon svg { width: 22px; height: 22px; }
  .fr-gives__footer { margin-top: 36px; }
}

/* ================================================================
   BLOCK 7: ROADMAP — full-width alternating rows
   ================================================================ */

.fr-road {
  background: #111;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.fr-road::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -250px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(143, 255, 0, 0.05), transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}

.fr-road .fr-road__container {
  position: relative;
  z-index: 1;
  flex-direction: unset;
  display: block;
}

.fr-road__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}

.fr-road__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent, #8FFF00);
  background: rgba(143, 255, 0, 0.08);
  border: 1px solid rgba(143, 255, 0, 0.15);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.fr-road__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 125%;
  color: #fff;
  margin-bottom: 16px;
}

.fr-road__subtitle {
  font-size: 17px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.65);
}

/* Full-width alternating rows */
.fr-road__timeline {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.fr-road__step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.fr-road__step:nth-child(even) .fr-road__media { order: 2; }
.fr-road__step:nth-child(even) .fr-road__card { order: 1; }

.fr-road__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0f0f0f;
  aspect-ratio: 16 / 11;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

.fr-road__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transition: transform 600ms ease;
}

.fr-road__step:hover .fr-road__media img {
  transform: scale(1.05);
}

.fr-road__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #fff;
  background: #e63946;
  padding: 7px 14px;
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  box-shadow: 0 8px 24px -6px rgba(230, 57, 70, 0.5);
}

.fr-road__tag--final {
  background: var(--accent, #8FFF00);
  color: #0a0a0a;
  box-shadow: 0 8px 24px -6px rgba(143, 255, 0, 0.55);
}

.fr-road__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.fr-road__week {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent, #8FFF00);
}

.fr-road__step-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 120%;
  margin: 0;
  letter-spacing: -0.3px;
}

.fr-road__desc {
  font-size: 17px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.fr-road__result {
  font-size: 15.5px;
  line-height: 155%;
  color: #fff;
  padding: 16px 20px;
  background: rgba(143, 255, 0, 0.08);
  border-left: 3px solid var(--accent, #8FFF00);
  border-radius: 10px;
  margin-top: 4px;
}

.fr-road__result-label {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  color: var(--accent, #8FFF00);
  margin-right: 6px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.2px;
  display: block;
  margin-bottom: 4px;
}

.fr-road__footer {
  margin-top: 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .fr-road { padding: 80px 0; }
  .fr-road__title { font-size: 30px; }
  .fr-road__step-title { font-size: 26px; }
  .fr-road__timeline { gap: 56px; }
  .fr-road__step { gap: 40px; }
}

@media screen and (max-width: 767px) {
  .fr-road { padding: 64px 0; }
  .fr-road__title { font-size: 22px; line-height: 130%; }
  .fr-road__subtitle { font-size: 15px; }
  .fr-road__header { margin-bottom: 40px; }

  .fr-road__timeline { gap: 44px; }

  .fr-road__step {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fr-road__step:nth-child(even) .fr-road__media { order: 0; }
  .fr-road__step:nth-child(even) .fr-road__card { order: 0; }

  .fr-road__media { aspect-ratio: 16 / 10; border-radius: 14px; }
  .fr-road__tag { top: 12px; left: 12px; font-size: 11px; padding: 5px 10px; }

  .fr-road__card { gap: 14px; }
  .fr-road__step-title { font-size: 20px; }
  .fr-road__desc { font-size: 15px; }
  .fr-road__result { font-size: 14px; padding: 12px 14px; }

  .fr-road__footer { margin-top: 48px; }
}

/* ================================================================
   BLOCK 10: FAQ — accordion
   ================================================================ */

.fr-faq {
  background: #0a0a0a;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.fr-faq::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(143, 255, 0, 0.05), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.fr-faq .fr-faq__container {
  position: relative;
  z-index: 1;
  flex-direction: unset;
  display: block;
}

.fr-faq__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.fr-faq__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent, #8FFF00);
  background: rgba(143, 255, 0, 0.08);
  border: 1px solid rgba(143, 255, 0, 0.15);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.fr-faq__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 125%;
  color: #fff;
  margin-bottom: 16px;
}

.fr-faq__subtitle {
  font-size: 16px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.6);
}

.fr-faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fr-faq__item {
  background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 220ms ease;
}

.fr-faq__item:hover {
  border-color: rgba(143, 255, 0, 0.18);
}

.fr-faq__item[open] {
  border-color: rgba(143, 255, 0, 0.28);
  background: linear-gradient(180deg, rgba(143, 255, 0, 0.04) 0%, #141414 100%);
}

.fr-faq__q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-family: 'Unbounded', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #fff !important;
  line-height: 140%;
  user-select: none;
  min-height: 44px;
  transition: color 220ms ease;
}

.fr-faq__q::-webkit-details-marker {
  display: none;
}

.fr-faq__q:hover {
  color: #fff;
}

.fr-faq__item[open] .fr-faq__q {
  color: var(--accent, #8FFF00) !important;
}

.fr-faq__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(143, 255, 0, 0.1);
  border: 1px solid rgba(143, 255, 0, 0.2);
  position: relative;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), background 220ms ease;
}

.fr-faq__icon::before,
.fr-faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--accent, #8FFF00);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fr-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.fr-faq__item[open] .fr-faq__icon {
  background: var(--accent, #8FFF00);
  transform: rotate(180deg);
}

.fr-faq__item[open] .fr-faq__icon::before,
.fr-faq__item[open] .fr-faq__icon::after {
  background: #0a0a0a;
}

.fr-faq__item[open] .fr-faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.fr-faq__a {
  padding: 0 26px 24px;
  font-size: 15.5px;
  line-height: 165%;
  color: rgba(255, 255, 255, 0.78) !important;
  animation: frFaqFadeIn 320ms ease;
}

@keyframes frFaqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .fr-faq__a { animation: none; }
  .fr-faq__icon,
  .fr-faq__icon::before,
  .fr-faq__icon::after { transition: none; }
}

.fr-faq__footer {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.fr-faq__footer-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .fr-faq { padding: 80px 0; }
  .fr-faq__title { font-size: 30px; }
}

@media screen and (max-width: 767px) {
  .fr-faq { padding: 64px 0; }
  .fr-faq__title { font-size: 22px; line-height: 130%; }
  .fr-faq__subtitle { font-size: 14.5px; }
  .fr-faq__header { margin-bottom: 32px; }

  .fr-faq__q {
    padding: 18px 18px;
    font-size: 15px;
    gap: 14px;
  }

  .fr-faq__icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .fr-faq__icon::before,
  .fr-faq__icon::after {
    width: 12px;
  }

  .fr-faq__a {
    padding: 0 18px 20px;
    font-size: 14.5px;
  }

  .fr-faq__footer { margin-top: 32px; }
}

/* ================================================================
   BLOCK 11: ZOOM MEETING
   ================================================================ */

.fr-zoom {
  background: #111;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.fr-zoom__glow {
  position: absolute;
  top: -150px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(143, 255, 0, 0.08), transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}

.fr-zoom .fr-zoom__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  flex-direction: unset;
}

/* --- LEFT: pitch --- */
.fr-zoom__pitch {
  min-width: 0;
}

.fr-zoom__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent, #8FFF00);
  background: rgba(143, 255, 0, 0.08);
  border: 1px solid rgba(143, 255, 0, 0.15);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.fr-zoom__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

.fr-zoom__subtitle {
  font-size: 17px;
  line-height: 165%;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 28px;
}

.fr-zoom__subtitle strong {
  color: #fff;
  font-weight: 600;
}

.fr-zoom__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fr-zoom__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8) !important;
}

.fr-zoom__bullets li svg {
  flex-shrink: 0;
}

/* Founder card */
.fr-zoom__founder {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(143, 255, 0, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.fr-zoom__founder-photo {
  width: 128px;
  height: 128px;
  min-width: 128px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(143, 255, 0, 0.3);
  object-position: center 70%;
}

.fr-zoom__founder-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.fr-zoom__founder-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff !important;
}

.fr-zoom__founder-role {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55) !important;
  line-height: 140%;
  margin-bottom: 4px;
}

.fr-zoom__founder-quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-style: italic;
  color: rgba(143, 255, 0, 0.9) !important;
  line-height: 140%;
}

.fr-zoom__founder-quote svg {
  flex-shrink: 0;
}

/* --- RIGHT: form --- */
.fr-zoom__form-wrap {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5);
}

.fr-zoom__form-head {
  text-align: center;
  margin-bottom: 24px;
}

.fr-zoom__form-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.fr-zoom__form-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55) !important;
  margin: 0;
}

.fr-zoom__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fr-zoom__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fr-zoom__field-label {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}

.fr-zoom__input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.fr-zoom__input-prefix {
  position: absolute;
  left: 16px;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.fr-zoom__input {
  width: 100%;
  height: 52px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0 18px;
  font-family: 'Onest', sans-serif;
  font-size: 15px;
  color: #fff !important;
  transition: border-color 220ms ease, background 220ms ease;
  outline: none;
}

.fr-zoom__input--tel {
  padding-left: 44px;
}

.fr-zoom__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.fr-zoom__input:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.fr-zoom__input:focus {
  border-color: var(--accent, #8FFF00);
  background: rgba(143, 255, 0, 0.04);
  box-shadow: 0 0 0 4px rgba(143, 255, 0, 0.08);
}

.fr-zoom__select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'><path d='M6 9l6 6 6-6' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 46px;
}

.fr-zoom__select option {
  background: #1a1a1a;
  color: #fff;
}

.fr-zoom__submit {
  margin-top: 8px;
  width: 100%;
}

.fr-zoom__privacy {
  font-size: 12.5px;
  text-align: center;
  color: rgba(255, 255, 255, 0.45) !important;
  line-height: 150%;
  margin: 0;
}

.fr-zoom__success {
  text-align: center;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fr-zoom__success h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  color: #fff;
  margin: 0;
}

.fr-zoom__success p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7) !important;
  margin: 0;
  max-width: 320px;
}

/* Trust row */
.fr-zoom__trust {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.fr-zoom__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65) !important;
}

.fr-zoom__trust-item svg {
  flex-shrink: 0;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .fr-zoom { padding: 80px 0; }
  .fr-zoom .fr-zoom__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fr-zoom__title { font-size: 30px; }
}

@media screen and (max-width: 767px) {
  .fr-zoom { padding: 64px 0; }
  .fr-zoom__title { font-size: 22px; line-height: 130%; }
  .fr-zoom__subtitle { font-size: 15px; margin-bottom: 24px; }

  .fr-zoom__bullets li { font-size: 14.5px; }

  .fr-zoom__founder {
    padding: 14px 16px;
    gap: 12px;
  }

  .fr-zoom__founder-photo { width: 96px; height: 96px; min-width: 96px; }
  .fr-zoom__founder-name { font-size: 14px; }
  .fr-zoom__founder-role { font-size: 12px; }
  .fr-zoom__founder-quote { font-size: 12px; }

  .fr-zoom__form-wrap { padding: 24px 20px; border-radius: 18px; }
  .fr-zoom__form-title { font-size: 20px; }
  .fr-zoom__input { height: 48px; font-size: 14.5px; }

  .fr-zoom__trust { flex-direction: column; gap: 10px; align-items: center; }
}

/* ===== FRANCHISE PAGE GLOBAL OVERRIDES ===== */
body {
  background: #111;
}

.footer {
  border-radius: 0;
  background: #111;
}
