.franchise-wrap {
  max-width: 1100px;
  margin: 26px auto 18px;
  padding: 0 14px;
}

.franchise-hero {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 26px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.franchise-hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(680px 320px at 12% 12%, rgba(31, 111, 235, 0.18), transparent 60%),
    radial-gradient(520px 260px at 92% 26%, rgba(99, 102, 241, 0.16), transparent 55%);
  pointer-events: none;
}

.franchise-hero > * {
  position: relative;
}

.franchise-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(31, 111, 235, 0.1);
  color: #1f6feb;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.franchise-title {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.12;
  color: #0f172a;
  font-weight: 900;
}

.franchise-sub {
  margin: 0 0 16px;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
}

.franchise-cards {
  display: grid;
  gap: 12px;
}

.franchise-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.franchise-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
  color: #0f172a;
}

.franchise-card p {
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.franchise-card a {
  color: #1f6feb;
  text-decoration: none;
  font-weight: 900;
}

.franchise-card a:hover {
  text-decoration: underline;
}

.franchise-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-pill:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.franchise-actions .btn-primary {
  background: #1f6feb;
  color: #fff;
  box-shadow: 0 14px 32px rgba(31, 111, 235, 0.22);
}

.franchise-actions .btn-ghost {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.14);
}

.franchise-benefits {
  max-width: 1100px;
  margin: 18px auto 24px;
  padding: 0 14px;
}

.franchise-benefits-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 26px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
  padding: 22px;
}

.franchise-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.franchise-head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  color: #0f172a;
}

.franchise-head p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  max-width: 620px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 14px;
}

.benefit-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.benefit-item h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
  color: #0f172a;
}

.benefit-item p {
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.franchise-steps {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.franchise-steps li {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  padding: 12px;
  background: #f8fbff;
  display: grid;
  gap: 4px;
}

.franchise-steps strong {
  color: #0f172a;
  font-size: 14px;
}

.franchise-steps span {
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.franchise-form-section {
  max-width: 1100px;
  margin: 18px auto 24px;
  padding: 0 14px;
}

.franchise-form-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 26px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
  padding: 22px;
}

.franchise-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  padding: 10px 12px;
  font: inherit;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #1f6feb;
  box-shadow: 0 0 0 3px rgba(31, 111, 235, 0.15);
}

.franchise-btn {
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid #1f6feb;
  background: #1f6feb;
  color: #ffffff;
  font-weight: 900;
  width: fit-content;
}

.franchise-btn:hover {
  filter: brightness(1.03);
}

@media (max-width: 980px) {
  .franchise-hero {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .franchise-steps {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* GLOBAL BUTTON TEXT WHITE */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.btn,
.btn-primary,
.btn-outline,
.btn-nav,
.btn-pill,
.btn-ghost,
.option-cta,
.option-btn,
.oft-card-cta,
a.btn,
a[class*="btn-"],
a.option-cta,
a.option-btn {
  color: #fff !important;
}
