/* Cvič Sám — franšízingová podstránka
   Všetky pravidlá sú zámerne izolované pod .franchise-page. */

body.franchise-page {
  --fr-bg: #05070a;
  --fr-bg-soft: #091018;
  --fr-surface: #0d151d;
  --fr-surface-2: #111e28;
  --fr-text: #f2f8fb;
  --fr-muted: #9dafba;
  --fr-line: rgba(255, 255, 255, 0.11);
  --fr-line-strong: rgba(255, 255, 255, 0.22);
  --fr-cyan: #02d6df;
  --fr-blue: #1098f7;
  --fr-night: #05070a;
  --fr-night-2: #0b1118;
  --fr-white: #f8fdff;
  --fr-radius: 30px;
  --fr-shadow: 0 34px 110px rgba(0, 0, 0, 0.46);
  --max: clamp(1180px, 80vw, 1640px);
  position: relative;
  isolation: isolate;
  color: var(--fr-text);
  background-color: #050a0f;
  background-image:
    linear-gradient(90deg, rgba(2, 214, 223, 0.042) 0%, transparent 18%, transparent 82%, rgba(16, 152, 247, 0.038) 100%),
    linear-gradient(rgba(106, 181, 207, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 181, 207, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #04080c 0%, #07131b 48%, #050b11 100%);
  background-size: auto, 104px 104px, 104px 104px, auto;
  background-attachment: scroll;
}

.franchise-page.dark-mode {
  color: var(--fr-text);
  background-color: #050a0f;
}

.franchise-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(116deg, transparent 0 46%, rgba(2, 214, 223, 0.055) 46.12% 46.28%, transparent 46.4% 100%) left top / 560px 820px repeat-y,
    linear-gradient(64deg, transparent 0 53%, rgba(16, 152, 247, 0.05) 53.12% 53.28%, transparent 53.4% 100%) right 160px top / 520px 760px repeat-y;
  -webkit-mask-image: linear-gradient(90deg, #000 0 26%, transparent 40% 60%, #000 74% 100%);
  mask-image: linear-gradient(90deg, #000 0 26%, transparent 40% 60%, #000 74% 100%);
  pointer-events: none;
}

.franchise-page,
.franchise-page button,
.franchise-page input,
.franchise-page select,
.franchise-page textarea {
  font-family: "Manrope", Arial, sans-serif;
}

.franchise-page main {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  background: transparent;
}

.franchise-page .site-header { z-index: 40; }
.franchise-page .fr-footer { position: relative; z-index: 1; }

.franchise-page main > section { position: relative; }

.franchise-page main [id] { scroll-margin-top: 116px; }

.franchise-page :focus-visible {
  outline: 3px solid var(--fr-cyan);
  outline-offset: 4px;
}

.fr-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 11px 16px;
  color: #041013;
  background: var(--fr-cyan);
  font-size: 13px;
  font-weight: 900;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.fr-skip-link:focus { transform: translateY(0); }

/* Header */
.franchise-page .site-header { inset: 16px 0 auto; }

.franchise-page .nav {
  min-height: 70px;
  padding: 9px 10px 9px 18px;
  border-radius: 20px;
  background: rgba(5, 7, 10, 0.82);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(140%);
}

.franchise-page .fr-brand { min-width: 154px; }
.franchise-page .fr-brand img {
  width: 126px;
  height: auto;
  display: block;
  object-fit: contain;
}

.franchise-page .menu { gap: 0; flex-wrap: nowrap; }
.franchise-page .menu a {
  position: relative;
  padding: 10px 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  white-space: nowrap;
}

.franchise-page .menu a::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 4px;
  left: 9px;
  height: 2px;
  background: var(--fr-cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.franchise-page .menu a:hover,
.franchise-page .menu a.is-active { color: #ffffff; }
.franchise-page .menu a:hover::after,
.franchise-page .menu a.is-active::after { transform: scaleX(1); transform-origin: left; }

.franchise-page .nav-actions { gap: 9px; }
.franchise-page .nav-cta {
  min-height: 50px;
  padding: 0 19px;
  border-radius: 12px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.franchise-page .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(2, 214, 223, 0.23); }

/* Shared typography and controls */
.fr-eyebrow,
.fr-kicker,
.fr-panel-label,
.fr-card-tag {
  margin: 0;
  color: var(--fr-cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.fr-eyebrow { display: flex; align-items: center; gap: 10px; }
.fr-eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fr-cyan);
  box-shadow: 0 0 0 7px rgba(2, 214, 223, 0.12), 0 0 26px rgba(2, 214, 223, 0.7);
}

.franchise-page h1,
.franchise-page h2,
.franchise-page h3 {
  color: inherit;
  text-wrap: balance;
}

.franchise-page h1 em,
.franchise-page h2 em,
.franchise-page h3 em {
  color: var(--fr-cyan);
  font: inherit;
}

.fr-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.franchise-page .btn { border-radius: 12px; }
.franchise-page .btn-primary { color: #041013; background: var(--fr-cyan); }
.fr-btn-arrow { gap: 28px; justify-content: space-between; }
.fr-btn-arrow span { font-size: 20px; line-height: 1; transition: transform 200ms ease; }
.fr-btn-arrow:hover span { transform: translate(3px, -3px); }

.fr-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Hero */
.fr-hero {
  min-height: auto;
  position: relative;
  display: grid;
  align-content: start;
  padding: 142px 0 26px;
  color: var(--fr-white);
  background:
    linear-gradient(118deg, rgba(16, 152, 247, 0.065), transparent 36%),
    linear-gradient(242deg, rgba(2, 214, 223, 0.05), transparent 32%),
    transparent;
  isolation: isolate;
}

.fr-hero-grid,
.fr-contact-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0, rgba(0,0,0,0.55) 58%, transparent 96%);
}

.fr-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.74fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
}

.fr-hero-copy h1 {
  max-width: 820px;
  margin: 22px 0 0;
  font-size: clamp(64px, 7.2vw, 110px);
  letter-spacing: -0.025em;
  line-height: 1;
}

.fr-hero-lead {
  max-width: 680px;
  margin: 27px 0 0;
  color: rgba(248, 253, 255, 0.72);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}

.fr-hero .fr-actions { margin-top: 31px; }
.fr-hero .btn { min-height: 58px; }

.fr-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 630px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.fr-hero-facts > div {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 18px 12px 0;
}

.fr-hero-facts > div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.fr-hero-facts strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  color: var(--fr-cyan);
  font-size: 42px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.fr-hero-facts span {
  color: rgba(248, 253, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.fr-hero-visual {
  position: relative;
  height: 620px;
  display: block;
  padding: 0;
}

.fr-brand-proof {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  box-shadow: 0 50px 130px rgba(0, 0, 0, 0.56);
}
.fr-brand-proof { min-height: 620px; margin: 0; background: #071018; }
.fr-brand-proof::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(5,7,10,.03) 34%, rgba(5,7,10,.95)); pointer-events: none; }
.fr-branch-slides { position: absolute; inset: 0; }
.fr-branch-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--fr-branch-position, 50% 50%);
  opacity: 0;
  filter: saturate(.88) contrast(1.04) brightness(.82);
  transform: scale(1.025);
  transition: opacity 720ms ease, transform 1200ms cubic-bezier(.16,1,.3,1), filter 300ms ease;
}
.fr-branch-slide.is-active { opacity: 1; transform: scale(1); }
.fr-brand-proof:hover .fr-branch-slide.is-active { transform: scale(1.025); filter: saturate(.98) contrast(1.04) brightness(.86); }
.fr-brand-proof figcaption { position: absolute; right: 24px; bottom: 58px; left: 24px; z-index: 2; pointer-events: none; }
.fr-brand-proof figcaption span { display: block; color: var(--fr-cyan); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.fr-brand-proof figcaption strong { display: block; margin-top: 7px; color: #fff; font-family: "Barlow Condensed", Impact, sans-serif; font-size: 30px; line-height: 1; text-transform: uppercase; }

.fr-branch-controls {
  position: absolute;
  right: 20px;
  bottom: 15px;
  left: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
.fr-branch-dots { display: flex; align-items: center; gap: 7px; }
.fr-branch-dots button {
  position: relative;
  width: 28px;
  height: 20px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.fr-branch-dots button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(255,255,255,.34);
  transform: translateY(-50%);
  transition: height 180ms ease, background 180ms ease, transform 180ms ease;
}
.fr-branch-dots button:hover::before,
.fr-branch-dots button:focus-visible::before { background: rgba(255,255,255,.78); }
.fr-branch-dots button.is-active::before { height: 3px; background: var(--fr-cyan); transform: translateY(-50%) scaleX(1.08); }
.fr-network-bar {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 22px;
  color: rgba(248, 253, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fr-network-bar > span { padding: 0 19px; border-right: 1px solid rgba(255, 255, 255, 0.12); }
.fr-network-bar > span:first-child { padding-left: 0; }
.fr-network-bar strong { color: var(--fr-white); font-size: 16px; }
.fr-network-label { color: var(--fr-cyan); }
.fr-network-next { margin-left: auto; color: var(--fr-muted); border-right: 0 !important; }
.fr-network-next-label { color: var(--fr-cyan); }

/* Sections */
.fr-section { position: relative; padding: clamp(62px, 5vw, 82px) 0; color: var(--fr-text); background: transparent; }

.fr-section-intro {
  display: block;
  max-width: 980px;
  margin-bottom: 38px;
}

.fr-section-intro h2,
.fr-process-head h2,
.fr-faq-head h2 {
  margin-top: 0;
  font-size: clamp(56px, 6.7vw, 98px);
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.fr-section-intro > p,
.fr-faq-head > p {
  margin: 0;
  color: var(--fr-muted);
  font-size: 16px;
  line-height: 1.75;
}

.fr-concept {
  overflow: hidden;
  background:
    linear-gradient(126deg, rgba(3, 9, 14, 0.91), rgba(7, 22, 30, 0.76) 52%, rgba(3, 8, 13, 0.92)),
    url("../assets/branches/banska-bystrica.jpg") center 54% / cover no-repeat;
  border-block: 1px solid rgba(255, 255, 255, 0.045);
}

.fr-concept::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fr-cyan));
}

.fr-concept-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 14px;
  align-items: stretch;
}

.fr-concept-photo {
  min-height: 462px;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--fr-surface);
  border: 1px solid var(--fr-line);
  border-radius: 24px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}
.fr-concept-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 7, 10, 0.88));
  pointer-events: none;
}
.fr-concept-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.92) contrast(1.03); transition: transform 700ms cubic-bezier(.16, 1, .3, 1), filter 300ms ease; }
.fr-concept-photo:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.04); }
.fr-concept-photo figcaption { position: absolute; right: 24px; bottom: 22px; left: 24px; z-index: 1; color: #fff; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.fr-feature-list { display: grid; overflow: hidden; background: rgba(13, 25, 36, 0.84); border: 1px solid var(--fr-line); border-radius: 24px; box-shadow: 0 26px 80px rgba(0, 0, 0, 0.2); }
.fr-feature-row { min-height: 115px; display: grid; align-content: center; padding: 19px 26px; border-bottom: 1px solid var(--fr-line); transition: background 240ms ease, box-shadow 240ms ease; }
.fr-feature-row:last-child { border-bottom: 0; }
.fr-feature-row:hover { background: rgba(2, 214, 223, 0.055); box-shadow: inset 3px 0 0 var(--fr-cyan); }
.fr-feature-row h3 { font-size: clamp(27px, 2.5vw, 35px); line-height: 1; }
.fr-feature-row p { max-width: 520px; margin: 8px 0 0; color: var(--fr-muted); font-size: 12px; line-height: 1.58; }

/* Modely spolupráce */
.fr-models-section {
  position: relative;
  padding: clamp(70px, 6vw, 104px) 0;
  overflow: hidden;
  color: var(--fr-text);
  background:
    linear-gradient(112deg, rgba(2, 214, 223, .065), transparent 34%),
    linear-gradient(248deg, rgba(16, 152, 247, .055), transparent 32%),
    linear-gradient(90deg, rgba(3, 9, 14, .9), rgba(8, 20, 28, .68) 50%, rgba(3, 9, 14, .9));
  border-block: 1px solid rgba(255, 255, 255, .055);
  isolation: isolate;
}
.fr-models-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .38;
  background:
    linear-gradient(118deg, transparent 0 66%, rgba(2,214,223,.07) 66.1% 66.2%, transparent 66.3%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  pointer-events: none;
}
.fr-models-section > .container { position: relative; z-index: 1; }
.fr-models-head {
  max-width: 930px;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.fr-models-head h2 {
  margin-top: 0;
  font-size: clamp(54px, 5.4vw, 80px);
  letter-spacing: -.025em;
  line-height: .96;
}
.fr-models-head h2 em { color: var(--fr-cyan); font: inherit; }
.fr-models-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}
.fr-model-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: clamp(30px, 3.3vw, 48px);
  overflow: hidden;
  background: rgba(13, 21, 29, .94);
  border: 1px solid var(--fr-line);
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .28);
}
.fr-model-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34));
}
.fr-model-card--single {
  display: block;
  padding: 0;
  background:
    radial-gradient(circle at 86% 10%, rgba(2, 214, 223, .09), transparent 32%),
    linear-gradient(145deg, rgba(15, 26, 35, .98), rgba(7, 14, 20, .98));
  border-color: rgba(255, 255, 255, .14);
  border-radius: 26px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .34);
}
.fr-model-card--single::before {
  right: auto;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--fr-cyan), rgba(2,214,223,.18) 55%, transparent);
}
.fr-model-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  gap: clamp(48px, 6vw, 90px);
  align-items: stretch;
  padding: clamp(34px, 4vw, 56px);
}
.fr-model-card-head h3 {
  margin: 0;
  font-size: clamp(44px, 4.2vw, 62px);
  letter-spacing: -.02em;
  line-height: .94;
}
.fr-model-card-head > strong {
  display: block;
  max-width: 520px;
  margin-top: 20px;
  color: var(--fr-text);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.05;
  text-transform: uppercase;
}
.fr-model-card-head > p {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--fr-muted);
  font-size: 14px;
  line-height: 1.68;
}
.fr-model-card ul {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 31px 0 0;
  padding: 0;
  border-top: 1px solid var(--fr-line);
}
.fr-model-card li {
  position: relative;
  min-height: 54px;
  padding: 16px 0 15px 27px;
  color: rgba(248, 253, 255, .72);
  border-bottom: 1px solid var(--fr-line);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}
.fr-model-card li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 1px;
  width: 9px;
  height: 2px;
  background: var(--fr-cyan);
  box-shadow: 0 0 14px rgba(2, 214, 223, .32);
}
.fr-model-scope {
  padding: clamp(30px, 3.5vw, 48px) clamp(34px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.fr-model-scope h4 {
  margin: 0 0 18px;
  color: var(--fr-text);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}
.fr-model-scope ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(36px, 5vw, 72px);
  margin: 0;
}
.fr-model-fees {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}
.fr-model-fees > div,
.fr-model-fees > div + div {
  min-width: 0;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 24px;
  background: rgba(3, 10, 15, .56);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 17px;
}
.fr-model-fees dt {
  color: var(--fr-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fr-model-fees dd {
  margin: 20px 0 0;
  color: var(--fr-cyan);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: .9;
  text-transform: uppercase;
}
.fr-models-note {
  max-width: none;
  margin: 0;
  padding: 17px clamp(34px, 4vw, 56px);
  color: rgba(248, 253, 255, .5);
  background: rgba(0, 0, 0, .16);
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 11px;
  line-height: 1.6;
}

/* Partner */
.fr-partner { background: transparent; }
.fr-partner .fr-section-intro {
  max-width: 860px;
}
.fr-partner .fr-section-intro h2 {
  font-size: clamp(54px, 5.7vw, 84px);
  line-height: 0.98;
}
.fr-partner-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 14px; }
.fr-check-panel,
.fr-location-panel { overflow: hidden; background: var(--fr-surface); border: 1px solid var(--fr-line); border-radius: var(--fr-radius); }
.fr-check-panel { padding: clamp(30px, 4vw, 50px); }
.fr-check-panel h3 { margin-top: 20px; font-size: clamp(39px, 4.5vw, 61px); line-height: 0.92; }
.fr-check-panel ul { list-style: none; display: grid; gap: 0; margin: 40px 0 0; padding: 0; border-top: 1px solid var(--fr-line); }
.fr-check-panel li { min-height: 76px; position: relative; display: flex; align-items: center; padding: 19px 0 19px 29px; border-bottom: 1px solid var(--fr-line); }
.fr-check-panel li::before { content: ""; position: absolute; top: 50%; left: 2px; width: 8px; height: 8px; border: 2px solid var(--fr-cyan); border-radius: 50%; box-shadow: 0 0 18px rgba(2, 214, 223, .28); transform: translateY(-50%); }
.fr-check-panel li p { margin: 0; color: var(--fr-muted); font-size: 13px; font-weight: 700; line-height: 1.5; }

.fr-location-panel { display: grid; grid-template-rows: minmax(330px, 1fr) auto; }
.fr-location-photo { min-height: 355px; position: relative; overflow: hidden; background: #071018; }
.fr-space-reel { position: absolute; inset: 0; background: #071018; }
.fr-space-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--fr-photo-position, 50% 50%);
  opacity: 0;
  filter: saturate(.94) contrast(1.03) brightness(.94);
  transform: scale(1.018);
  transition: opacity 950ms ease, transform 1400ms cubic-bezier(.16, 1, .3, 1), filter 250ms ease;
}
.fr-space-slide.is-active { z-index: 1; opacity: 1; transform: scale(1); }
.fr-location-panel:hover .fr-space-slide.is-active { filter: saturate(1) contrast(1.03) brightness(.98); }
.fr-location-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(28px, 3.6vw, 42px); border-top: 1px solid var(--fr-line); }
.fr-location-copy h3 { max-width: 620px; margin-top: 18px; font-size: clamp(38px, 4.1vw, 56px); line-height: 0.94; }
.fr-location-copy > p:not(.fr-panel-label) { margin: 24px 0 30px; color: var(--fr-muted); font-size: 14px; line-height: 1.7; }
.fr-location-cta { min-width: 176px; min-height: 52px; padding-inline: 22px; border-radius: 10px !important; transition: transform 200ms ease, box-shadow 200ms ease; }
.fr-location-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(2, 214, 223, .2); }

/* Collaboration and pricing */
.fr-collaboration { background: transparent; }
.fr-collab-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.fr-collab-card { min-height: 470px; padding: 34px; background: var(--fr-surface); border: 1px solid var(--fr-line); border-radius: 26px; }
.fr-collab-card--partner { background: var(--fr-surface-2); }
.fr-collab-card--together {
  color: var(--fr-text);
  background: linear-gradient(145deg, rgba(2, 214, 223, 0.12), var(--fr-surface) 58%);
  border-color: rgba(2, 214, 223, 0.48);
  box-shadow: inset 0 4px 0 var(--fr-cyan);
}
.fr-collab-card h3 { margin-top: 0; font-size: clamp(47px, 5vw, 70px); }
.fr-collab-card ul { list-style: none; display: grid; gap: 0; margin: 28px 0 0; padding: 0; }
.fr-collab-card li { position: relative; padding: 15px 0 15px 25px; border-top: 1px solid var(--fr-line); color: var(--fr-muted); font-size: 12px; font-weight: 700; }
.fr-collab-card--together li { color: var(--fr-muted); border-top-color: var(--fr-line); }
.fr-collab-card li::before { content: "+"; position: absolute; left: 0; color: var(--fr-cyan); font-weight: 900; }
.fr-collab-card--together li::before { color: var(--fr-cyan); }

/* Process */
.fr-process { color: var(--fr-white); background: linear-gradient(90deg, rgba(2,214,223,.026), transparent 20%, transparent 80%, rgba(16,152,247,.026)); border-block: 1px solid rgba(255, 255, 255, 0.045); }
.fr-process::before { content: ""; position: absolute; inset: 0; opacity: 0.5; background: linear-gradient(118deg, transparent 0 68%, rgba(2,214,223,.045) 68.1% 68.25%, transparent 68.35%); pointer-events: none; }
.fr-process .container { position: relative; }
.fr-process-head { display: block; }
.fr-process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  overflow: hidden;
  background: rgba(10, 21, 30, .8);
  border: 1px solid var(--fr-line);
  border-radius: 24px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .22);
}
.fr-process-list li {
  min-width: 0;
  min-height: 310px;
  display: grid;
  grid-template-rows: 132px 1fr;
  overflow: hidden;
  background: transparent;
  transition: background 260ms ease;
}
.fr-process-list li + li { border-left: 1px solid var(--fr-line); }
.fr-process-list li:hover { background: linear-gradient(180deg, rgba(2,214,223,.065), rgba(13,25,36,.24)); }
.fr-process-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(2, 214, 223, .09), transparent 58%);
  border-bottom: 1px solid var(--fr-line);
}
.fr-process-media::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle, #000, transparent 72%);
}
.fr-process-icon { position: relative; z-index: 1; width: 84px; height: 84px; display: grid; place-items: center; }
.fr-process-icon svg { width: 72px; height: 72px; overflow: visible; transition: transform 260ms cubic-bezier(.16,1,.3,1); }
.fr-icon-orbit { stroke: rgba(2, 214, 223, .34); stroke-width: 1.4; stroke-linecap: round; }
.fr-icon-base { stroke: rgba(248, 253, 255, .74); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.fr-icon-accent { stroke: var(--fr-cyan); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fr-process-list li:hover .fr-process-icon svg { transform: scale(1.045); }
.fr-process-list li:hover .fr-icon-orbit { stroke: rgba(2, 214, 223, .62); }
.fr-process-copy { padding: 22px 20px 25px; }
.fr-process-copy > span { color: var(--fr-cyan); font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.fr-process-list h3 { margin-top: 12px; font-size: clamp(28px, 2.45vw, 36px); line-height: 0.97; }
.fr-process-list p { margin: 13px 0 0; color: rgba(248, 253, 255, 0.57); font-size: 11px; line-height: 1.62; }

/* FAQ */
.fr-faq { padding-bottom: clamp(64px, 6vw, 86px); background: transparent; }
.fr-faq-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.fr-faq-head { position: sticky; top: 118px; }
.fr-faq-head > p { margin-top: 0; }
.fr-faq-head > p:not(.fr-kicker) { margin-top: 18px; }
.fr-faq-list { border-top: 1px solid var(--fr-line-strong); }
.fr-faq-list details { border-bottom: 1px solid var(--fr-line-strong); }
.fr-faq-list summary { min-height: 98px; display: grid; grid-template-columns: 1fr 36px; align-items: center; gap: 24px; padding: 22px 0; color: var(--fr-text); cursor: pointer; list-style: none; font-family: "Barlow Condensed", Impact, sans-serif; font-size: clamp(25px, 3vw, 34px); font-weight: 700; line-height: 1; text-transform: uppercase; }
.fr-faq-list summary::-webkit-details-marker { display: none; }
.fr-faq-list summary span { position: relative; width: 34px; height: 34px; border: 1px solid var(--fr-line-strong); border-radius: 50%; }
.fr-faq-list summary span::before,
.fr-faq-list summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--fr-cyan); transform: translate(-50%, -50%); transition: transform 180ms ease; }
.fr-faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.fr-faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.fr-faq-list details p { max-width: 760px; margin: -4px 50px 28px 0; color: var(--fr-muted); font-size: 13px; line-height: 1.75; }

/* Contact */
.fr-contact { position: relative; padding: clamp(66px, 5.5vw, 90px) 0; overflow: hidden; color: var(--fr-white); background: linear-gradient(122deg, rgba(3,9,14,.93), rgba(7,22,30,.78) 52%, rgba(3,9,14,.92)), url("../assets/levocska/levocska-main.jpeg") center 58% / cover no-repeat; border-block: 1px solid rgba(255,255,255,.055); isolation: isolate; }
.fr-contact-grid { z-index: 0; opacity: 0.16; mask-image: linear-gradient(to right, black, transparent 88%); }
.fr-contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(38px, 6vw, 78px); align-items: center; }
.fr-contact-copy h2 { max-width: 720px; margin-top: 0; font-size: clamp(58px, 7vw, 98px); letter-spacing: -0.025em; line-height: 0.93; }
.fr-contact-direct { display: grid; gap: 0; margin-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.fr-contact-direct a { display: grid; grid-template-columns: 92px 1fr; align-items: baseline; gap: 18px; padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.fr-contact-direct small { color: var(--fr-cyan); font-size: 9px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.fr-contact-direct strong { font-size: clamp(16px, 2vw, 22px); overflow-wrap: anywhere; }

.fr-form-card { padding: clamp(28px, 4vw, 46px); color: var(--fr-text); background: var(--fr-surface); border: 1px solid var(--fr-line); border-radius: 30px; box-shadow: 0 45px 120px rgba(0, 0, 0, 0.42); }
.fr-form-head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 22px; margin-bottom: 28px; border-bottom: 1px solid var(--fr-line); }
.fr-form-head span { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 28px; font-weight: 700; text-transform: uppercase; }
.fr-form-head strong { color: var(--fr-cyan); font-size: 10px; letter-spacing: 0.1em; }
.fr-form-card form { display: grid; gap: 19px; }
.fr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fr-field { display: grid; gap: 8px; }
.fr-field label { color: var(--fr-muted); font-size: 9px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.fr-field input,
.fr-field select,
.fr-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--fr-text);
  background: var(--fr-bg-soft);
  border: 1px solid var(--fr-line-strong);
  border-radius: 11px;
  font-size: 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.fr-field input::placeholder,
.fr-field textarea::placeholder { color: var(--fr-muted); opacity: 0.7; }
.fr-field select { appearance: auto; }
.fr-field textarea { min-height: 112px; resize: vertical; }
.fr-field input:focus,
.fr-field select:focus,
.fr-field textarea:focus { border-color: var(--fr-cyan); box-shadow: 0 0 0 4px rgba(2, 214, 223, 0.12); }
.fr-submit { width: 100%; min-height: 58px !important; gap: 18px; }
.fr-submit:disabled { cursor: wait; opacity: 0.65; }
.fr-form-status { display: none; margin: 0; padding: 11px 13px; border-radius: 9px; font-size: 11px; font-weight: 800; text-align: center; }
.fr-form-status.is-visible { display: block; }
.fr-form-status.is-success { color: #062c16; background: #b8f7cd; }
.fr-form-status.is-error { color: #471014; background: #ffd3d5; }

/* Footer and mobile CTA */
.fr-footer { padding: 28px 0; color: rgba(248, 253, 255, 0.62); background: #020304 !important; border-top: 1px solid rgba(255, 255, 255, 0.09); }
.fr-footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.fr-footer-brand img { width: 112px; height: auto; display: block; object-fit: contain; }
.fr-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.fr-footer-links a:hover { color: var(--fr-cyan); }
.fr-footer-inner > span { justify-self: end; font-size: 10px; }
.fr-mobile-cta { display: none; }

/* Progressive reveal */
.js .fr-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 580ms cubic-bezier(0.16, 1, 0.3, 1), transform 580ms cubic-bezier(0.16, 1, 0.3, 1);
}
.js .fr-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Široký desktop: technické koľajnice a reálne pobočky v bočných pásoch */
@media (min-width: 1500px) {
  .franchise-page main::before,
  .franchise-page main::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: max(72px, calc((100vw - var(--max)) / 2));
    z-index: 0;
    pointer-events: none;
    opacity: 0.78;
    background:
      linear-gradient(rgba(2, 214, 223, 0.24), rgba(2, 214, 223, 0.035)) calc(100% - 26px) 0 / 1px 100% no-repeat,
      linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.018)) calc(100% - 92px) 0 / 1px 100% no-repeat,
      repeating-linear-gradient(to bottom, transparent 0 103px, rgba(2, 214, 223, 0.15) 103px 104px, transparent 104px 207px) calc(100% - 92px) 0 / 66px 100% no-repeat,
      linear-gradient(90deg, rgba(2, 214, 223, 0.04), transparent 78%);
  }

  .franchise-page main::before { left: 0; }
  .franchise-page main::after { right: 0; transform: scaleX(-1); }
  .franchise-page main > section { z-index: 1; }
}

@media (min-width: 1700px) {
  .fr-hero::before,
  .fr-hero::after,
  .fr-concept::after,
  .fr-partner::before,
  .fr-collaboration::after {
    content: "";
    position: absolute;
    top: 7%;
    bottom: 7%;
    width: clamp(250px, calc((100vw - var(--max)) / 2 + 80px), 560px);
    z-index: 0;
    opacity: 0.18;
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(0.72) saturate(0.62) contrast(1.12);
    pointer-events: none;
  }

  .fr-hero::before,
  .fr-hero::after {
    top: 108px;
    bottom: 30px;
    opacity: 0.14;
  }

  .fr-hero::before {
    left: 0;
    background-image: url("../assets/branches/martina-benku-training.jpg");
    background-position: 42% center;
    -webkit-mask-image: linear-gradient(90deg, #000 0 42%, transparent);
    mask-image: linear-gradient(90deg, #000 0 42%, transparent);
  }

  .fr-hero::after {
    right: 0;
    background-image: url("../assets/branches/svaby-exterior.jpg");
    background-position: 50% center;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 58%);
    mask-image: linear-gradient(90deg, transparent, #000 58%);
  }

  .fr-concept::after {
    right: 0;
    background-image: url("../assets/branches/svaby-exterior.jpg");
    background-position: 50% center;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 58%);
    mask-image: linear-gradient(90deg, transparent, #000 58%);
  }

  .fr-partner::before {
    left: 0;
    background-image: url("../assets/branches/svaby-wide.jpg");
    background-position: 52% center;
    -webkit-mask-image: linear-gradient(90deg, #000 0 42%, transparent);
    mask-image: linear-gradient(90deg, #000 0 42%, transparent);
  }

  .fr-collaboration::after {
    right: 0;
    background-image: url("../assets/branches/hronska-kosice.jpg");
    background-position: 46% center;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 58%);
    mask-image: linear-gradient(90deg, transparent, #000 58%);
  }

  .fr-concept > .container,
  .fr-partner > .container,
  .fr-collaboration > .container,
  .fr-hero > .container {
    position: relative;
    z-index: 1;
  }
}

/* Responsive navigation */
@media (max-width: 1080px) {
  .franchise-page .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 10px 11px 10px 18px;
  }
  .franchise-page .brand { grid-column: 1; min-width: 0; }
  .franchise-page .mobile-menu-toggle { display: grid !important; grid-column: 2; grid-row: 1; }
  .franchise-page .menu {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding-top: 8px;
  }
  .franchise-page .nav.menu-open .menu { display: grid; }
  .franchise-page .menu a {
    width: 100%;
    min-height: 43px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
  }
  .franchise-page .menu a::after { display: none; }
  .franchise-page .nav-actions {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    margin-left: 0;
    padding-top: 2px;
  }
  .franchise-page .nav.menu-open .nav-actions { display: grid; }
  .franchise-page .nav-cta { width: 100%; }
}

@media (max-width: 980px) {
  .fr-hero { min-height: auto; }
  .fr-hero-inner { grid-template-columns: 1fr; gap: 58px; }
  .fr-hero-copy { max-width: 820px; }
  .fr-hero-visual { width: min(720px, 100%); height: 620px; margin-left: auto; }
  .fr-network-bar { flex-wrap: wrap; gap: 12px 0; padding: 16px 0; }
  .fr-network-next { margin-left: 0; }
  .fr-section-intro,
  .fr-partner .fr-section-intro { grid-template-columns: 1fr; gap: 24px; }
  .fr-section-intro > p { max-width: 720px; }
  .fr-concept-editorial { grid-template-columns: 1fr; }
  .fr-concept-photo { min-height: 440px; }
  .fr-model-summary { grid-template-columns: 1fr; gap: 30px; }
  .fr-model-fees { max-width: 680px; }
  .fr-partner-grid { grid-template-columns: 1fr; }
  .fr-location-photo { min-height: 430px; }
  .fr-collab-grid { grid-template-columns: 1fr 1fr; }
  .fr-collab-card--together { grid-column: span 2; min-height: auto; }
  .fr-collab-card--together ul { grid-template-columns: repeat(2, 1fr); column-gap: 28px; }
  .fr-process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fr-process-list li { min-height: 285px; grid-template-rows: 124px 1fr; border-bottom: 1px solid var(--fr-line); }
  .fr-process-list li + li { border-left: 0; }
  .fr-process-list li:nth-child(even) { border-left: 1px solid var(--fr-line); }
  .fr-process-list li:last-child { grid-column: 1 / -1; border-bottom: 0; border-left: 0; }
  .fr-faq-layout { grid-template-columns: 1fr; }
  .fr-faq-head { position: static; }
  .fr-contact-layout { grid-template-columns: 1fr; }
  .fr-contact-copy { max-width: 820px; }
  .fr-form-card { max-width: 760px; }
}

@media (max-width: 700px) {
  .franchise-page { padding-bottom: 66px; background-attachment: scroll; }
  .franchise-page::before { inset: 0; animation: none; }
  .franchise-page main [id] { scroll-margin-top: 92px; }
  .franchise-page .container { width: calc(100% - 32px); }
  .franchise-page .site-header { inset: 8px 0 auto; }
  .franchise-page .nav { border-radius: 16px; }
  .franchise-page .fr-brand img { width: 108px; height: auto; }
  .franchise-page .menu { grid-template-columns: 1fr; }
  .fr-hero { padding: 116px 0 24px; }
  .fr-hero-inner { gap: 42px; }
  .fr-hero-copy h1 { font-size: clamp(56px, 15.4vw, 76px); line-height: 1.02; }
  .fr-hero-lead { margin-top: 21px; }
  .fr-hero .fr-actions { display: grid; grid-template-columns: 1fr; }
  .fr-hero .btn { width: 100%; }
  .fr-hero-facts > div { min-height: 79px; flex-direction: column; align-items: flex-start; gap: 6px; padding: 16px 10px 10px 0; }
  .fr-hero-facts > div + div { padding-left: 12px; }
  .fr-hero-facts strong { font-size: 34px; }
  .fr-hero-facts span { font-size: 8px; }
  .fr-hero-visual { height: 430px; padding: 0; }
  .fr-brand-proof { min-height: 430px; border-radius: 22px; }
  .fr-brand-proof figcaption { right: 20px; bottom: 58px; left: 20px; }
  .fr-network-bar { margin-top: 25px; }
  .fr-network-bar > span { padding: 0 10px; }
  .fr-network-label { width: 100%; padding-left: 0 !important; border-right: 0 !important; }
  .fr-section { padding: 64px 0; }
  .fr-section-intro { margin-bottom: 38px; }
  .fr-section-intro h2,
  .fr-process-head h2,
  .fr-faq-head h2 { font-size: clamp(50px, 15vw, 72px); }
  .fr-concept-photo { min-height: 330px; border-radius: 18px; }
  .fr-feature-list { border-radius: 18px; }
  .fr-feature-row { min-height: 105px; padding: 18px 20px; }
  .fr-feature-row h3 { font-size: 28px; }
  .fr-models-section { padding: 58px 0; }
  .fr-models-head h2 { font-size: clamp(46px, 13vw, 66px); }
  .fr-models-grid { grid-template-columns: 1fr; }
  .fr-model-card { min-height: 0; border-radius: 20px; }
  .fr-model-card--single { padding: 0; border-radius: 20px; }
  .fr-model-summary { gap: 28px; padding: 26px 22px; }
  .fr-model-card-head h3 { font-size: clamp(42px, 12vw, 56px); }
  .fr-model-card-head > strong { font-size: 27px; }
  .fr-model-fees { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; max-width: none; }
  .fr-model-fees > div,
  .fr-model-fees > div + div { min-height: 120px; margin: 0; padding: 18px 14px; border: 1px solid rgba(255, 255, 255, .11); }
  .fr-model-fees dd { font-size: clamp(35px, 10vw, 46px); }
  .fr-model-scope { padding: 26px 22px; }
  .fr-model-scope ul { grid-template-columns: 1fr; }
  .fr-models-note { padding: 16px 22px; }
  .fr-location-photo { min-height: 320px; max-height: none; }
  .fr-collab-grid { grid-template-columns: 1fr; }
  .fr-collab-card,
  .fr-collab-card--together { grid-column: auto; min-height: 0; padding: 28px; }
  .fr-collab-card--together ul { grid-template-columns: 1fr; }
  .fr-process-list { grid-template-columns: 1fr; margin-top: 40px; border-radius: 18px; }
  .fr-process-list li,
  .fr-process-list li:last-child {
    grid-column: auto;
    min-height: 146px;
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-rows: auto;
    border-left: 0;
    border-bottom: 1px solid var(--fr-line);
  }
  .fr-process-list li:nth-child(even) { border-left: 0; }
  .fr-process-list li:last-child { border-bottom: 0; }
  .fr-process-media { min-height: 100%; border-right: 1px solid var(--fr-line); border-bottom: 0; }
  .fr-process-icon { width: 68px; height: 68px; }
  .fr-process-icon svg { width: 62px; height: 62px; }
  .fr-process-copy { padding: 20px 18px; }
  .fr-process-list h3 { font-size: 30px; }
  .fr-faq-list summary { min-height: 86px; font-size: 24px; }
  .fr-faq-list details p { margin-right: 0; }
  .fr-contact { padding: 70px 0; }
  .fr-contact-copy h2 { font-size: clamp(54px, 16vw, 78px); }
  .fr-contact-direct a { grid-template-columns: 1fr; gap: 7px; }
  .fr-form-row { grid-template-columns: 1fr; }
  .fr-form-card { padding: 25px 18px; border-radius: 22px; }
  .fr-footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .fr-footer-inner > span { justify-self: center; }
  .fr-mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 50;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 18px;
    color: #041013;
    background: var(--fr-cyan);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .fr-mobile-cta.is-hidden { opacity: 0; transform: translateY(120%); pointer-events: none; }
}

@media (max-width: 430px) {
  .fr-model-fees { grid-template-columns: 1fr; }
  .fr-model-fees > div,
  .fr-model-fees > div + div { min-height: 104px; }
}

@media (max-width: 390px) {
  .franchise-page .container { width: calc(100% - 24px); }
  .fr-hero-copy h1 { font-size: 53px; }
  .fr-hero-visual { height: 400px; }
  .fr-brand-proof { min-height: 400px; }
}

@media (prefers-reduced-motion: reduce) {
  .franchise-page *,
  .franchise-page *::before,
  .franchise-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .fr-reveal { opacity: 1; transform: none; }
}
