.flo-onboarding {
  max-width: 1000px;
  margin: auto;
  padding: 40px;
  text-align: center;
}

.flo-steps {
  margin-bottom: 30px;
}

.flo-steps span {
  margin: 0 10px;
  opacity: 0.4;
}

.flo-steps .active {
  opacity: 1;
  font-weight: bold;
}

.flo-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.flo-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  width: 260px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.flo-icon {
  width: 60px;
}

.flo-btn {
  margin-top: 20px;
  background: #4DBA87;
  border: none;
  color: white;
  padding: 12px;
  border-radius: 10px;
}

.flo-features ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 15px 0;
  text-align: left !important;
}

.flo-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 10px;
  color: #444;
}

.flo-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: var(--flo-color);
}

.flo-steps .active {
  color: var(--flo-color);
  font-weight: 600;
}

.flo-steps .active::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--flo-color);
  margin-top: 5px;
  border-radius: 3px;
}

.flo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: auto;
}

.flo-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.flo-header {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.flo-header img {
  width: 60px;
  margin-bottom: 30px;
}

.flo-options {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.flo-actions {
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.flo-actions {
  justify-content: flex-end;
  gap: 15px;
}

.flo-cta {
  background: var(--flo-color);
  color: white;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.flo-cta:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.flo-btn-back {
  background: #111;
  color: white;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.flo-btn-back:hover {
  background: #000;
  opacity: 0.9;
}

.flo-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.flo-toggle span {
  margin-right: 5px;
}

.flo-toggle:hover .flo-mini-icon {
  opacity: 0.6;
  filter: grayscale(50%);
}

.flo-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fafafa;
  padding: 14px 16px;
  border-radius: 10px;
  cursor: pointer;
}

.flo-toggle-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.flo-mini-icon {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  filter: grayscale(20%);
}

.flo-toggle-row input {
  display: none;
}

.flo-toggle-switch {
  width: 42px;
  height: 22px;
  background: #ddd;
  border-radius: 20px;
  position: relative;
  transition: 0.3s;
}

.flo-toggle-switch::before {
  content: '';
  width: 18px;
  height: 18px;
  background: white;
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  transition: 0.3s;
}

.flo-toggle-row input:checked + .flo-toggle-switch {
  background: var(--flo-color);
}

.flo-toggle-row input:checked + .flo-toggle-switch::before {
  transform: translateX(20px);
}

.flo-toggle-row:hover {
  background: #f2f2f2;
}

.flo-toggle-row:hover .flo-mini-icon {
  opacity: 0.95;
}

